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": {},
"url": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"headers": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"condition": {
"type": "boolean"
"oneOf": [
{
"type": "boolean"
},
{
"type": "null"
}
]
},
"notification": {
"type": "object"

Loading…
Cancel
Save