You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'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
+
},
72028
72034
device_ids: {
72029
72035
description:
72030
72036
'IDs of the devices that you want to add to the new space.',
'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
+
},
74199
74221
customer_data: {
74200
74222
description:
74201
74223
'Reservation/stay-related defaults for the space.',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/route-types.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -81295,6 +81295,8 @@ export type Routes = {
81295
81295
device_ids?: string[] | undefined
81296
81296
/** IDs of the entrances that you want to add to the new space. */
81297
81297
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
81298
81300
/** Space key of the parent space for this space. */
81299
81301
parent_space_key?: string | undefined
81300
81302
/** Name of the parent space for this space. */
@@ -82497,6 +82499,7 @@ export type Routes = {
82497
82499
needs_review?: boolean | undefined
82498
82500
is_draft?: boolean | undefined
82499
82501
is_common_area?: boolean | undefined
82502
+
connected_account_ids: string[]
82500
82503
}[]
82501
82504
}
82502
82505
maxDuration: undefined
@@ -82559,6 +82562,8 @@ export type Routes = {
82559
82562
device_ids?: string[] | undefined
82560
82563
/** IDs of the entrances that you want to add to the new space. */
82561
82564
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
82562
82567
/** Customer key for which you want to create the space. */
82563
82568
customer_key?: string | undefined
82564
82569
/** Reservation/stay-related defaults for the space. */
0 commit comments