Skip to content

Commit

Permalink
Merge pull request #50 from hookdeck/fern/updateOAS
Browse files Browse the repository at this point in the history
Update OpenAPI specification
  • Loading branch information
leggetter authored Jul 23, 2024
2 parents b202192 + c85c587 commit af58a96
Showing 1 changed file with 77 additions and 1 deletion.
78 changes: 77 additions & 1 deletion fern/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,9 @@
"VERCEL",
"TEBEX",
"SLACK",
"RAZORPAY"
"RAZORPAY",
"MAILCHIMP",
"PADDLE"
]
},
"IntegrationFeature": {
Expand Down Expand Up @@ -4828,6 +4830,74 @@
"additionalProperties": false,
"x-docs-type": "Razorpay"
},
"VerificationMailchimpConfigs": {
"type": "object",
"properties": {
"webhook_secret_key": {
"type": "string"
}
},
"required": [
"webhook_secret_key"
],
"additionalProperties": false,
"description": "The verification configs for Mailchimp. Only included if the ?include=verification.configs query param is present",
"x-docs-type": "MailchimpConfigs"
},
"VerificationMailchimp": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"mailchimp",
"MAILCHIMP"
]
},
"configs": {
"$ref": "#/components/schemas/VerificationMailchimpConfigs"
}
},
"required": [
"type"
],
"additionalProperties": false,
"x-docs-type": "Mailchimp"
},
"VerificationPaddleConfigs": {
"type": "object",
"properties": {
"webhook_secret_key": {
"type": "string"
}
},
"required": [
"webhook_secret_key"
],
"additionalProperties": false,
"description": "The verification configs for Paddle. Only included if the ?include=verification.configs query param is present",
"x-docs-type": "PaddleConfigs"
},
"VerificationPaddle": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"paddle",
"PADDLE"
]
},
"configs": {
"$ref": "#/components/schemas/VerificationPaddleConfigs"
}
},
"required": [
"type"
],
"additionalProperties": false,
"x-docs-type": "Paddle"
},
"VerificationConfig": {
"oneOf": [
{
Expand Down Expand Up @@ -5003,6 +5073,12 @@
},
{
"$ref": "#/components/schemas/VerificationRazorpay"
},
{
"$ref": "#/components/schemas/VerificationMailchimp"
},
{
"$ref": "#/components/schemas/VerificationPaddle"
}
],
"description": "The verification configs for the specified verification type"
Expand Down

0 comments on commit af58a96

Please sign in to comment.