This repository was archived by the owner on Aug 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +52
-3
lines changed Expand file tree Collapse file tree 1 file changed +52
-3
lines changed Original file line number Diff line number Diff line change 1105
1105
"type": "string",
1106
1106
"enum": [
1107
1107
"basic",
1108
- "bearer"
1108
+ "bearer",
1109
+ "x-www-form-urlencoded"
1109
1110
],
1110
- "description": "Basic (default) or Bearer Authentication",
1111
+ "description": "Basic (default), Bearer Authentication or x-www-form-urlencoded ",
1111
1112
"default": "basic"
1112
1113
}
1113
1114
},
1246
1247
"secret_access_key": {
1247
1248
"type": "string",
1248
1249
"description": "AWS secret access key"
1250
+ },
1251
+ "region": {
1252
+ "type": "string",
1253
+ "nullable": true,
1254
+ "description": "AWS region"
1255
+ },
1256
+ "service": {
1257
+ "type": "string",
1258
+ "nullable": true,
1259
+ "description": "AWS service"
1249
1260
}
1250
1261
},
1251
1262
"required": [
1707
1718
"SLACK",
1708
1719
"RAZORPAY",
1709
1720
"MAILCHIMP",
1710
- "PADDLE"
1721
+ "PADDLE",
1722
+ "PAYPAL"
1711
1723
]
1712
1724
},
1713
1725
"IntegrationFeature": {
4931
4943
"additionalProperties": false,
4932
4944
"x-docs-type": "Paddle"
4933
4945
},
4946
+ "VerificationPaypalConfigs": {
4947
+ "type": "object",
4948
+ "properties": {
4949
+ "webhook_id": {
4950
+ "type": "string"
4951
+ }
4952
+ },
4953
+ "required": [
4954
+ "webhook_id"
4955
+ ],
4956
+ "additionalProperties": false,
4957
+ "description": "The verification configs for Paypal. Only included if the ?include=verification.configs query param is present",
4958
+ "x-docs-type": "PaypalConfigs"
4959
+ },
4960
+ "VerificationPaypal": {
4961
+ "type": "object",
4962
+ "properties": {
4963
+ "type": {
4964
+ "type": "string",
4965
+ "enum": [
4966
+ "paypal",
4967
+ "PAYPAL"
4968
+ ]
4969
+ },
4970
+ "configs": {
4971
+ "$ref": "#/components/schemas/VerificationPaypalConfigs"
4972
+ }
4973
+ },
4974
+ "required": [
4975
+ "type"
4976
+ ],
4977
+ "additionalProperties": false,
4978
+ "x-docs-type": "Paypal"
4979
+ },
4934
4980
"VerificationConfig": {
4935
4981
"oneOf": [
4936
4982
{
5112
5158
},
5113
5159
{
5114
5160
"$ref": "#/components/schemas/VerificationPaddle"
5161
+ },
5162
+ {
5163
+ "$ref": "#/components/schemas/VerificationPaypal"
5115
5164
}
5116
5165
],
5117
5166
"nullable": true,
You can’t perform that action at this time.
0 commit comments