Skip to content

Commit

Permalink
fix(CE): http model config (#464)
Browse files Browse the repository at this point in the history
Co-authored-by: afthab vp <[email protected]>
  • Loading branch information
github-actions[bot] and afthabvp authored Nov 13, 2024
1 parent 0afaf6a commit 15b9caf
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integrations/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: .
specs:
multiwoven-integrations (0.14.0)
multiwoven-integrations (0.14.2)
MailchimpMarketing
activesupport
async-websocket
Expand Down
2 changes: 1 addition & 1 deletion integrations/lib/multiwoven/integrations/rollout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Multiwoven
module Integrations
VERSION = "0.14.1"
VERSION = "0.14.2"

ENABLED_SOURCES = %w[
Snowflake
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@
"order": 0
},
"headers": {
"type": "string",
"title": "Http Headers",
"order": 1
"order": 1,
"additionalProperties": {
"type": "string"
}
},
"config": {
"title": "",
Expand All @@ -31,6 +33,20 @@
}
},
"order": 2
},
"request_format": {
"title": "Request Format",
"description": "Sample Request Format",
"type": "string",
"x-request-format": true,
"order": 3
},
"response_format": {
"title": "Response Format",
"description": "Sample Response Format",
"type": "string",
"x-response-format": true,
"order": 4
}
}
}
Expand Down

0 comments on commit 15b9caf

Please sign in to comment.