Skip to content

Commit

Permalink
OpenAPI Update (#836)
Browse files Browse the repository at this point in the history
Update OpenAPI for 23ed98629e80840a2ccbf2e7e4f36fc24e239205

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] authored May 28, 2024
1 parent 34a4f34 commit 82400de
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
36 changes: 36 additions & 0 deletions embedded/openapi/spec3.beta.sdk.json
Original file line number Diff line number Diff line change
Expand Up @@ -45033,6 +45033,12 @@
"payment_pages_checkout_session_custom_fields_dropdown": {
"description": "",
"properties": {
"default_value": {
"description": "The value that will pre-fill on the payment page.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"options": {
"description": "The options available for the customer to select. Up to 200 options allowed.",
"items": {
Expand All @@ -45048,6 +45054,7 @@
}
},
"required": [
"default_value",
"options",
"value"
],
Expand Down Expand Up @@ -45089,6 +45096,12 @@
"payment_pages_checkout_session_custom_fields_numeric": {
"description": "",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"maximum_length": {
"description": "The maximum character length constraint for the customer's input.",
"nullable": true,
Expand All @@ -45107,6 +45120,7 @@
}
},
"required": [
"default_value",
"maximum_length",
"minimum_length",
"value"
Expand Down Expand Up @@ -45148,6 +45162,12 @@
"payment_pages_checkout_session_custom_fields_text": {
"description": "",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"maximum_length": {
"description": "The maximum character length constraint for the customer's input.",
"nullable": true,
Expand All @@ -45166,6 +45186,7 @@
}
},
"required": [
"default_value",
"maximum_length",
"minimum_length",
"value"
Expand Down Expand Up @@ -87787,6 +87808,11 @@
"dropdown": {
"description": "Configuration for `type=dropdown` fields.",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.Must match a `value` in the `options` array.",
"maxLength": 100,
"type": "string"
},
"options": {
"description": "The options available for the customer to select. Up to 200 options allowed.",
"items": {
Expand Down Expand Up @@ -87849,6 +87875,11 @@
"numeric": {
"description": "Configuration for `type=numeric` fields.",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.",
"maxLength": 255,
"type": "string"
},
"maximum_length": {
"description": "The maximum character length constraint for the customer's input.",
"type": "integer"
Expand All @@ -87868,6 +87899,11 @@
"text": {
"description": "Configuration for `type=text` fields.",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.",
"maxLength": 255,
"type": "string"
},
"maximum_length": {
"description": "The maximum character length constraint for the customer's input.",
"type": "integer"
Expand Down
30 changes: 30 additions & 0 deletions embedded/openapi/spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -32327,6 +32327,12 @@
"payment_pages_checkout_session_custom_fields_dropdown": {
"description": "",
"properties": {
"default_value": {
"description": "The value that will pre-fill on the payment page.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"options": {
"description": "The options available for the customer to select. Up to 200 options allowed.",
"items": {
Expand Down Expand Up @@ -32377,6 +32383,12 @@
"payment_pages_checkout_session_custom_fields_numeric": {
"description": "",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"maximum_length": {
"description": "The maximum character length constraint for the customer's input.",
"nullable": true,
Expand Down Expand Up @@ -32423,6 +32435,12 @@
"payment_pages_checkout_session_custom_fields_text": {
"description": "",
"properties": {
"default_value": {
"description": "The value that will pre-fill the field on the payment page.",
"maxLength": 5000,
"nullable": true,
"type": "string"
},
"maximum_length": {
"description": "The maximum character length constraint for the customer's input.",
"nullable": true,
Expand Down Expand Up @@ -64786,6 +64804,10 @@
"properties": {
"dropdown": {
"properties": {
"default_value": {
"maxLength": 100,
"type": "string"
},
"options": {
"items": {
"properties": {
Expand Down Expand Up @@ -64840,6 +64862,10 @@
},
"numeric": {
"properties": {
"default_value": {
"maxLength": 255,
"type": "string"
},
"maximum_length": {
"type": "integer"
},
Expand All @@ -64855,6 +64881,10 @@
},
"text": {
"properties": {
"default_value": {
"maxLength": 255,
"type": "string"
},
"maximum_length": {
"type": "integer"
},
Expand Down

0 comments on commit 82400de

Please sign in to comment.