Skip to content

Commit 8c3f340

Browse files
authored
feat: Sync with Seam API via 2275a4e1e7f270abbc6be354b8aaadcb3ff0b27d (#2815)
1 parent 7e0a2f7 commit 8c3f340

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

src/lib/seam/connect/openapi.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72025,6 +72025,12 @@ const openapi: OpenAPISpec = {
7202572025
items: { format: 'uuid', type: 'string' },
7202672026
type: 'array',
7202772027
},
72028+
connected_account_ids: {
72029+
description:
72030+
'IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from.',
72031+
items: { format: 'uuid', type: 'string' },
72032+
type: 'array',
72033+
},
7202872034
device_ids: {
7202972035
description:
7203072036
'IDs of the devices that you want to add to the new space.',
@@ -73631,6 +73637,10 @@ const openapi: OpenAPISpec = {
7363173637
},
7363273638
type: 'array',
7363373639
},
73640+
connected_account_ids: {
73641+
items: { format: 'uuid', type: 'string' },
73642+
type: 'array',
73643+
},
7363473644
devices: {
7363573645
items: {
7363673646
properties: {
@@ -73664,6 +73674,7 @@ const openapi: OpenAPISpec = {
7366473674
'partner_resource_key',
7366573675
'devices',
7366673676
'acs_entrances',
73677+
'connected_account_ids',
7366773678
],
7366873679
type: 'object',
7366973680
},
@@ -73761,6 +73772,10 @@ const openapi: OpenAPISpec = {
7376173772
},
7376273773
type: 'array',
7376373774
},
73775+
connected_account_ids: {
73776+
items: { format: 'uuid', type: 'string' },
73777+
type: 'array',
73778+
},
7376473779
devices: {
7376573780
items: {
7376673781
properties: {
@@ -73794,6 +73809,7 @@ const openapi: OpenAPISpec = {
7379473809
'partner_resource_key',
7379573810
'devices',
7379673811
'acs_entrances',
73812+
'connected_account_ids',
7379773813
],
7379873814
type: 'object',
7379973815
},
@@ -74196,6 +74212,12 @@ const openapi: OpenAPISpec = {
7419674212
items: { format: 'uuid', type: 'string' },
7419774213
type: 'array',
7419874214
},
74215+
connected_account_ids: {
74216+
description:
74217+
'IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from.',
74218+
items: { format: 'uuid', type: 'string' },
74219+
type: 'array',
74220+
},
7419974221
customer_data: {
7420074222
description:
7420174223
'Reservation/stay-related defaults for the space.',

src/lib/seam/connect/route-types.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81295,6 +81295,8 @@ export type Routes = {
8129581295
device_ids?: string[] | undefined
8129681296
/** IDs of the entrances that you want to add to the new space. */
8129781297
acs_entrance_ids?: string[] | undefined
81298+
/** IDs of connected accounts (third-party accounts) to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account a space came from. */
81299+
connected_account_ids?: string[] | undefined
8129881300
/** Space key of the parent space for this space. */
8129981301
parent_space_key?: string | undefined
8130081302
/** Name of the parent space for this space. */
@@ -82497,6 +82499,7 @@ export type Routes = {
8249782499
needs_review?: boolean | undefined
8249882500
is_draft?: boolean | undefined
8249982501
is_common_area?: boolean | undefined
82502+
connected_account_ids: string[]
8250082503
}[]
8250182504
}
8250282505
maxDuration: undefined
@@ -82559,6 +82562,8 @@ export type Routes = {
8255982562
device_ids?: string[] | undefined
8256082563
/** IDs of the entrances that you want to add to the new space. */
8256182564
acs_entrance_ids?: string[] | undefined
82565+
/** IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from. */
82566+
connected_account_ids?: string[] | undefined
8256282567
/** Customer key for which you want to create the space. */
8256382568
customer_key?: string | undefined
8256482569
/** Reservation/stay-related defaults for the space. */

0 commit comments

Comments
 (0)