Skip to content

Commit

Permalink
feat(http): add support for form format (#1876)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepdsvs authored Jan 27, 2025
1 parent f570d03 commit 10ebbd9
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/configurations/destinations/http/schema.json
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
},
"format": {
"type": "string",
"enum": ["JSON", "XML"],
"enum": ["JSON", "XML", "FORM"],
"default": "JSON"
},
"isBatchingEnabled": {
4 changes: 4 additions & 0 deletions src/configurations/destinations/http/ui-config.json
Original file line number Diff line number Diff line change
@@ -169,6 +169,10 @@
{
"label": "XML",
"value": "XML"
},
{
"label": "FORM",
"value": "FORM"
}
],
"default": "JSON"

0 comments on commit 10ebbd9

Please sign in to comment.