@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
|
@@ -11538,9 +11538,11 @@ export type Routes = {
|
|
|
11538
11538
|
image_alt_text?: string | undefined
|
|
11539
11539
|
/** Serial number of the device. */
|
|
11540
11540
|
serial_number?: string | undefined
|
|
11541
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
11541
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
11542
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
11542
11543
|
online_access_codes_enabled?: boolean | undefined
|
|
11543
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
11544
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
11545
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
11544
11546
|
offline_access_codes_enabled?: boolean | undefined
|
|
11545
11547
|
/**
|
|
11546
11548
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -15279,9 +15281,11 @@ export type Routes = {
|
|
|
15279
15281
|
image_alt_text?: string | undefined
|
|
15280
15282
|
/** Serial number of the device. */
|
|
15281
15283
|
serial_number?: string | undefined
|
|
15282
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
15284
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
15285
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
15283
15286
|
online_access_codes_enabled?: boolean | undefined
|
|
15284
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
15287
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
15288
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
15285
15289
|
offline_access_codes_enabled?: boolean | undefined
|
|
15286
15290
|
/**
|
|
15287
15291
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -19771,9 +19775,11 @@ export type Routes = {
|
|
|
19771
19775
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
19772
19776
|
}
|
|
19773
19777
|
| undefined
|
|
19774
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
19778
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
19779
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
19775
19780
|
online_access_codes_enabled?: boolean | undefined
|
|
19776
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
19781
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
19782
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
19777
19783
|
offline_access_codes_enabled?: boolean | undefined
|
|
19778
19784
|
/** Device model-related properties. */
|
|
19779
19785
|
model: {
|
|
@@ -29214,6 +29220,8 @@ export type Routes = {
|
|
|
29214
29220
|
queryParams: {}
|
|
29215
29221
|
jsonBody: {}
|
|
29216
29222
|
commonParams: {
|
|
29223
|
+
/** Customer key for which you want to list entrances. */
|
|
29224
|
+
customer_key?: string | undefined
|
|
29217
29225
|
/** ID of the access system for which you want to retrieve all entrances. */
|
|
29218
29226
|
acs_system_id?: string | undefined
|
|
29219
29227
|
/** ID of the credential for which you want to retrieve all entrances. */
|
|
@@ -29745,6 +29753,8 @@ export type Routes = {
|
|
|
29745
29753
|
queryParams: {}
|
|
29746
29754
|
jsonBody: {}
|
|
29747
29755
|
commonParams: {
|
|
29756
|
+
/** Customer key for which you want to list access systems. */
|
|
29757
|
+
customer_key?: string | undefined
|
|
29748
29758
|
/** ID of the connected account by which you want to filter the list of access systems. */
|
|
29749
29759
|
connected_account_id?: string | undefined
|
|
29750
29760
|
}
|
|
@@ -36621,9 +36631,11 @@ export type Routes = {
|
|
|
36621
36631
|
image_alt_text?: string | undefined
|
|
36622
36632
|
/** Serial number of the device. */
|
|
36623
36633
|
serial_number?: string | undefined
|
|
36624
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
36634
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
36635
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
36625
36636
|
online_access_codes_enabled?: boolean | undefined
|
|
36626
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
36637
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
36638
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
36627
36639
|
offline_access_codes_enabled?: boolean | undefined
|
|
36628
36640
|
/**
|
|
36629
36641
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -38307,9 +38319,11 @@ export type Routes = {
|
|
|
38307
38319
|
image_alt_text?: string | undefined
|
|
38308
38320
|
/** Serial number of the device. */
|
|
38309
38321
|
serial_number?: string | undefined
|
|
38310
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
38322
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
38323
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
38311
38324
|
online_access_codes_enabled?: boolean | undefined
|
|
38312
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
38325
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
38326
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
38313
38327
|
offline_access_codes_enabled?: boolean | undefined
|
|
38314
38328
|
/**
|
|
38315
38329
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -40243,9 +40257,11 @@ export type Routes = {
|
|
|
40243
40257
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
40244
40258
|
}
|
|
40245
40259
|
| undefined
|
|
40246
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
40260
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
40261
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
40247
40262
|
online_access_codes_enabled?: boolean | undefined
|
|
40248
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
40263
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
40264
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
40249
40265
|
offline_access_codes_enabled?: boolean | undefined
|
|
40250
40266
|
/** Device model-related properties. */
|
|
40251
40267
|
model: {
|
|
@@ -40930,9 +40946,11 @@ export type Routes = {
|
|
|
40930
40946
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
40931
40947
|
}
|
|
40932
40948
|
| undefined
|
|
40933
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
40949
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
40950
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
40934
40951
|
online_access_codes_enabled?: boolean | undefined
|
|
40935
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
40952
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
40953
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
40936
40954
|
offline_access_codes_enabled?: boolean | undefined
|
|
40937
40955
|
/** Device model-related properties. */
|
|
40938
40956
|
model: {
|
|
@@ -45844,9 +45862,11 @@ export type Routes = {
|
|
|
45844
45862
|
image_alt_text?: string | undefined
|
|
45845
45863
|
/** Serial number of the device. */
|
|
45846
45864
|
serial_number?: string | undefined
|
|
45847
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
45865
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
45866
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
45848
45867
|
online_access_codes_enabled?: boolean | undefined
|
|
45849
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
45868
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
45869
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
45850
45870
|
offline_access_codes_enabled?: boolean | undefined
|
|
45851
45871
|
/**
|
|
45852
45872
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -47315,9 +47335,11 @@ export type Routes = {
|
|
|
47315
47335
|
image_alt_text?: string | undefined
|
|
47316
47336
|
/** Serial number of the device. */
|
|
47317
47337
|
serial_number?: string | undefined
|
|
47318
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
47338
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
47339
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
47319
47340
|
online_access_codes_enabled?: boolean | undefined
|
|
47320
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
47341
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
47342
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
47321
47343
|
offline_access_codes_enabled?: boolean | undefined
|
|
47322
47344
|
/**
|
|
47323
47345
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -48965,9 +48987,11 @@ export type Routes = {
|
|
|
48965
48987
|
image_alt_text?: string | undefined
|
|
48966
48988
|
/** Serial number of the device. */
|
|
48967
48989
|
serial_number?: string | undefined
|
|
48968
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
48990
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
48991
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
48969
48992
|
online_access_codes_enabled?: boolean | undefined
|
|
48970
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
48993
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
48994
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
48971
48995
|
offline_access_codes_enabled?: boolean | undefined
|
|
48972
48996
|
/**
|
|
48973
48997
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -50435,9 +50459,11 @@ export type Routes = {
|
|
|
50435
50459
|
image_alt_text?: string | undefined
|
|
50436
50460
|
/** Serial number of the device. */
|
|
50437
50461
|
serial_number?: string | undefined
|
|
50438
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
50462
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
50463
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
50439
50464
|
online_access_codes_enabled?: boolean | undefined
|
|
50440
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
50465
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
50466
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
50441
50467
|
offline_access_codes_enabled?: boolean | undefined
|
|
50442
50468
|
/**
|
|
50443
50469
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -57756,9 +57782,11 @@ export type Routes = {
|
|
|
57756
57782
|
image_alt_text?: string | undefined
|
|
57757
57783
|
/** Serial number of the device. */
|
|
57758
57784
|
serial_number?: string | undefined
|
|
57759
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
57785
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
57786
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
57760
57787
|
online_access_codes_enabled?: boolean | undefined
|
|
57761
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
57788
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
57789
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
57762
57790
|
offline_access_codes_enabled?: boolean | undefined
|
|
57763
57791
|
/**
|
|
57764
57792
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -59226,9 +59254,11 @@ export type Routes = {
|
|
|
59226
59254
|
image_alt_text?: string | undefined
|
|
59227
59255
|
/** Serial number of the device. */
|
|
59228
59256
|
serial_number?: string | undefined
|
|
59229
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
59257
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
59258
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
59230
59259
|
online_access_codes_enabled?: boolean | undefined
|
|
59231
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
59260
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
59261
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
59232
59262
|
offline_access_codes_enabled?: boolean | undefined
|
|
59233
59263
|
/**
|
|
59234
59264
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -69143,9 +69173,11 @@ export type Routes = {
|
|
|
69143
69173
|
image_alt_text?: string | undefined
|
|
69144
69174
|
/** Serial number of the device. */
|
|
69145
69175
|
serial_number?: string | undefined
|
|
69146
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
69176
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
69177
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
69147
69178
|
online_access_codes_enabled?: boolean | undefined
|
|
69148
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
69179
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
69180
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
69149
69181
|
offline_access_codes_enabled?: boolean | undefined
|
|
69150
69182
|
/**
|
|
69151
69183
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -75659,9 +75691,11 @@ export type Routes = {
|
|
|
75659
75691
|
image_alt_text?: string | undefined
|
|
75660
75692
|
/** Serial number of the device. */
|
|
75661
75693
|
serial_number?: string | undefined
|
|
75662
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
75694
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
75695
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
75663
75696
|
online_access_codes_enabled?: boolean | undefined
|
|
75664
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
75697
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
75698
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
75665
75699
|
offline_access_codes_enabled?: boolean | undefined
|
|
75666
75700
|
/**
|
|
75667
75701
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -80139,9 +80173,11 @@ export type Routes = {
|
|
|
80139
80173
|
image_alt_text?: string | undefined
|
|
80140
80174
|
/** Serial number of the device. */
|
|
80141
80175
|
serial_number?: string | undefined
|
|
80142
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
80176
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
80177
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
80143
80178
|
online_access_codes_enabled?: boolean | undefined
|
|
80144
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
80179
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
80180
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
80145
80181
|
offline_access_codes_enabled?: boolean | undefined
|
|
80146
80182
|
/**
|
|
80147
80183
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -81609,9 +81645,11 @@ export type Routes = {
|
|
|
81609
81645
|
image_alt_text?: string | undefined
|
|
81610
81646
|
/** Serial number of the device. */
|
|
81611
81647
|
serial_number?: string | undefined
|
|
81612
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
81648
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
81649
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
81613
81650
|
online_access_codes_enabled?: boolean | undefined
|
|
81614
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
81651
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
81652
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
81615
81653
|
offline_access_codes_enabled?: boolean | undefined
|
|
81616
81654
|
/**
|
|
81617
81655
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -89796,9 +89834,11 @@ export type Routes = {
|
|
|
89796
89834
|
image_alt_text?: string | undefined
|
|
89797
89835
|
/** Serial number of the device. */
|
|
89798
89836
|
serial_number?: string | undefined
|
|
89799
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
89837
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
89838
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
89800
89839
|
online_access_codes_enabled?: boolean | undefined
|
|
89801
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
89840
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
89841
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
89802
89842
|
offline_access_codes_enabled?: boolean | undefined
|
|
89803
89843
|
/**
|
|
89804
89844
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -91268,9 +91308,11 @@ export type Routes = {
|
|
|
91268
91308
|
image_alt_text?: string | undefined
|
|
91269
91309
|
/** Serial number of the device. */
|
|
91270
91310
|
serial_number?: string | undefined
|
|
91271
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
91311
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
91312
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
91272
91313
|
online_access_codes_enabled?: boolean | undefined
|
|
91273
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
91314
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
91315
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
91274
91316
|
offline_access_codes_enabled?: boolean | undefined
|
|
91275
91317
|
/**
|
|
91276
91318
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -93591,9 +93633,11 @@ export type Routes = {
|
|
|
93591
93633
|
image_alt_text?: string | undefined
|
|
93592
93634
|
/** Serial number of the device. */
|
|
93593
93635
|
serial_number?: string | undefined
|
|
93594
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
93636
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
93637
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
93595
93638
|
online_access_codes_enabled?: boolean | undefined
|
|
93596
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
93639
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
93640
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
93597
93641
|
offline_access_codes_enabled?: boolean | undefined
|
|
93598
93642
|
/**
|
|
93599
93643
|
* @deprecated use device.properties.model.can_connect_accessory_keypad*/
|
|
@@ -98083,9 +98127,11 @@ export type Routes = {
|
|
|
98083
98127
|
status: 'critical' | 'low' | 'good' | 'full'
|
|
98084
98128
|
}
|
|
98085
98129
|
| undefined
|
|
98086
|
-
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
98130
|
+
/** Indicates whether it is currently possible to use online access codes for the device.
|
|
98131
|
+
* @deprecated use device.can_program_online_access_codes*/
|
|
98087
98132
|
online_access_codes_enabled?: boolean | undefined
|
|
98088
|
-
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
98133
|
+
/** Indicates whether it is currently possible to use offline access codes for the device.
|
|
98134
|
+
* @deprecated use device.can_program_offline_access_codes*/
|
|
98089
98135
|
offline_access_codes_enabled?: boolean | undefined
|
|
98090
98136
|
/** Device model-related properties. */
|
|
98091
98137
|
model: {
|