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
Copy file name to clipboardExpand all lines: src/lib/seam/connect/openapi.ts
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -25394,6 +25394,10 @@ export default {
25394
25394
format: 'date-time',
25395
25395
type: 'string',
25396
25396
},
25397
+
customer_key: {
25398
+
description: 'Customer key associated with the space.',
25399
+
type: 'string',
25400
+
},
25397
25401
device_count: {
25398
25402
description: 'Number of devices in the space.',
25399
25403
format: 'float',
@@ -72936,7 +72940,7 @@ export default {
72936
72940
name: 'search',
72937
72941
schema: {
72938
72942
description:
72939
-
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
72943
+
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
72940
72944
minLength: 1,
72941
72945
type: 'string',
72942
72946
},
@@ -73056,7 +73060,7 @@ export default {
73056
73060
},
73057
73061
search: {
73058
73062
description:
73059
-
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`.',
73063
+
'String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`.',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/route-types.ts
+21-1Lines changed: 21 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12224,6 +12224,8 @@ export type Routes = {
12224
12224
device_count: number
12225
12225
/** Number of entrances in the space. */
12226
12226
acs_entrance_count: number
12227
+
/** Customer key associated with the space. */
12228
+
customer_key?: string | undefined
12227
12229
/** */
12228
12230
parent_space_id?: string | undefined
12229
12231
/** */
@@ -17329,6 +17331,8 @@ export type Routes = {
17329
17331
device_count: number
17330
17332
/** Number of entrances in the space. */
17331
17333
acs_entrance_count: number
17334
+
/** Customer key associated with the space. */
17335
+
customer_key?: string | undefined
17332
17336
/** */
17333
17337
parent_space_id?: string | undefined
17334
17338
/** */
@@ -79317,6 +79321,8 @@ export type Routes = {
79317
79321
device_count: number
79318
79322
/** Number of entrances in the space. */
79319
79323
acs_entrance_count: number
79324
+
/** Customer key associated with the space. */
79325
+
customer_key?: string | undefined
79320
79326
/** */
79321
79327
parent_space_id?: string | undefined
79322
79328
/** */
@@ -79357,6 +79363,8 @@ export type Routes = {
79357
79363
device_count: number
79358
79364
/** Number of entrances in the space. */
79359
79365
acs_entrance_count: number
79366
+
/** Customer key associated with the space. */
79367
+
customer_key?: string | undefined
79360
79368
/** */
79361
79369
parent_space_id?: string | undefined
79362
79370
/** */
@@ -80487,6 +80495,8 @@ export type Routes = {
80487
80495
device_count: number
80488
80496
/** Number of entrances in the space. */
80489
80497
acs_entrance_count: number
80498
+
/** Customer key associated with the space. */
80499
+
customer_key?: string | undefined
80490
80500
/** */
80491
80501
parent_space_id?: string | undefined
80492
80502
/** */
@@ -80542,6 +80552,8 @@ export type Routes = {
80542
80552
device_count: number
80543
80553
/** Number of entrances in the space. */
80544
80554
acs_entrance_count: number
80555
+
/** Customer key associated with the space. */
80556
+
customer_key?: string | undefined
80545
80557
/** */
80546
80558
parent_space_id?: string | undefined
80547
80559
/** */
@@ -80603,6 +80615,8 @@ export type Routes = {
80603
80615
device_count: number
80604
80616
/** Number of entrances in the space. */
80605
80617
acs_entrance_count: number
80618
+
/** Customer key associated with the space. */
80619
+
customer_key?: string | undefined
80606
80620
/** */
80607
80621
parent_space_id?: string | undefined
80608
80622
/** */
@@ -82908,7 +82922,7 @@ export type Routes = {
82908
82922
commonParams: {
82909
82923
/** Customer key for which you want to list spaces. */
82910
82924
customer_key?: string | undefined
82911
-
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`. */
82925
+
/** String for which to search. Filters returned spaces to include all records that satisfy a partial match using `name`, `space_key`, or `customer_key`. */
82912
82926
search?: string | undefined
82913
82927
/** Filter spaces to only include those that contain devices or access control systems belonging to the specified connected account. */
0 commit comments