Skip to content

Commit

Permalink
feat: added path param tab http
Browse files Browse the repository at this point in the history
  • Loading branch information
aashishmalik committed Nov 20, 2024
1 parent 5f58915 commit 76df956
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/configurations/destinations/http/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"propertiesMapping",
"queryParams",
"headers",
"pathParams",
"isBatchingEnabled",
"maxBatchSize",
"blacklistedEvents",
Expand Down
1 change: 1 addition & 0 deletions src/configurations/destinations/http/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"required": ["apiUrl", "auth", "method", "format"],
"type": "object",
"additionalProperties": true,
"properties": {
"apiUrl": {
"type": "string",
Expand Down
19 changes: 19 additions & 0 deletions src/configurations/destinations/http/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,25 @@
]
}
]
},
{
"name": "Path Parameters",
"fields": [
{
"type": "mapping",
"label": "Enter your path parameters in sequence",
"columns": [
{
"key": "path",
"type": "textInput",
"label": "Path",
"placeholder": "$.userId"
}
],
"default": [],
"configKey": "pathParams"
}
]
}
]
}
Expand Down

0 comments on commit 76df956

Please sign in to comment.