Browse Source

fix: hook request schema correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5174/head
Pranav C 2 years ago
parent
commit
8a1036b237
  1. 27
      scripts/sdk/swagger.json

27
scripts/sdk/swagger.json

@ -9815,13 +9815,34 @@
}, },
"payload": {}, "payload": {},
"url": { "url": {
"type": "string" "oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}, },
"headers": { "headers": {
"type": "string" "oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}, },
"condition": { "condition": {
"type": "boolean" "oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
}, },
"notification": { "notification": {
"type": "object" "type": "object"

Loading…
Cancel
Save