Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OpenAPI Update #932

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -36206,7 +36206,7 @@
"$ref": "#/components/schemas/charge"
}
],
"description": "The latest charge created by this PaymentIntent.",
"description": "ID of the latest [Charge object](https://stripe.com/docs/api/charges) created by this PaymentIntent. This property is `null` until PaymentIntent confirmation is attempted.",
"nullable": true,
"x-expansionResources": {
"oneOf": [
Expand Down Expand Up @@ -38461,6 +38461,10 @@
"installments": {
"$ref": "#/components/schemas/payment_flows_installment_options"
},
"request_incremental_authorization_support": {
"description": "Request ability to [increment](https://stripe.com/docs/terminal/features/incremental-authorizations) this PaymentIntent if the combination of MCC and card brand is eligible. Check [incremental_authorization_supported](https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card_present-incremental_authorization_supported) in the [Confirm](https://stripe.com/docs/api/payment_intents/confirm) response to verify support.",
"type": "boolean"
},
"require_cvc_recollection": {
"description": "When enabled, using a card that is attached to a customer will require the CVC to be provided again (i.e. using the cvc_token parameter).",
"type": "boolean"
Expand Down Expand Up @@ -52236,7 +52240,6 @@
"$ref": "#/components/schemas/subscription"
}
],
"description": "The subscription that this invoice was prepared for, if any.",
"nullable": true,
"x-expansionResources": {
"oneOf": [
Expand Down
6 changes: 5 additions & 1 deletion embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -24813,7 +24813,7 @@
"$ref": "#/components/schemas/charge"
}
],
"description": "The latest charge created by this PaymentIntent.",
"description": "ID of the latest [Charge object](https://stripe.com/docs/api/charges) created by this PaymentIntent. This property is `null` until PaymentIntent confirmation is attempted.",
"nullable": true,
"x-expansionResources": {
"oneOf": [
Expand Down Expand Up @@ -26739,6 +26739,10 @@
"installments": {
"$ref": "#/components/schemas/payment_flows_installment_options"
},
"request_incremental_authorization_support": {
"description": "Request ability to [increment](https://stripe.com/docs/terminal/features/incremental-authorizations) this PaymentIntent if the combination of MCC and card brand is eligible. Check [incremental_authorization_supported](https://stripe.com/docs/api/charges/object#charge_object-payment_method_details-card_present-incremental_authorization_supported) in the [Confirm](https://stripe.com/docs/api/payment_intents/confirm) response to verify support.",
"type": "boolean"
},
"require_cvc_recollection": {
"description": "When enabled, using a card that is attached to a customer will require the CVC to be provided again (i.e. using the cvc_token parameter).",
"type": "boolean"
Expand Down
Loading