Skip to content

Commit

Permalink
feat(openapi.json): add support for Praxis payment provider
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Oct 25, 2024
1 parent 8c3af9d commit 00339b7
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 @@ -1721,7 +1721,8 @@
"MAILCHIMP",
"PADDLE",
"PAYPAL",
"TREEZOR"
"TREEZOR",
"PRAXIS"
]
},
"IntegrationFeature": {
Expand Down Expand Up @@ -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": [
{
Expand Down Expand Up @@ -5235,6 +5270,9 @@
},
{
"$ref": "#/components/schemas/VerificationTreezor"
},
{
"$ref": "#/components/schemas/VerificationPraxis"
}
],
"nullable": true,
Expand Down

0 comments on commit 00339b7

Please sign in to comment.