From 00339b74abec1b01075ac658ed4cb6f572c91990 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 00:09:55 +0000 Subject: [PATCH] feat(openapi.json): add support for Praxis payment provider --- openapi.json | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/openapi.json b/openapi.json index e1eb0fe..774b22a 100644 --- a/openapi.json +++ b/openapi.json @@ -1721,7 +1721,8 @@ "MAILCHIMP", "PADDLE", "PAYPAL", - "TREEZOR" + "TREEZOR", + "PRAXIS" ] }, "IntegrationFeature": { @@ -5045,6 +5046,40 @@ "additionalProperties": false, "x-docs-type": "Treezor" }, + "VerificationPraxisConfigs": { + "type": "object", + "properties": { + "webhook_secret_key": { + "type": "string" + } + }, + "required": [ + "webhook_secret_key" + ], + "additionalProperties": false, + "description": "The verification configs for Praxis. Only included if the ?include=verification.configs query param is present", + "x-docs-type": "PraxisConfigs" + }, + "VerificationPraxis": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "praxis", + "PRAXIS" + ] + }, + "configs": { + "$ref": "#/components/schemas/VerificationPraxisConfigs" + } + }, + "required": [ + "type" + ], + "additionalProperties": false, + "x-docs-type": "Praxis" + }, "VerificationConfig": { "oneOf": [ { @@ -5235,6 +5270,9 @@ }, { "$ref": "#/components/schemas/VerificationTreezor" + }, + { + "$ref": "#/components/schemas/VerificationPraxis" } ], "nullable": true,