@seamapi/types 1.507.0 → 1.509.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 +34 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +130 -44
- package/dist/index.cjs +34 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device.js +2 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +42 -2
- package/lib/seam/connect/openapi.js +32 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +88 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +37 -0
- package/src/lib/seam/connect/route-types.ts +88 -42
|
@@ -10237,9 +10237,11 @@ export type Routes = {
|
|
|
10237
10237
|
image_alt_text?: string | undefined;
|
|
10238
10238
|
/** Serial number of the device. */
|
|
10239
10239
|
serial_number?: string | undefined;
|
|
10240
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
10240
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
10241
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
10241
10242
|
online_access_codes_enabled?: boolean | undefined;
|
|
10242
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
10243
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
10244
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
10243
10245
|
offline_access_codes_enabled?: boolean | undefined;
|
|
10244
10246
|
/**
|
|
10245
10247
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -13347,9 +13349,11 @@ export type Routes = {
|
|
|
13347
13349
|
image_alt_text?: string | undefined;
|
|
13348
13350
|
/** Serial number of the device. */
|
|
13349
13351
|
serial_number?: string | undefined;
|
|
13350
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
13352
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
13353
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
13351
13354
|
online_access_codes_enabled?: boolean | undefined;
|
|
13352
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
13355
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
13356
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
13353
13357
|
offline_access_codes_enabled?: boolean | undefined;
|
|
13354
13358
|
/**
|
|
13355
13359
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -17028,9 +17032,11 @@ export type Routes = {
|
|
|
17028
17032
|
*/
|
|
17029
17033
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
17030
17034
|
} | undefined;
|
|
17031
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
17035
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
17036
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
17032
17037
|
online_access_codes_enabled?: boolean | undefined;
|
|
17033
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
17038
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
17039
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
17034
17040
|
offline_access_codes_enabled?: boolean | undefined;
|
|
17035
17041
|
/** Device model-related properties. */
|
|
17036
17042
|
model: {
|
|
@@ -25201,6 +25207,8 @@ export type Routes = {
|
|
|
25201
25207
|
queryParams: {};
|
|
25202
25208
|
jsonBody: {};
|
|
25203
25209
|
commonParams: {
|
|
25210
|
+
/** Customer key for which you want to list entrances. */
|
|
25211
|
+
customer_key?: string | undefined;
|
|
25204
25212
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
25205
25213
|
acs_system_id?: string | undefined;
|
|
25206
25214
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -25634,6 +25642,8 @@ export type Routes = {
|
|
|
25634
25642
|
queryParams: {};
|
|
25635
25643
|
jsonBody: {};
|
|
25636
25644
|
commonParams: {
|
|
25645
|
+
/** Customer key for which you want to list access systems. */
|
|
25646
|
+
customer_key?: string | undefined;
|
|
25637
25647
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
25638
25648
|
connected_account_id?: string | undefined;
|
|
25639
25649
|
};
|
|
@@ -31597,9 +31607,11 @@ export type Routes = {
|
|
|
31597
31607
|
image_alt_text?: string | undefined;
|
|
31598
31608
|
/** Serial number of the device. */
|
|
31599
31609
|
serial_number?: string | undefined;
|
|
31600
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
31610
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
31611
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
31601
31612
|
online_access_codes_enabled?: boolean | undefined;
|
|
31602
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
31613
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
31614
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
31603
31615
|
offline_access_codes_enabled?: boolean | undefined;
|
|
31604
31616
|
/**
|
|
31605
31617
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -32815,9 +32827,11 @@ export type Routes = {
|
|
|
32815
32827
|
image_alt_text?: string | undefined;
|
|
32816
32828
|
/** Serial number of the device. */
|
|
32817
32829
|
serial_number?: string | undefined;
|
|
32818
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
32830
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
32831
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
32819
32832
|
online_access_codes_enabled?: boolean | undefined;
|
|
32820
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
32833
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
32834
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
32821
32835
|
offline_access_codes_enabled?: boolean | undefined;
|
|
32822
32836
|
/**
|
|
32823
32837
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -34351,9 +34365,11 @@ export type Routes = {
|
|
|
34351
34365
|
*/
|
|
34352
34366
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
34353
34367
|
} | undefined;
|
|
34354
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
34368
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
34369
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
34355
34370
|
online_access_codes_enabled?: boolean | undefined;
|
|
34356
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
34371
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
34372
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
34357
34373
|
offline_access_codes_enabled?: boolean | undefined;
|
|
34358
34374
|
/** Device model-related properties. */
|
|
34359
34375
|
model: {
|
|
@@ -34786,9 +34802,11 @@ export type Routes = {
|
|
|
34786
34802
|
*/
|
|
34787
34803
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
34788
34804
|
} | undefined;
|
|
34789
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
34805
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
34806
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
34790
34807
|
online_access_codes_enabled?: boolean | undefined;
|
|
34791
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
34808
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
34809
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
34792
34810
|
offline_access_codes_enabled?: boolean | undefined;
|
|
34793
34811
|
/** Device model-related properties. */
|
|
34794
34812
|
model: {
|
|
@@ -38793,9 +38811,11 @@ export type Routes = {
|
|
|
38793
38811
|
image_alt_text?: string | undefined;
|
|
38794
38812
|
/** Serial number of the device. */
|
|
38795
38813
|
serial_number?: string | undefined;
|
|
38796
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
38814
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
38815
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
38797
38816
|
online_access_codes_enabled?: boolean | undefined;
|
|
38798
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
38817
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
38818
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
38799
38819
|
offline_access_codes_enabled?: boolean | undefined;
|
|
38800
38820
|
/**
|
|
38801
38821
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -39961,9 +39981,11 @@ export type Routes = {
|
|
|
39961
39981
|
image_alt_text?: string | undefined;
|
|
39962
39982
|
/** Serial number of the device. */
|
|
39963
39983
|
serial_number?: string | undefined;
|
|
39964
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
39984
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
39985
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
39965
39986
|
online_access_codes_enabled?: boolean | undefined;
|
|
39966
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
39987
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
39988
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
39967
39989
|
offline_access_codes_enabled?: boolean | undefined;
|
|
39968
39990
|
/**
|
|
39969
39991
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -41179,9 +41201,11 @@ export type Routes = {
|
|
|
41179
41201
|
image_alt_text?: string | undefined;
|
|
41180
41202
|
/** Serial number of the device. */
|
|
41181
41203
|
serial_number?: string | undefined;
|
|
41182
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
41204
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
41205
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
41183
41206
|
online_access_codes_enabled?: boolean | undefined;
|
|
41184
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
41207
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
41208
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
41185
41209
|
offline_access_codes_enabled?: boolean | undefined;
|
|
41186
41210
|
/**
|
|
41187
41211
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -42346,9 +42370,11 @@ export type Routes = {
|
|
|
42346
42370
|
image_alt_text?: string | undefined;
|
|
42347
42371
|
/** Serial number of the device. */
|
|
42348
42372
|
serial_number?: string | undefined;
|
|
42349
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
42373
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
42374
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
42350
42375
|
online_access_codes_enabled?: boolean | undefined;
|
|
42351
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
42376
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
42377
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
42352
42378
|
offline_access_codes_enabled?: boolean | undefined;
|
|
42353
42379
|
/**
|
|
42354
42380
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -48602,9 +48628,11 @@ export type Routes = {
|
|
|
48602
48628
|
image_alt_text?: string | undefined;
|
|
48603
48629
|
/** Serial number of the device. */
|
|
48604
48630
|
serial_number?: string | undefined;
|
|
48605
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
48631
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
48632
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
48606
48633
|
online_access_codes_enabled?: boolean | undefined;
|
|
48607
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
48634
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
48635
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
48608
48636
|
offline_access_codes_enabled?: boolean | undefined;
|
|
48609
48637
|
/**
|
|
48610
48638
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -49769,9 +49797,11 @@ export type Routes = {
|
|
|
49769
49797
|
image_alt_text?: string | undefined;
|
|
49770
49798
|
/** Serial number of the device. */
|
|
49771
49799
|
serial_number?: string | undefined;
|
|
49772
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
49800
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
49801
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
49773
49802
|
online_access_codes_enabled?: boolean | undefined;
|
|
49774
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
49803
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
49804
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
49775
49805
|
offline_access_codes_enabled?: boolean | undefined;
|
|
49776
49806
|
/**
|
|
49777
49807
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -58132,9 +58162,11 @@ export type Routes = {
|
|
|
58132
58162
|
image_alt_text?: string | undefined;
|
|
58133
58163
|
/** Serial number of the device. */
|
|
58134
58164
|
serial_number?: string | undefined;
|
|
58135
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
58165
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
58166
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
58136
58167
|
online_access_codes_enabled?: boolean | undefined;
|
|
58137
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
58168
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
58169
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
58138
58170
|
offline_access_codes_enabled?: boolean | undefined;
|
|
58139
58171
|
/**
|
|
58140
58172
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -63680,9 +63712,11 @@ export type Routes = {
|
|
|
63680
63712
|
image_alt_text?: string | undefined;
|
|
63681
63713
|
/** Serial number of the device. */
|
|
63682
63714
|
serial_number?: string | undefined;
|
|
63683
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
63715
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
63716
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
63684
63717
|
online_access_codes_enabled?: boolean | undefined;
|
|
63685
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
63718
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
63719
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
63686
63720
|
offline_access_codes_enabled?: boolean | undefined;
|
|
63687
63721
|
/**
|
|
63688
63722
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -67430,9 +67464,11 @@ export type Routes = {
|
|
|
67430
67464
|
image_alt_text?: string | undefined;
|
|
67431
67465
|
/** Serial number of the device. */
|
|
67432
67466
|
serial_number?: string | undefined;
|
|
67433
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
67467
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
67468
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
67434
67469
|
online_access_codes_enabled?: boolean | undefined;
|
|
67435
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
67470
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
67471
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
67436
67472
|
offline_access_codes_enabled?: boolean | undefined;
|
|
67437
67473
|
/**
|
|
67438
67474
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -68597,9 +68633,11 @@ export type Routes = {
|
|
|
68597
68633
|
image_alt_text?: string | undefined;
|
|
68598
68634
|
/** Serial number of the device. */
|
|
68599
68635
|
serial_number?: string | undefined;
|
|
68600
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
68636
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
68637
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
68601
68638
|
online_access_codes_enabled?: boolean | undefined;
|
|
68602
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
68639
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
68640
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
68603
68641
|
offline_access_codes_enabled?: boolean | undefined;
|
|
68604
68642
|
/**
|
|
68605
68643
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -75705,9 +75743,11 @@ export type Routes = {
|
|
|
75705
75743
|
image_alt_text?: string | undefined;
|
|
75706
75744
|
/** Serial number of the device. */
|
|
75707
75745
|
serial_number?: string | undefined;
|
|
75708
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
75746
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
75747
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
75709
75748
|
online_access_codes_enabled?: boolean | undefined;
|
|
75710
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
75749
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
75750
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
75711
75751
|
offline_access_codes_enabled?: boolean | undefined;
|
|
75712
75752
|
/**
|
|
75713
75753
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -76874,9 +76914,11 @@ export type Routes = {
|
|
|
76874
76914
|
image_alt_text?: string | undefined;
|
|
76875
76915
|
/** Serial number of the device. */
|
|
76876
76916
|
serial_number?: string | undefined;
|
|
76877
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
76917
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
76918
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
76878
76919
|
online_access_codes_enabled?: boolean | undefined;
|
|
76879
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
76920
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
76921
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
76880
76922
|
offline_access_codes_enabled?: boolean | undefined;
|
|
76881
76923
|
/**
|
|
76882
76924
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -78802,9 +78844,11 @@ export type Routes = {
|
|
|
78802
78844
|
image_alt_text?: string | undefined;
|
|
78803
78845
|
/** Serial number of the device. */
|
|
78804
78846
|
serial_number?: string | undefined;
|
|
78805
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
78847
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
78848
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
78806
78849
|
online_access_codes_enabled?: boolean | undefined;
|
|
78807
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
78850
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
78851
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
78808
78852
|
offline_access_codes_enabled?: boolean | undefined;
|
|
78809
78853
|
/**
|
|
78810
78854
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -82483,9 +82527,11 @@ export type Routes = {
|
|
|
82483
82527
|
*/
|
|
82484
82528
|
status: 'critical' | 'low' | 'good' | 'full';
|
|
82485
82529
|
} | undefined;
|
|
82486
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
82530
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
82531
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
82487
82532
|
online_access_codes_enabled?: boolean | undefined;
|
|
82488
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
82533
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
82534
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
82489
82535
|
offline_access_codes_enabled?: boolean | undefined;
|
|
82490
82536
|
/** Device model-related properties. */
|
|
82491
82537
|
model: {
|
package/package.json
CHANGED
|
@@ -608,6 +608,7 @@ export const common_device_properties = z.object({
|
|
|
608
608
|
`
|
|
609
609
|
---
|
|
610
610
|
property_group_key: access_codes
|
|
611
|
+
deprecated: use device.can_program_online_access_codes
|
|
611
612
|
---
|
|
612
613
|
Indicates whether it is currently possible to use online access codes for the device.
|
|
613
614
|
`,
|
|
@@ -619,6 +620,7 @@ export const common_device_properties = z.object({
|
|
|
619
620
|
`
|
|
620
621
|
---
|
|
621
622
|
property_group_key: access_codes
|
|
623
|
+
deprecated: use device.can_program_offline_access_codes
|
|
622
624
|
---
|
|
623
625
|
Indicates whether it is currently possible to use offline access codes for the device.
|
|
624
626
|
`,
|
|
@@ -10162,9 +10162,12 @@ export default {
|
|
|
10162
10162
|
'x-property-group-key': 'noise_sensors',
|
|
10163
10163
|
},
|
|
10164
10164
|
offline_access_codes_enabled: {
|
|
10165
|
+
deprecated: true,
|
|
10165
10166
|
description:
|
|
10166
10167
|
'Indicates whether it is currently possible to use offline access codes for the device.',
|
|
10167
10168
|
type: 'boolean',
|
|
10169
|
+
'x-deprecated':
|
|
10170
|
+
'use device.can_program_offline_access_codes',
|
|
10168
10171
|
'x-property-group-key': 'access_codes',
|
|
10169
10172
|
},
|
|
10170
10173
|
online: {
|
|
@@ -10173,9 +10176,12 @@ export default {
|
|
|
10173
10176
|
type: 'boolean',
|
|
10174
10177
|
},
|
|
10175
10178
|
online_access_codes_enabled: {
|
|
10179
|
+
deprecated: true,
|
|
10176
10180
|
description:
|
|
10177
10181
|
'Indicates whether it is currently possible to use online access codes for the device.',
|
|
10178
10182
|
type: 'boolean',
|
|
10183
|
+
'x-deprecated':
|
|
10184
|
+
'use device.can_program_online_access_codes',
|
|
10179
10185
|
'x-property-group-key': 'access_codes',
|
|
10180
10186
|
},
|
|
10181
10187
|
serial_number: {
|
|
@@ -24411,9 +24417,11 @@ export default {
|
|
|
24411
24417
|
'x-deprecated': 'use device.display_name instead',
|
|
24412
24418
|
},
|
|
24413
24419
|
offline_access_codes_enabled: {
|
|
24420
|
+
deprecated: true,
|
|
24414
24421
|
description:
|
|
24415
24422
|
'Indicates whether it is currently possible to use offline access codes for the device.',
|
|
24416
24423
|
type: 'boolean',
|
|
24424
|
+
'x-deprecated': 'use device.can_program_offline_access_codes',
|
|
24417
24425
|
'x-property-group-key': 'access_codes',
|
|
24418
24426
|
},
|
|
24419
24427
|
online: {
|
|
@@ -24421,9 +24429,11 @@ export default {
|
|
|
24421
24429
|
type: 'boolean',
|
|
24422
24430
|
},
|
|
24423
24431
|
online_access_codes_enabled: {
|
|
24432
|
+
deprecated: true,
|
|
24424
24433
|
description:
|
|
24425
24434
|
'Indicates whether it is currently possible to use online access codes for the device.',
|
|
24426
24435
|
type: 'boolean',
|
|
24436
|
+
'x-deprecated': 'use device.can_program_online_access_codes',
|
|
24427
24437
|
'x-property-group-key': 'access_codes',
|
|
24428
24438
|
},
|
|
24429
24439
|
},
|
|
@@ -33178,6 +33188,14 @@ export default {
|
|
|
33178
33188
|
'Returns a list of all [access system entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
33179
33189
|
operationId: 'acsEntrancesListGet',
|
|
33180
33190
|
parameters: [
|
|
33191
|
+
{
|
|
33192
|
+
in: 'query',
|
|
33193
|
+
name: 'customer_key',
|
|
33194
|
+
schema: {
|
|
33195
|
+
description: 'Customer key for which you want to list entrances.',
|
|
33196
|
+
type: 'string',
|
|
33197
|
+
},
|
|
33198
|
+
},
|
|
33181
33199
|
{
|
|
33182
33200
|
in: 'query',
|
|
33183
33201
|
name: 'acs_system_id',
|
|
@@ -33374,6 +33392,11 @@ export default {
|
|
|
33374
33392
|
format: 'uuid',
|
|
33375
33393
|
type: 'string',
|
|
33376
33394
|
},
|
|
33395
|
+
customer_key: {
|
|
33396
|
+
description:
|
|
33397
|
+
'Customer key for which you want to list entrances.',
|
|
33398
|
+
type: 'string',
|
|
33399
|
+
},
|
|
33377
33400
|
limit: {
|
|
33378
33401
|
default: 900,
|
|
33379
33402
|
description:
|
|
@@ -33695,6 +33718,15 @@ export default {
|
|
|
33695
33718
|
'Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access systems by a specific connected account ID, include the `connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the response includes all access systems connected to your workspace.',
|
|
33696
33719
|
operationId: 'acsSystemsListGet',
|
|
33697
33720
|
parameters: [
|
|
33721
|
+
{
|
|
33722
|
+
in: 'query',
|
|
33723
|
+
name: 'customer_key',
|
|
33724
|
+
schema: {
|
|
33725
|
+
description:
|
|
33726
|
+
'Customer key for which you want to list access systems.',
|
|
33727
|
+
type: 'string',
|
|
33728
|
+
},
|
|
33729
|
+
},
|
|
33698
33730
|
{
|
|
33699
33731
|
in: 'query',
|
|
33700
33732
|
name: 'connected_account_id',
|
|
@@ -33757,6 +33789,11 @@ export default {
|
|
|
33757
33789
|
format: 'uuid',
|
|
33758
33790
|
type: 'string',
|
|
33759
33791
|
},
|
|
33792
|
+
customer_key: {
|
|
33793
|
+
description:
|
|
33794
|
+
'Customer key for which you want to list access systems.',
|
|
33795
|
+
type: 'string',
|
|
33796
|
+
},
|
|
33760
33797
|
},
|
|
33761
33798
|
type: 'object',
|
|
33762
33799
|
},
|