From eafae731b8d2d75174a2ea5a2dad432808ed33b8 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 15:51:47 +0000 Subject: [PATCH 1/4] chore(fern/openapi/openapi.json): fix missing newline at EOF and remove extra closing brace --- fern/openapi/openapi.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/openapi/openapi.json b/fern/openapi/openapi.json index 0a29b0b..8fa168d 100644 --- a/fern/openapi/openapi.json +++ b/fern/openapi/openapi.json @@ -19570,4 +19570,4 @@ } } } -} +} \ No newline at end of file From d71d8dbdeea1aa3f9096cbcf2d057ad03c9fea25 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 00:06:20 +0000 Subject: [PATCH 2/4] feat(openapi): add Discord and Razorpay verification support --- fern/openapi/openapi.json | 78 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 77 insertions(+), 1 deletion(-) diff --git a/fern/openapi/openapi.json b/fern/openapi/openapi.json index 8fa168d..7657d5a 100644 --- a/fern/openapi/openapi.json +++ b/fern/openapi/openapi.json @@ -1599,13 +1599,15 @@ "SANITY", "EBAY", "TELNYX", + "DISCORD", "TOKENIO", "FISERV", "BONDSMITH", "VERCEL_LOG_DRAINS", "VERCEL", "TEBEX", - "SLACK" + "SLACK", + "RAZORPAY" ] }, "IntegrationFeature": { @@ -4516,6 +4518,40 @@ "additionalProperties": false, "x-docs-type": "Telnyx" }, + "VerificationDiscordConfigs": { + "type": "object", + "properties": { + "public_key": { + "type": "string" + } + }, + "required": [ + "public_key" + ], + "additionalProperties": false, + "description": "The verification configs for Discord. Only included if the ?include=verification.configs query param is present", + "x-docs-type": "DiscordConfigs" + }, + "VerificationDiscord": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "discord", + "DISCORD" + ] + }, + "configs": { + "$ref": "#/components/schemas/VerificationDiscordConfigs" + } + }, + "required": [ + "type" + ], + "additionalProperties": false, + "x-docs-type": "Discord" + }, "VerificationTokenIOConfigs": { "type": "object", "properties": { @@ -4758,6 +4794,40 @@ "additionalProperties": false, "x-docs-type": "Slack" }, + "VerificationRazorpayConfigs": { + "type": "object", + "properties": { + "webhook_secret_key": { + "type": "string" + } + }, + "required": [ + "webhook_secret_key" + ], + "additionalProperties": false, + "description": "The verification configs for Razorpay. Only included if the ?include=verification.configs query param is present", + "x-docs-type": "RazorpayConfigs" + }, + "VerificationRazorpay": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "razorpay", + "RAZORPAY" + ] + }, + "configs": { + "$ref": "#/components/schemas/VerificationRazorpayConfigs" + } + }, + "required": [ + "type" + ], + "additionalProperties": false, + "x-docs-type": "Razorpay" + }, "VerificationConfig": { "oneOf": [ { @@ -4907,6 +4977,9 @@ { "$ref": "#/components/schemas/VerificationTelnyx" }, + { + "$ref": "#/components/schemas/VerificationDiscord" + }, { "$ref": "#/components/schemas/VerificationTokenIO" }, @@ -4927,6 +5000,9 @@ }, { "$ref": "#/components/schemas/VerificationSlack" + }, + { + "$ref": "#/components/schemas/VerificationRazorpay" } ], "description": "The verification configs for the specified verification type" From fd8fe177ad206df31871f4d9989793bcaef7697b Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 00:07:26 +0000 Subject: [PATCH 3/4] feat(openapi): add Mailchimp integration and verification support --- fern/openapi/openapi.json | 40 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/fern/openapi/openapi.json b/fern/openapi/openapi.json index 7657d5a..fee0f95 100644 --- a/fern/openapi/openapi.json +++ b/fern/openapi/openapi.json @@ -1607,7 +1607,8 @@ "VERCEL", "TEBEX", "SLACK", - "RAZORPAY" + "RAZORPAY", + "MAILCHIMP" ] }, "IntegrationFeature": { @@ -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": [ { @@ -5003,6 +5038,9 @@ }, { "$ref": "#/components/schemas/VerificationRazorpay" + }, + { + "$ref": "#/components/schemas/VerificationMailchimp" } ], "description": "The verification configs for the specified verification type" From 95378cfc1ca8f4f73c04ca828d98a7a7b6ae97fd Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 00:07:17 +0000 Subject: [PATCH 4/4] feat(openapi): add paddle integration support This commit adds support for Paddle integration in the OpenAPI specification. It includes the necessary schemas, enums, and configurations for Paddle verification. --- fern/openapi/openapi.json | 40 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/fern/openapi/openapi.json b/fern/openapi/openapi.json index fee0f95..1b65251 100644 --- a/fern/openapi/openapi.json +++ b/fern/openapi/openapi.json @@ -1608,7 +1608,8 @@ "TEBEX", "SLACK", "RAZORPAY", - "MAILCHIMP" + "MAILCHIMP", + "PADDLE" ] }, "IntegrationFeature": { @@ -4863,6 +4864,40 @@ "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": [ { @@ -5041,6 +5076,9 @@ }, { "$ref": "#/components/schemas/VerificationMailchimp" + }, + { + "$ref": "#/components/schemas/VerificationPaddle" } ], "description": "The verification configs for the specified verification type"