Skip to content

Commit

Permalink
feat(openapi.json): added support for Treezor payment gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Oct 16, 2024
1 parent 20e2067 commit 1e47be7
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,8 @@
"RAZORPAY",
"MAILCHIMP",
"PADDLE",
"PAYPAL"
"PAYPAL",
"TREEZOR"
]
},
"IntegrationFeature": {
Expand Down Expand Up @@ -5010,6 +5011,40 @@
"additionalProperties": false,
"x-docs-type": "Paypal"
},
"VerificationTreezorConfigs": {
"type": "object",
"properties": {
"webhook_secret_key": {
"type": "string"
}
},
"required": [
"webhook_secret_key"
],
"additionalProperties": false,
"description": "The verification configs for Treezor. Only included if the ?include=verification.configs query param is present",
"x-docs-type": "TreezorConfigs"
},
"VerificationTreezor": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"treezor",
"TREEZOR"
]
},
"configs": {
"$ref": "#/components/schemas/VerificationTreezorConfigs"
}
},
"required": [
"type"
],
"additionalProperties": false,
"x-docs-type": "Treezor"
},
"VerificationConfig": {
"oneOf": [
{
Expand Down Expand Up @@ -5197,6 +5232,9 @@
},
{
"$ref": "#/components/schemas/VerificationPaypal"
},
{
"$ref": "#/components/schemas/VerificationTreezor"
}
],
"nullable": true,
Expand Down

0 comments on commit 1e47be7

Please sign in to comment.