@seamapi/types 1.271.1 → 1.273.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +183 -40
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +119 -0
- package/lib/seam/connect/models/acs/acs-access-group.js +23 -8
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +48 -0
- package/lib/seam/connect/openapi.js +161 -31
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +59 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +31 -8
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +191 -31
- package/src/lib/seam/connect/route-types.ts +59 -0
package/dist/connect.d.cts
CHANGED
|
@@ -5236,14 +5236,17 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5236
5236
|
nest_device_id: z.ZodString;
|
|
5237
5237
|
device_name: z.ZodString;
|
|
5238
5238
|
custom_name: z.ZodString;
|
|
5239
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
5239
5240
|
}, "strip", z.ZodTypeAny, {
|
|
5240
5241
|
device_name: string;
|
|
5241
5242
|
nest_device_id: string;
|
|
5242
5243
|
custom_name: string;
|
|
5244
|
+
display_name?: string | undefined;
|
|
5243
5245
|
}, {
|
|
5244
5246
|
device_name: string;
|
|
5245
5247
|
nest_device_id: string;
|
|
5246
5248
|
custom_name: string;
|
|
5249
|
+
display_name?: string | undefined;
|
|
5247
5250
|
}>>;
|
|
5248
5251
|
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
5249
5252
|
ecobee_device_id: z.ZodString;
|
|
@@ -5582,6 +5585,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5582
5585
|
device_name: string;
|
|
5583
5586
|
nest_device_id: string;
|
|
5584
5587
|
custom_name: string;
|
|
5588
|
+
display_name?: string | undefined;
|
|
5585
5589
|
} | undefined;
|
|
5586
5590
|
ecobee_metadata?: {
|
|
5587
5591
|
device_name: string;
|
|
@@ -5792,6 +5796,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5792
5796
|
device_name: string;
|
|
5793
5797
|
nest_device_id: string;
|
|
5794
5798
|
custom_name: string;
|
|
5799
|
+
display_name?: string | undefined;
|
|
5795
5800
|
} | undefined;
|
|
5796
5801
|
ecobee_metadata?: {
|
|
5797
5802
|
device_name: string;
|
|
@@ -6529,6 +6534,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6529
6534
|
device_name: string;
|
|
6530
6535
|
nest_device_id: string;
|
|
6531
6536
|
custom_name: string;
|
|
6537
|
+
display_name?: string | undefined;
|
|
6532
6538
|
} | undefined;
|
|
6533
6539
|
ecobee_metadata?: {
|
|
6534
6540
|
device_name: string;
|
|
@@ -6917,6 +6923,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6917
6923
|
device_name: string;
|
|
6918
6924
|
nest_device_id: string;
|
|
6919
6925
|
custom_name: string;
|
|
6926
|
+
display_name?: string | undefined;
|
|
6920
6927
|
} | undefined;
|
|
6921
6928
|
ecobee_metadata?: {
|
|
6922
6929
|
device_name: string;
|
|
@@ -7874,14 +7881,17 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7874
7881
|
nest_device_id: z.ZodString;
|
|
7875
7882
|
device_name: z.ZodString;
|
|
7876
7883
|
custom_name: z.ZodString;
|
|
7884
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
7877
7885
|
}, "strip", z.ZodTypeAny, {
|
|
7878
7886
|
device_name: string;
|
|
7879
7887
|
nest_device_id: string;
|
|
7880
7888
|
custom_name: string;
|
|
7889
|
+
display_name?: string | undefined;
|
|
7881
7890
|
}, {
|
|
7882
7891
|
device_name: string;
|
|
7883
7892
|
nest_device_id: string;
|
|
7884
7893
|
custom_name: string;
|
|
7894
|
+
display_name?: string | undefined;
|
|
7885
7895
|
}>>;
|
|
7886
7896
|
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
7887
7897
|
ecobee_device_id: z.ZodString;
|
|
@@ -8220,6 +8230,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8220
8230
|
device_name: string;
|
|
8221
8231
|
nest_device_id: string;
|
|
8222
8232
|
custom_name: string;
|
|
8233
|
+
display_name?: string | undefined;
|
|
8223
8234
|
} | undefined;
|
|
8224
8235
|
ecobee_metadata?: {
|
|
8225
8236
|
device_name: string;
|
|
@@ -8430,6 +8441,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8430
8441
|
device_name: string;
|
|
8431
8442
|
nest_device_id: string;
|
|
8432
8443
|
custom_name: string;
|
|
8444
|
+
display_name?: string | undefined;
|
|
8433
8445
|
} | undefined;
|
|
8434
8446
|
ecobee_metadata?: {
|
|
8435
8447
|
device_name: string;
|
|
@@ -11298,6 +11310,7 @@ declare const _default: {
|
|
|
11298
11310
|
type: string;
|
|
11299
11311
|
};
|
|
11300
11312
|
acs_access_group: {
|
|
11313
|
+
description: string;
|
|
11301
11314
|
properties: {
|
|
11302
11315
|
access_group_type: {
|
|
11303
11316
|
deprecated: boolean;
|
|
@@ -11311,14 +11324,17 @@ declare const _default: {
|
|
|
11311
11324
|
'x-deprecated': string;
|
|
11312
11325
|
};
|
|
11313
11326
|
acs_access_group_id: {
|
|
11327
|
+
description: string;
|
|
11314
11328
|
format: string;
|
|
11315
11329
|
type: string;
|
|
11316
11330
|
};
|
|
11317
11331
|
acs_system_id: {
|
|
11332
|
+
description: string;
|
|
11318
11333
|
format: string;
|
|
11319
11334
|
type: string;
|
|
11320
11335
|
};
|
|
11321
11336
|
created_at: {
|
|
11337
|
+
description: string;
|
|
11322
11338
|
format: string;
|
|
11323
11339
|
type: string;
|
|
11324
11340
|
};
|
|
@@ -11326,10 +11342,12 @@ declare const _default: {
|
|
|
11326
11342
|
type: string;
|
|
11327
11343
|
};
|
|
11328
11344
|
external_type: {
|
|
11345
|
+
description: string;
|
|
11329
11346
|
enum: string[];
|
|
11330
11347
|
type: string;
|
|
11331
11348
|
};
|
|
11332
11349
|
external_type_display_name: {
|
|
11350
|
+
description: string;
|
|
11333
11351
|
type: string;
|
|
11334
11352
|
};
|
|
11335
11353
|
is_managed: {
|
|
@@ -11337,9 +11355,11 @@ declare const _default: {
|
|
|
11337
11355
|
type: string;
|
|
11338
11356
|
};
|
|
11339
11357
|
name: {
|
|
11358
|
+
description: string;
|
|
11340
11359
|
type: string;
|
|
11341
11360
|
};
|
|
11342
11361
|
workspace_id: {
|
|
11362
|
+
description: string;
|
|
11343
11363
|
format: string;
|
|
11344
11364
|
type: string;
|
|
11345
11365
|
};
|
|
@@ -13828,6 +13848,9 @@ declare const _default: {
|
|
|
13828
13848
|
device_name: {
|
|
13829
13849
|
type: string;
|
|
13830
13850
|
};
|
|
13851
|
+
display_name: {
|
|
13852
|
+
type: string;
|
|
13853
|
+
};
|
|
13831
13854
|
nest_device_id: {
|
|
13832
13855
|
type: string;
|
|
13833
13856
|
};
|
|
@@ -17596,6 +17619,7 @@ declare const _default: {
|
|
|
17596
17619
|
};
|
|
17597
17620
|
'/acs/access_groups/add_user': {
|
|
17598
17621
|
post: {
|
|
17622
|
+
description: string;
|
|
17599
17623
|
operationId: string;
|
|
17600
17624
|
requestBody: {
|
|
17601
17625
|
content: {
|
|
@@ -17603,10 +17627,12 @@ declare const _default: {
|
|
|
17603
17627
|
schema: {
|
|
17604
17628
|
properties: {
|
|
17605
17629
|
acs_access_group_id: {
|
|
17630
|
+
description: string;
|
|
17606
17631
|
format: string;
|
|
17607
17632
|
type: string;
|
|
17608
17633
|
};
|
|
17609
17634
|
acs_user_id: {
|
|
17635
|
+
description: string;
|
|
17610
17636
|
format: string;
|
|
17611
17637
|
type: string;
|
|
17612
17638
|
};
|
|
@@ -17661,6 +17687,7 @@ declare const _default: {
|
|
|
17661
17687
|
'x-response-key': null;
|
|
17662
17688
|
};
|
|
17663
17689
|
put: {
|
|
17690
|
+
description: string;
|
|
17664
17691
|
operationId: string;
|
|
17665
17692
|
requestBody: {
|
|
17666
17693
|
content: {
|
|
@@ -17668,10 +17695,12 @@ declare const _default: {
|
|
|
17668
17695
|
schema: {
|
|
17669
17696
|
properties: {
|
|
17670
17697
|
acs_access_group_id: {
|
|
17698
|
+
description: string;
|
|
17671
17699
|
format: string;
|
|
17672
17700
|
type: string;
|
|
17673
17701
|
};
|
|
17674
17702
|
acs_user_id: {
|
|
17703
|
+
description: string;
|
|
17675
17704
|
format: string;
|
|
17676
17705
|
type: string;
|
|
17677
17706
|
};
|
|
@@ -17727,6 +17756,7 @@ declare const _default: {
|
|
|
17727
17756
|
};
|
|
17728
17757
|
'/acs/access_groups/get': {
|
|
17729
17758
|
post: {
|
|
17759
|
+
description: string;
|
|
17730
17760
|
operationId: string;
|
|
17731
17761
|
requestBody: {
|
|
17732
17762
|
content: {
|
|
@@ -17734,6 +17764,7 @@ declare const _default: {
|
|
|
17734
17764
|
schema: {
|
|
17735
17765
|
properties: {
|
|
17736
17766
|
acs_access_group_id: {
|
|
17767
|
+
description: string;
|
|
17737
17768
|
format: string;
|
|
17738
17769
|
type: string;
|
|
17739
17770
|
};
|
|
@@ -17794,6 +17825,7 @@ declare const _default: {
|
|
|
17794
17825
|
};
|
|
17795
17826
|
'/acs/access_groups/list': {
|
|
17796
17827
|
post: {
|
|
17828
|
+
description: string;
|
|
17797
17829
|
operationId: string;
|
|
17798
17830
|
requestBody: {
|
|
17799
17831
|
content: {
|
|
@@ -17801,10 +17833,12 @@ declare const _default: {
|
|
|
17801
17833
|
schema: {
|
|
17802
17834
|
properties: {
|
|
17803
17835
|
acs_system_id: {
|
|
17836
|
+
description: string;
|
|
17804
17837
|
format: string;
|
|
17805
17838
|
type: string;
|
|
17806
17839
|
};
|
|
17807
17840
|
acs_user_id: {
|
|
17841
|
+
description: string;
|
|
17808
17842
|
format: string;
|
|
17809
17843
|
type: string;
|
|
17810
17844
|
};
|
|
@@ -17867,6 +17901,7 @@ declare const _default: {
|
|
|
17867
17901
|
};
|
|
17868
17902
|
'/acs/access_groups/list_accessible_entrances': {
|
|
17869
17903
|
post: {
|
|
17904
|
+
description: string;
|
|
17870
17905
|
operationId: string;
|
|
17871
17906
|
requestBody: {
|
|
17872
17907
|
content: {
|
|
@@ -17874,6 +17909,7 @@ declare const _default: {
|
|
|
17874
17909
|
schema: {
|
|
17875
17910
|
properties: {
|
|
17876
17911
|
acs_access_group_id: {
|
|
17912
|
+
description: string;
|
|
17877
17913
|
format: string;
|
|
17878
17914
|
type: string;
|
|
17879
17915
|
};
|
|
@@ -17937,6 +17973,7 @@ declare const _default: {
|
|
|
17937
17973
|
};
|
|
17938
17974
|
'/acs/access_groups/list_users': {
|
|
17939
17975
|
post: {
|
|
17976
|
+
description: string;
|
|
17940
17977
|
operationId: string;
|
|
17941
17978
|
requestBody: {
|
|
17942
17979
|
content: {
|
|
@@ -17944,6 +17981,7 @@ declare const _default: {
|
|
|
17944
17981
|
schema: {
|
|
17945
17982
|
properties: {
|
|
17946
17983
|
acs_access_group_id: {
|
|
17984
|
+
description: string;
|
|
17947
17985
|
format: string;
|
|
17948
17986
|
type: string;
|
|
17949
17987
|
};
|
|
@@ -18007,6 +18045,7 @@ declare const _default: {
|
|
|
18007
18045
|
};
|
|
18008
18046
|
'/acs/access_groups/remove_user': {
|
|
18009
18047
|
post: {
|
|
18048
|
+
description: string;
|
|
18010
18049
|
operationId: string;
|
|
18011
18050
|
requestBody: {
|
|
18012
18051
|
content: {
|
|
@@ -18014,10 +18053,12 @@ declare const _default: {
|
|
|
18014
18053
|
schema: {
|
|
18015
18054
|
properties: {
|
|
18016
18055
|
acs_access_group_id: {
|
|
18056
|
+
description: string;
|
|
18017
18057
|
format: string;
|
|
18018
18058
|
type: string;
|
|
18019
18059
|
};
|
|
18020
18060
|
acs_user_id: {
|
|
18061
|
+
description: string;
|
|
18021
18062
|
format: string;
|
|
18022
18063
|
type: string;
|
|
18023
18064
|
};
|
|
@@ -18074,6 +18115,7 @@ declare const _default: {
|
|
|
18074
18115
|
};
|
|
18075
18116
|
'/acs/access_groups/unmanaged/get': {
|
|
18076
18117
|
post: {
|
|
18118
|
+
description: string;
|
|
18077
18119
|
operationId: string;
|
|
18078
18120
|
requestBody: {
|
|
18079
18121
|
content: {
|
|
@@ -18081,6 +18123,7 @@ declare const _default: {
|
|
|
18081
18123
|
schema: {
|
|
18082
18124
|
properties: {
|
|
18083
18125
|
acs_access_group_id: {
|
|
18126
|
+
description: string;
|
|
18084
18127
|
format: string;
|
|
18085
18128
|
type: string;
|
|
18086
18129
|
};
|
|
@@ -18111,14 +18154,17 @@ declare const _default: {
|
|
|
18111
18154
|
'x-deprecated': string;
|
|
18112
18155
|
};
|
|
18113
18156
|
acs_access_group_id: {
|
|
18157
|
+
description: string;
|
|
18114
18158
|
format: string;
|
|
18115
18159
|
type: string;
|
|
18116
18160
|
};
|
|
18117
18161
|
acs_system_id: {
|
|
18162
|
+
description: string;
|
|
18118
18163
|
format: string;
|
|
18119
18164
|
type: string;
|
|
18120
18165
|
};
|
|
18121
18166
|
created_at: {
|
|
18167
|
+
description: string;
|
|
18122
18168
|
format: string;
|
|
18123
18169
|
type: string;
|
|
18124
18170
|
};
|
|
@@ -18126,10 +18172,12 @@ declare const _default: {
|
|
|
18126
18172
|
type: string;
|
|
18127
18173
|
};
|
|
18128
18174
|
external_type: {
|
|
18175
|
+
description: string;
|
|
18129
18176
|
enum: string[];
|
|
18130
18177
|
type: string;
|
|
18131
18178
|
};
|
|
18132
18179
|
external_type_display_name: {
|
|
18180
|
+
description: string;
|
|
18133
18181
|
type: string;
|
|
18134
18182
|
};
|
|
18135
18183
|
is_managed: {
|
|
@@ -18137,9 +18185,11 @@ declare const _default: {
|
|
|
18137
18185
|
type: string;
|
|
18138
18186
|
};
|
|
18139
18187
|
name: {
|
|
18188
|
+
description: string;
|
|
18140
18189
|
type: string;
|
|
18141
18190
|
};
|
|
18142
18191
|
workspace_id: {
|
|
18192
|
+
description: string;
|
|
18143
18193
|
format: string;
|
|
18144
18194
|
type: string;
|
|
18145
18195
|
};
|
|
@@ -18188,6 +18238,7 @@ declare const _default: {
|
|
|
18188
18238
|
};
|
|
18189
18239
|
'/acs/access_groups/unmanaged/list': {
|
|
18190
18240
|
post: {
|
|
18241
|
+
description: string;
|
|
18191
18242
|
operationId: string;
|
|
18192
18243
|
requestBody: {
|
|
18193
18244
|
content: {
|
|
@@ -18195,10 +18246,12 @@ declare const _default: {
|
|
|
18195
18246
|
schema: {
|
|
18196
18247
|
properties: {
|
|
18197
18248
|
acs_system_id: {
|
|
18249
|
+
description: string;
|
|
18198
18250
|
format: string;
|
|
18199
18251
|
type: string;
|
|
18200
18252
|
};
|
|
18201
18253
|
acs_user_id: {
|
|
18254
|
+
description: string;
|
|
18202
18255
|
format: string;
|
|
18203
18256
|
type: string;
|
|
18204
18257
|
};
|
|
@@ -18229,14 +18282,17 @@ declare const _default: {
|
|
|
18229
18282
|
'x-deprecated': string;
|
|
18230
18283
|
};
|
|
18231
18284
|
acs_access_group_id: {
|
|
18285
|
+
description: string;
|
|
18232
18286
|
format: string;
|
|
18233
18287
|
type: string;
|
|
18234
18288
|
};
|
|
18235
18289
|
acs_system_id: {
|
|
18290
|
+
description: string;
|
|
18236
18291
|
format: string;
|
|
18237
18292
|
type: string;
|
|
18238
18293
|
};
|
|
18239
18294
|
created_at: {
|
|
18295
|
+
description: string;
|
|
18240
18296
|
format: string;
|
|
18241
18297
|
type: string;
|
|
18242
18298
|
};
|
|
@@ -18244,10 +18300,12 @@ declare const _default: {
|
|
|
18244
18300
|
type: string;
|
|
18245
18301
|
};
|
|
18246
18302
|
external_type: {
|
|
18303
|
+
description: string;
|
|
18247
18304
|
enum: string[];
|
|
18248
18305
|
type: string;
|
|
18249
18306
|
};
|
|
18250
18307
|
external_type_display_name: {
|
|
18308
|
+
description: string;
|
|
18251
18309
|
type: string;
|
|
18252
18310
|
};
|
|
18253
18311
|
is_managed: {
|
|
@@ -18255,9 +18313,11 @@ declare const _default: {
|
|
|
18255
18313
|
type: string;
|
|
18256
18314
|
};
|
|
18257
18315
|
name: {
|
|
18316
|
+
description: string;
|
|
18258
18317
|
type: string;
|
|
18259
18318
|
};
|
|
18260
18319
|
workspace_id: {
|
|
18320
|
+
description: string;
|
|
18261
18321
|
format: string;
|
|
18262
18322
|
type: string;
|
|
18263
18323
|
};
|
|
@@ -33736,7 +33796,9 @@ interface Routes {
|
|
|
33736
33796
|
queryParams: {};
|
|
33737
33797
|
jsonBody: {};
|
|
33738
33798
|
commonParams: {
|
|
33799
|
+
/** ID of the desired access group. */
|
|
33739
33800
|
acs_access_group_id: string;
|
|
33801
|
+
/** ID of the desired user. */
|
|
33740
33802
|
acs_user_id: string;
|
|
33741
33803
|
};
|
|
33742
33804
|
formData: {};
|
|
@@ -33748,14 +33810,24 @@ interface Routes {
|
|
|
33748
33810
|
queryParams: {};
|
|
33749
33811
|
jsonBody: {};
|
|
33750
33812
|
commonParams: {
|
|
33813
|
+
/** ID of the desired access group. */
|
|
33751
33814
|
acs_access_group_id: string;
|
|
33752
33815
|
};
|
|
33753
33816
|
formData: {};
|
|
33754
33817
|
jsonResponse: {
|
|
33818
|
+
/**
|
|
33819
|
+
Group that defines the entrances to which a set of users has access and, in some cases, the access schedule for these entrances and users.
|
|
33820
|
+
|
|
33821
|
+
The `acs_access_group` object represents an [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems).
|
|
33822
|
+
*/
|
|
33755
33823
|
acs_access_group: {
|
|
33824
|
+
/** ID of the access group. */
|
|
33756
33825
|
acs_access_group_id: string;
|
|
33826
|
+
/** ID of the access control system that contains the access group. */
|
|
33757
33827
|
acs_system_id: string;
|
|
33828
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
33758
33829
|
workspace_id: string;
|
|
33830
|
+
/** Name of the access group. */
|
|
33759
33831
|
name: string;
|
|
33760
33832
|
/**
|
|
33761
33833
|
* @deprecated use external_type */
|
|
@@ -33764,8 +33836,11 @@ interface Routes {
|
|
|
33764
33836
|
* @deprecated use external_type_display_name */
|
|
33765
33837
|
access_group_type_display_name: string;
|
|
33766
33838
|
display_name: string;
|
|
33839
|
+
/** Brand-specific terminology for the access group type. */
|
|
33767
33840
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
33841
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
33768
33842
|
external_type_display_name: string;
|
|
33843
|
+
/** Date and time at which the access group was created. */
|
|
33769
33844
|
created_at: string;
|
|
33770
33845
|
is_managed: true;
|
|
33771
33846
|
};
|
|
@@ -33777,15 +33852,21 @@ interface Routes {
|
|
|
33777
33852
|
queryParams: {};
|
|
33778
33853
|
jsonBody: {};
|
|
33779
33854
|
commonParams: {
|
|
33855
|
+
/** ID of the access control system for which you want to retrieve all access groups. */
|
|
33780
33856
|
acs_system_id?: string | undefined;
|
|
33857
|
+
/** ID of the user for which you want to retrieve all access groups. */
|
|
33781
33858
|
acs_user_id?: string | undefined;
|
|
33782
33859
|
};
|
|
33783
33860
|
formData: {};
|
|
33784
33861
|
jsonResponse: {
|
|
33785
33862
|
acs_access_groups: Array<{
|
|
33863
|
+
/** ID of the access group. */
|
|
33786
33864
|
acs_access_group_id: string;
|
|
33865
|
+
/** ID of the access control system that contains the access group. */
|
|
33787
33866
|
acs_system_id: string;
|
|
33867
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
33788
33868
|
workspace_id: string;
|
|
33869
|
+
/** Name of the access group. */
|
|
33789
33870
|
name: string;
|
|
33790
33871
|
/**
|
|
33791
33872
|
* @deprecated use external_type */
|
|
@@ -33794,8 +33875,11 @@ interface Routes {
|
|
|
33794
33875
|
* @deprecated use external_type_display_name */
|
|
33795
33876
|
access_group_type_display_name: string;
|
|
33796
33877
|
display_name: string;
|
|
33878
|
+
/** Brand-specific terminology for the access group type. */
|
|
33797
33879
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
33880
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
33798
33881
|
external_type_display_name: string;
|
|
33882
|
+
/** Date and time at which the access group was created. */
|
|
33799
33883
|
created_at: string;
|
|
33800
33884
|
is_managed: true;
|
|
33801
33885
|
}>;
|
|
@@ -33807,6 +33891,7 @@ interface Routes {
|
|
|
33807
33891
|
queryParams: {};
|
|
33808
33892
|
jsonBody: {};
|
|
33809
33893
|
commonParams: {
|
|
33894
|
+
/** ID of the access group for which you want to retrieve all accessible entrances. */
|
|
33810
33895
|
acs_access_group_id: string;
|
|
33811
33896
|
};
|
|
33812
33897
|
formData: {};
|
|
@@ -33857,6 +33942,7 @@ interface Routes {
|
|
|
33857
33942
|
queryParams: {};
|
|
33858
33943
|
jsonBody: {};
|
|
33859
33944
|
commonParams: {
|
|
33945
|
+
/** ID of the access group for which you want to retrieve all users. */
|
|
33860
33946
|
acs_access_group_id: string;
|
|
33861
33947
|
};
|
|
33862
33948
|
formData: {};
|
|
@@ -33957,7 +34043,9 @@ interface Routes {
|
|
|
33957
34043
|
queryParams: {};
|
|
33958
34044
|
jsonBody: {};
|
|
33959
34045
|
commonParams: {
|
|
34046
|
+
/** ID of the desired access group. */
|
|
33960
34047
|
acs_access_group_id: string;
|
|
34048
|
+
/** ID of the desired user. */
|
|
33961
34049
|
acs_user_id: string;
|
|
33962
34050
|
};
|
|
33963
34051
|
formData: {};
|
|
@@ -33969,14 +34057,19 @@ interface Routes {
|
|
|
33969
34057
|
queryParams: {};
|
|
33970
34058
|
jsonBody: {};
|
|
33971
34059
|
commonParams: {
|
|
34060
|
+
/** ID of the desired unmanaged access group. */
|
|
33972
34061
|
acs_access_group_id: string;
|
|
33973
34062
|
};
|
|
33974
34063
|
formData: {};
|
|
33975
34064
|
jsonResponse: {
|
|
33976
34065
|
acs_access_group: {
|
|
34066
|
+
/** ID of the access group. */
|
|
33977
34067
|
acs_access_group_id: string;
|
|
34068
|
+
/** ID of the access control system that contains the access group. */
|
|
33978
34069
|
acs_system_id: string;
|
|
34070
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
33979
34071
|
workspace_id: string;
|
|
34072
|
+
/** Name of the access group. */
|
|
33980
34073
|
name: string;
|
|
33981
34074
|
/**
|
|
33982
34075
|
* @deprecated use external_type */
|
|
@@ -33985,8 +34078,11 @@ interface Routes {
|
|
|
33985
34078
|
* @deprecated use external_type_display_name */
|
|
33986
34079
|
access_group_type_display_name: string;
|
|
33987
34080
|
display_name: string;
|
|
34081
|
+
/** Brand-specific terminology for the access group type. */
|
|
33988
34082
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
34083
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
33989
34084
|
external_type_display_name: string;
|
|
34085
|
+
/** Date and time at which the access group was created. */
|
|
33990
34086
|
created_at: string;
|
|
33991
34087
|
is_managed: false;
|
|
33992
34088
|
};
|
|
@@ -33998,15 +34094,21 @@ interface Routes {
|
|
|
33998
34094
|
queryParams: {};
|
|
33999
34095
|
jsonBody: {};
|
|
34000
34096
|
commonParams: {
|
|
34097
|
+
/** ID of the access control system for which you want to retrieve all unmanaged access groups. */
|
|
34001
34098
|
acs_system_id?: string | undefined;
|
|
34099
|
+
/** ID of the user for which you want to retrieve all unmanaged access groups. */
|
|
34002
34100
|
acs_user_id?: string | undefined;
|
|
34003
34101
|
};
|
|
34004
34102
|
formData: {};
|
|
34005
34103
|
jsonResponse: {
|
|
34006
34104
|
acs_access_groups: Array<{
|
|
34105
|
+
/** ID of the access group. */
|
|
34007
34106
|
acs_access_group_id: string;
|
|
34107
|
+
/** ID of the access control system that contains the access group. */
|
|
34008
34108
|
acs_system_id: string;
|
|
34109
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the access group. */
|
|
34009
34110
|
workspace_id: string;
|
|
34111
|
+
/** Name of the access group. */
|
|
34010
34112
|
name: string;
|
|
34011
34113
|
/**
|
|
34012
34114
|
* @deprecated use external_type */
|
|
@@ -34015,8 +34117,11 @@ interface Routes {
|
|
|
34015
34117
|
* @deprecated use external_type_display_name */
|
|
34016
34118
|
access_group_type_display_name: string;
|
|
34017
34119
|
display_name: string;
|
|
34120
|
+
/** Brand-specific terminology for the access group type. */
|
|
34018
34121
|
external_type: 'pti_unit' | 'pti_access_level' | 'salto_access_group' | 'brivo_group';
|
|
34122
|
+
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
34019
34123
|
external_type_display_name: string;
|
|
34124
|
+
/** Date and time at which the access group was created. */
|
|
34020
34125
|
created_at: string;
|
|
34021
34126
|
is_managed: false;
|
|
34022
34127
|
}>;
|
|
@@ -35487,6 +35592,7 @@ interface Routes {
|
|
|
35487
35592
|
nest_device_id: string;
|
|
35488
35593
|
device_name: string;
|
|
35489
35594
|
custom_name: string;
|
|
35595
|
+
display_name?: string | undefined;
|
|
35490
35596
|
} | undefined;
|
|
35491
35597
|
ecobee_metadata?: {
|
|
35492
35598
|
ecobee_device_id: string;
|
|
@@ -39462,6 +39568,7 @@ interface Routes {
|
|
|
39462
39568
|
nest_device_id: string;
|
|
39463
39569
|
device_name: string;
|
|
39464
39570
|
custom_name: string;
|
|
39571
|
+
display_name?: string | undefined;
|
|
39465
39572
|
} | undefined;
|
|
39466
39573
|
ecobee_metadata?: {
|
|
39467
39574
|
ecobee_device_id: string;
|
|
@@ -39927,6 +40034,7 @@ interface Routes {
|
|
|
39927
40034
|
nest_device_id: string;
|
|
39928
40035
|
device_name: string;
|
|
39929
40036
|
custom_name: string;
|
|
40037
|
+
display_name?: string | undefined;
|
|
39930
40038
|
} | undefined;
|
|
39931
40039
|
ecobee_metadata?: {
|
|
39932
40040
|
ecobee_device_id: string;
|
|
@@ -40792,6 +40900,7 @@ interface Routes {
|
|
|
40792
40900
|
nest_device_id: string;
|
|
40793
40901
|
device_name: string;
|
|
40794
40902
|
custom_name: string;
|
|
40903
|
+
display_name?: string | undefined;
|
|
40795
40904
|
} | undefined;
|
|
40796
40905
|
ecobee_metadata?: {
|
|
40797
40906
|
ecobee_device_id: string;
|
|
@@ -41232,6 +41341,7 @@ interface Routes {
|
|
|
41232
41341
|
nest_device_id: string;
|
|
41233
41342
|
device_name: string;
|
|
41234
41343
|
custom_name: string;
|
|
41344
|
+
display_name?: string | undefined;
|
|
41235
41345
|
} | undefined;
|
|
41236
41346
|
ecobee_metadata?: {
|
|
41237
41347
|
ecobee_device_id: string;
|
|
@@ -41697,6 +41807,7 @@ interface Routes {
|
|
|
41697
41807
|
nest_device_id: string;
|
|
41698
41808
|
device_name: string;
|
|
41699
41809
|
custom_name: string;
|
|
41810
|
+
display_name?: string | undefined;
|
|
41700
41811
|
} | undefined;
|
|
41701
41812
|
ecobee_metadata?: {
|
|
41702
41813
|
ecobee_device_id: string;
|
|
@@ -42137,6 +42248,7 @@ interface Routes {
|
|
|
42137
42248
|
nest_device_id: string;
|
|
42138
42249
|
device_name: string;
|
|
42139
42250
|
custom_name: string;
|
|
42251
|
+
display_name?: string | undefined;
|
|
42140
42252
|
} | undefined;
|
|
42141
42253
|
ecobee_metadata?: {
|
|
42142
42254
|
ecobee_device_id: string;
|
|
@@ -43922,6 +44034,7 @@ interface Routes {
|
|
|
43922
44034
|
nest_device_id: string;
|
|
43923
44035
|
device_name: string;
|
|
43924
44036
|
custom_name: string;
|
|
44037
|
+
display_name?: string | undefined;
|
|
43925
44038
|
} | undefined;
|
|
43926
44039
|
ecobee_metadata?: {
|
|
43927
44040
|
ecobee_device_id: string;
|
|
@@ -44362,6 +44475,7 @@ interface Routes {
|
|
|
44362
44475
|
nest_device_id: string;
|
|
44363
44476
|
device_name: string;
|
|
44364
44477
|
custom_name: string;
|
|
44478
|
+
display_name?: string | undefined;
|
|
44365
44479
|
} | undefined;
|
|
44366
44480
|
ecobee_metadata?: {
|
|
44367
44481
|
ecobee_device_id: string;
|
|
@@ -48310,6 +48424,7 @@ interface Routes {
|
|
|
48310
48424
|
nest_device_id: string;
|
|
48311
48425
|
device_name: string;
|
|
48312
48426
|
custom_name: string;
|
|
48427
|
+
display_name?: string | undefined;
|
|
48313
48428
|
} | undefined;
|
|
48314
48429
|
ecobee_metadata?: {
|
|
48315
48430
|
ecobee_device_id: string;
|
|
@@ -50067,6 +50182,7 @@ interface Routes {
|
|
|
50067
50182
|
nest_device_id: string;
|
|
50068
50183
|
device_name: string;
|
|
50069
50184
|
custom_name: string;
|
|
50185
|
+
display_name?: string | undefined;
|
|
50070
50186
|
} | undefined;
|
|
50071
50187
|
ecobee_metadata?: {
|
|
50072
50188
|
ecobee_device_id: string;
|
|
@@ -50507,6 +50623,7 @@ interface Routes {
|
|
|
50507
50623
|
nest_device_id: string;
|
|
50508
50624
|
device_name: string;
|
|
50509
50625
|
custom_name: string;
|
|
50626
|
+
display_name?: string | undefined;
|
|
50510
50627
|
} | undefined;
|
|
50511
50628
|
ecobee_metadata?: {
|
|
50512
50629
|
ecobee_device_id: string;
|
|
@@ -52565,6 +52682,7 @@ interface Routes {
|
|
|
52565
52682
|
nest_device_id: string;
|
|
52566
52683
|
device_name: string;
|
|
52567
52684
|
custom_name: string;
|
|
52685
|
+
display_name?: string | undefined;
|
|
52568
52686
|
} | undefined;
|
|
52569
52687
|
ecobee_metadata?: {
|
|
52570
52688
|
ecobee_device_id: string;
|
|
@@ -53007,6 +53125,7 @@ interface Routes {
|
|
|
53007
53125
|
nest_device_id: string;
|
|
53008
53126
|
device_name: string;
|
|
53009
53127
|
custom_name: string;
|
|
53128
|
+
display_name?: string | undefined;
|
|
53010
53129
|
} | undefined;
|
|
53011
53130
|
ecobee_metadata?: {
|
|
53012
53131
|
ecobee_device_id: string;
|