diff --git a/fern/openapi/openapi.json b/fern/openapi/openapi.json index dd24f93..1b65251 100644 --- a/fern/openapi/openapi.json +++ b/fern/openapi/openapi.json @@ -1607,7 +1607,9 @@ "VERCEL", "TEBEX", "SLACK", - "RAZORPAY" + "RAZORPAY", + "MAILCHIMP", + "PADDLE" ] }, "IntegrationFeature": { @@ -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": [ { @@ -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" @@ -19646,4 +19722,4 @@ } } } -} +} \ No newline at end of file