Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌿 ✨ [Scheduled] Update API Spec #51

Merged
merged 5 commits into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 78 additions & 2 deletions 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 Expand Up @@ -19646,4 +19722,4 @@
}
}
}
}
}