Skip to content

Commit

Permalink
Update services based on v417 of Stripe OpenApi SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Jul 13, 2023
1 parent 5ce1853 commit 27e3539
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .latest-tag-stripe-openapi-sdk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v414
v417
43 changes: 43 additions & 0 deletions priv/openapi/spec3.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -23118,6 +23118,14 @@
"payment_flows_automatic_payment_methods_payment_intent": {
"description": "",
"properties": {
"allow_redirects": {
"description": "Controls whether this PaymentIntent will accept redirect-based payment methods.\n\nRedirect-based payment methods may require your customer to be redirected to a payment method's app or site for authentication or additional steps. To [confirm](https://stripe.com/docs/api/payment_intents/confirm) this PaymentIntent, you may be required to provide a `return_url` to redirect customers back to your site after they authenticate or complete the payment.",
"enum": [
"always",
"never"
],
"type": "string"
},
"enabled": {
"description": "Automatically calculates compatible payment methods",
"type": "boolean"
Expand All @@ -23137,6 +23145,14 @@
"payment_flows_automatic_payment_methods_setup_intent": {
"description": "",
"properties": {
"allow_redirects": {
"description": "Controls whether this SetupIntent will accept redirect-based payment methods.\n\nRedirect-based payment methods may require your customer to be redirected to a payment method's app or site for authentication or additional steps. To [confirm](https://stripe.com/docs/api/setup_intents/confirm) this SetupIntent, you may be required to provide a `return_url` to redirect customers back to your site after they authenticate or complete the setup.",
"enum": [
"always",
"never"
],
"type": "string"
},
"enabled": {
"description": "Automatically calculates compatible payment methods",
"nullable": true,
Expand Down Expand Up @@ -28153,6 +28169,12 @@
"payment_method_details_afterpay_clearpay": {
"description": "",
"properties": {
"order_id": {
"description": "The Afterpay order ID associated with this payment intent.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"reference": {
"description": "Order identifier shown to the merchant in Afterpay’s online portal.",
"maxLength": 5000,
Expand All @@ -28161,6 +28183,7 @@
}
},
"required": [
"order_id",
"reference"
],
"title": "payment_method_details_afterpay_clearpay",
Expand Down Expand Up @@ -45844,6 +45867,8 @@
"tax_type": {
"description": "The tax type, such as `vat` or `sales_tax`.",
"enum": [
"amusement_tax",
"communications_tax",
"gst",
"hst",
"igst",
Expand Down Expand Up @@ -46062,6 +46087,8 @@
"tax_type": {
"description": "The tax type, such as `vat` or `sales_tax`.",
"enum": [
"amusement_tax",
"communications_tax",
"gst",
"hst",
"igst",
Expand Down Expand Up @@ -88257,6 +88284,14 @@
"automatic_payment_methods": {
"description": "When enabled, this PaymentIntent will accept payment methods that you have enabled in the Dashboard and are compatible with this PaymentIntent's other parameters.",
"properties": {
"allow_redirects": {
"description": "Controls whether this PaymentIntent will accept redirect-based payment methods.\n\nRedirect-based payment methods may require your customer to be redirected to a payment method's app or site for authentication or additional steps. To [confirm](https://stripe.com/docs/api/payment_intents/confirm) this PaymentIntent, you may be required to provide a `return_url` to redirect customers back to your site after they authenticate or complete the payment.",
"enum": [
"always",
"never"
],
"type": "string"
},
"enabled": {
"description": "Whether this feature is enabled.",
"type": "boolean"
Expand Down Expand Up @@ -109064,6 +109099,14 @@
"automatic_payment_methods": {
"description": "When enabled, this SetupIntent will accept payment methods that you have enabled in the Dashboard and are compatible with this SetupIntent's other parameters.",
"properties": {
"allow_redirects": {
"description": "Controls whether this SetupIntent will accept redirect-based payment methods.\n\nRedirect-based payment methods may require your customer to be redirected to a payment method's app or site for authentication or additional steps. To [confirm](https://stripe.com/docs/api/setup_intents/confirm) this SetupIntent, you may be required to provide a `return_url` to redirect customers back to your site after they authenticate or complete the setup.",
"enum": [
"always",
"never"
],
"type": "string"
},
"enabled": {
"description": "Whether this feature is enabled.",
"type": "boolean"
Expand Down

0 comments on commit 27e3539

Please sign in to comment.