Skip to content

Commit 81e70f0

Browse files
Update OpenAPI specification for beta
1 parent 5c89256 commit 81e70f0

File tree

2 files changed

+81
-2
lines changed

2 files changed

+81
-2
lines changed

openapi/spec3.beta.sdk.json

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7969,6 +7969,12 @@
79697969
"nullable": true,
79707970
"type": "object"
79717971
},
7972+
"name": {
7973+
"description": "The name of the configuration.",
7974+
"maxLength": 5000,
7975+
"nullable": true,
7976+
"type": "string"
7977+
},
79727978
"object": {
79737979
"description": "String representing the object's type. Objects of the same type share the same value.",
79747980
"enum": [
@@ -7994,6 +8000,7 @@
79948000
"livemode",
79958001
"login_page",
79968002
"metadata",
8003+
"name",
79978004
"object",
79988005
"updated"
79998006
],
@@ -8018,6 +8025,7 @@
80188025
"livemode",
80198026
"login_page",
80208027
"metadata",
8028+
"name",
80218029
"object",
80228030
"updated"
80238031
],
@@ -109835,6 +109843,10 @@
109835109843
"metadata": {
109836109844
"explode": true,
109837109845
"style": "deepObject"
109846+
},
109847+
"name": {
109848+
"explode": true,
109849+
"style": "deepObject"
109838109850
}
109839109851
},
109840109852
"schema": {
@@ -110254,6 +110266,21 @@
110254110266
},
110255110267
"description": "Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.",
110256110268
"type": "object"
110269+
},
110270+
"name": {
110271+
"anyOf": [
110272+
{
110273+
"maxLength": 256,
110274+
"type": "string"
110275+
},
110276+
{
110277+
"enum": [
110278+
""
110279+
],
110280+
"type": "string"
110281+
}
110282+
],
110283+
"description": "The name of the configuration."
110257110284
}
110258110285
},
110259110286
"required": [
@@ -110265,7 +110292,8 @@
110265110292
"default_return_url",
110266110293
"features",
110267110294
"login_page",
110268-
"metadata"
110295+
"metadata",
110296+
"name"
110269110297
]
110270110298
}
110271110299
}
@@ -110407,6 +110435,10 @@
110407110435
"metadata": {
110408110436
"explode": true,
110409110437
"style": "deepObject"
110438+
},
110439+
"name": {
110440+
"explode": true,
110441+
"style": "deepObject"
110410110442
}
110411110443
},
110412110444
"schema": {
@@ -110860,6 +110892,21 @@
110860110892
}
110861110893
],
110862110894
"description": "Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`."
110895+
},
110896+
"name": {
110897+
"anyOf": [
110898+
{
110899+
"maxLength": 256,
110900+
"type": "string"
110901+
},
110902+
{
110903+
"enum": [
110904+
""
110905+
],
110906+
"type": "string"
110907+
}
110908+
],
110909+
"description": "The name of the configuration."
110863110910
}
110864110911
},
110865110912
"type": "object",
@@ -110869,7 +110916,8 @@
110869110916
"default_return_url",
110870110917
"features",
110871110918
"login_page",
110872-
"metadata"
110919+
"metadata",
110920+
"name"
110873110921
]
110874110922
}
110875110923
}

openapi/spec3.beta.sdk.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7234,6 +7234,11 @@ components:
72347234
additional information about the object in a structured format.
72357235
nullable: true
72367236
type: object
7237+
name:
7238+
description: The name of the configuration.
7239+
maxLength: 5000
7240+
nullable: true
7241+
type: string
72377242
object:
72387243
description: >-
72397244
String representing the object's type. Objects of the same type
@@ -7259,6 +7264,7 @@ components:
72597264
- livemode
72607265
- login_page
72617266
- metadata
7267+
- name
72627268
- object
72637269
- updated
72647270
title: PortalConfiguration
@@ -7281,6 +7287,7 @@ components:
72817287
- livemode
72827288
- login_page
72837289
- metadata
7290+
- name
72847291
- object
72857292
- updated
72867293
x-stripeOperations:
@@ -99745,6 +99752,9 @@ paths:
9974599752
metadata:
9974699753
explode: true
9974799754
style: deepObject
99755+
name:
99756+
explode: true
99757+
style: deepObject
9974899758
schema:
9974999759
additionalProperties: false
9975099760
properties:
@@ -100107,6 +100117,14 @@ paths:
100107100117
value to them. All keys can be unset by posting an empty
100108100118
value to `metadata`.
100109100119
type: object
100120+
name:
100121+
anyOf:
100122+
- maxLength: 256
100123+
type: string
100124+
- enum:
100125+
- ''
100126+
type: string
100127+
description: The name of the configuration.
100110100128
required:
100111100129
- features
100112100130
type: object
@@ -100116,6 +100134,7 @@ paths:
100116100134
- features
100117100135
- login_page
100118100136
- metadata
100137+
- name
100119100138
required: true
100120100139
responses:
100121100140
'200':
@@ -100214,6 +100233,9 @@ paths:
100214100233
metadata:
100215100234
explode: true
100216100235
style: deepObject
100236+
name:
100237+
explode: true
100238+
style: deepObject
100217100239
schema:
100218100240
additionalProperties: false
100219100241
properties:
@@ -100594,6 +100616,14 @@ paths:
100594100616
format. Individual keys can be unset by posting an empty
100595100617
value to them. All keys can be unset by posting an empty
100596100618
value to `metadata`.
100619+
name:
100620+
anyOf:
100621+
- maxLength: 256
100622+
type: string
100623+
- enum:
100624+
- ''
100625+
type: string
100626+
description: The name of the configuration.
100597100627
type: object
100598100628
x-stripeMostCommon:
100599100629
- active
@@ -100602,6 +100632,7 @@ paths:
100602100632
- features
100603100633
- login_page
100604100634
- metadata
100635+
- name
100605100636
required: false
100606100637
responses:
100607100638
'200':

0 commit comments

Comments
 (0)