Skip to content

Commit

Permalink
feat(openapi): add Mailchimp integration and verification support
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Jul 13, 2024
1 parent 41f68bb commit fd8fe17
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion fern/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,8 @@
"VERCEL",
"TEBEX",
"SLACK",
"RAZORPAY"
"RAZORPAY",
"MAILCHIMP"
]
},
"IntegrationFeature": {
Expand Down Expand Up @@ -4828,6 +4829,40 @@
"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"
},
"VerificationConfig": {
"oneOf": [
{
Expand Down Expand Up @@ -5003,6 +5038,9 @@
},
{
"$ref": "#/components/schemas/VerificationRazorpay"
},
{
"$ref": "#/components/schemas/VerificationMailchimp"
}
],
"description": "The verification configs for the specified verification type"
Expand Down

0 comments on commit fd8fe17

Please sign in to comment.