@seamapi/types 1.758.0 → 1.760.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 +90 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +307 -0
- package/dist/index.cjs +90 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +12 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/openapi.d.ts +41 -0
- package/lib/seam/connect/openapi.js +78 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +153 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +90 -2
- package/src/lib/seam/connect/route-types.ts +173 -0
|
@@ -13467,6 +13467,14 @@ export type Routes = {
|
|
|
13467
13467
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13468
13468
|
warning_code: 'accessory_keypad_setup_required'
|
|
13469
13469
|
}
|
|
13470
|
+
| {
|
|
13471
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13472
|
+
message: string
|
|
13473
|
+
/** Date and time at which Seam created the warning. */
|
|
13474
|
+
created_at: string
|
|
13475
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13476
|
+
warning_code: 'unreliable_online_status'
|
|
13477
|
+
}
|
|
13470
13478
|
| {
|
|
13471
13479
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13472
13480
|
message: string
|
|
@@ -14984,6 +14992,10 @@ export type Routes = {
|
|
|
14984
14992
|
acs_entrance_id?: string | undefined
|
|
14985
14993
|
/** Filter unmanaged Access Grants by reservation_key. */
|
|
14986
14994
|
reservation_key?: string | undefined
|
|
14995
|
+
/** Numerical limit on the number of unmanaged access grants to return. */
|
|
14996
|
+
limit?: number
|
|
14997
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
14998
|
+
page_cursor?: (string | undefined) | null
|
|
14987
14999
|
}
|
|
14988
15000
|
formData: {}
|
|
14989
15001
|
jsonResponse: {
|
|
@@ -15146,6 +15158,15 @@ export type Routes = {
|
|
|
15146
15158
|
/** ID of user identity to which the Access Grant gives access. */
|
|
15147
15159
|
user_identity_id?: string | undefined
|
|
15148
15160
|
}[]
|
|
15161
|
+
/** Information about the current page of results. */
|
|
15162
|
+
pagination: {
|
|
15163
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
15164
|
+
next_page_cursor: string | null
|
|
15165
|
+
/** Indicates whether there is another page of results after this one. */
|
|
15166
|
+
has_next_page: boolean
|
|
15167
|
+
/** URL to get the next page of results. */
|
|
15168
|
+
next_page_url: string | null
|
|
15169
|
+
}
|
|
15149
15170
|
}
|
|
15150
15171
|
maxDuration: undefined
|
|
15151
15172
|
}
|
|
@@ -18462,6 +18483,14 @@ export type Routes = {
|
|
|
18462
18483
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18463
18484
|
warning_code: 'accessory_keypad_setup_required'
|
|
18464
18485
|
}
|
|
18486
|
+
| {
|
|
18487
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18488
|
+
message: string
|
|
18489
|
+
/** Date and time at which Seam created the warning. */
|
|
18490
|
+
created_at: string
|
|
18491
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18492
|
+
warning_code: 'unreliable_online_status'
|
|
18493
|
+
}
|
|
18465
18494
|
| {
|
|
18466
18495
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18467
18496
|
message: string
|
|
@@ -37304,6 +37333,14 @@ export type Routes = {
|
|
|
37304
37333
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37305
37334
|
warning_code: 'accessory_keypad_setup_required'
|
|
37306
37335
|
}
|
|
37336
|
+
| {
|
|
37337
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37338
|
+
message: string
|
|
37339
|
+
/** Date and time at which Seam created the warning. */
|
|
37340
|
+
created_at: string
|
|
37341
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
37342
|
+
warning_code: 'unreliable_online_status'
|
|
37343
|
+
}
|
|
37307
37344
|
| {
|
|
37308
37345
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
37309
37346
|
message: string
|
|
@@ -39161,6 +39198,14 @@ export type Routes = {
|
|
|
39161
39198
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39162
39199
|
warning_code: 'accessory_keypad_setup_required'
|
|
39163
39200
|
}
|
|
39201
|
+
| {
|
|
39202
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39203
|
+
message: string
|
|
39204
|
+
/** Date and time at which Seam created the warning. */
|
|
39205
|
+
created_at: string
|
|
39206
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
39207
|
+
warning_code: 'unreliable_online_status'
|
|
39208
|
+
}
|
|
39164
39209
|
| {
|
|
39165
39210
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
39166
39211
|
message: string
|
|
@@ -40291,6 +40336,14 @@ export type Routes = {
|
|
|
40291
40336
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40292
40337
|
warning_code: 'accessory_keypad_setup_required'
|
|
40293
40338
|
}
|
|
40339
|
+
| {
|
|
40340
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40341
|
+
message: string
|
|
40342
|
+
/** Date and time at which Seam created the warning. */
|
|
40343
|
+
created_at: string
|
|
40344
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
40345
|
+
warning_code: 'unreliable_online_status'
|
|
40346
|
+
}
|
|
40294
40347
|
| {
|
|
40295
40348
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
40296
40349
|
message: string
|
|
@@ -41038,6 +41091,14 @@ export type Routes = {
|
|
|
41038
41091
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41039
41092
|
warning_code: 'accessory_keypad_setup_required'
|
|
41040
41093
|
}
|
|
41094
|
+
| {
|
|
41095
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41096
|
+
message: string
|
|
41097
|
+
/** Date and time at which Seam created the warning. */
|
|
41098
|
+
created_at: string
|
|
41099
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
41100
|
+
warning_code: 'unreliable_online_status'
|
|
41101
|
+
}
|
|
41041
41102
|
| {
|
|
41042
41103
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
41043
41104
|
message: string
|
|
@@ -49427,6 +49488,14 @@ export type Routes = {
|
|
|
49427
49488
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49428
49489
|
warning_code: 'accessory_keypad_setup_required'
|
|
49429
49490
|
}
|
|
49491
|
+
| {
|
|
49492
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49493
|
+
message: string
|
|
49494
|
+
/** Date and time at which Seam created the warning. */
|
|
49495
|
+
created_at: string
|
|
49496
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49497
|
+
warning_code: 'unreliable_online_status'
|
|
49498
|
+
}
|
|
49430
49499
|
| {
|
|
49431
49500
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49432
49501
|
message: string
|
|
@@ -51055,6 +51124,14 @@ export type Routes = {
|
|
|
51055
51124
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51056
51125
|
warning_code: 'accessory_keypad_setup_required'
|
|
51057
51126
|
}
|
|
51127
|
+
| {
|
|
51128
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51129
|
+
message: string
|
|
51130
|
+
/** Date and time at which Seam created the warning. */
|
|
51131
|
+
created_at: string
|
|
51132
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51133
|
+
warning_code: 'unreliable_online_status'
|
|
51134
|
+
}
|
|
51058
51135
|
| {
|
|
51059
51136
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51060
51137
|
message: string
|
|
@@ -52871,6 +52948,14 @@ export type Routes = {
|
|
|
52871
52948
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52872
52949
|
warning_code: 'accessory_keypad_setup_required'
|
|
52873
52950
|
}
|
|
52951
|
+
| {
|
|
52952
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52953
|
+
message: string
|
|
52954
|
+
/** Date and time at which Seam created the warning. */
|
|
52955
|
+
created_at: string
|
|
52956
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52957
|
+
warning_code: 'unreliable_online_status'
|
|
52958
|
+
}
|
|
52874
52959
|
| {
|
|
52875
52960
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52876
52961
|
message: string
|
|
@@ -54498,6 +54583,14 @@ export type Routes = {
|
|
|
54498
54583
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54499
54584
|
warning_code: 'accessory_keypad_setup_required'
|
|
54500
54585
|
}
|
|
54586
|
+
| {
|
|
54587
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54588
|
+
message: string
|
|
54589
|
+
/** Date and time at which Seam created the warning. */
|
|
54590
|
+
created_at: string
|
|
54591
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54592
|
+
warning_code: 'unreliable_online_status'
|
|
54593
|
+
}
|
|
54501
54594
|
| {
|
|
54502
54595
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54503
54596
|
message: string
|
|
@@ -62140,6 +62233,14 @@ export type Routes = {
|
|
|
62140
62233
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62141
62234
|
warning_code: 'accessory_keypad_setup_required'
|
|
62142
62235
|
}
|
|
62236
|
+
| {
|
|
62237
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62238
|
+
message: string
|
|
62239
|
+
/** Date and time at which Seam created the warning. */
|
|
62240
|
+
created_at: string
|
|
62241
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
62242
|
+
warning_code: 'unreliable_online_status'
|
|
62243
|
+
}
|
|
62143
62244
|
| {
|
|
62144
62245
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
62145
62246
|
message: string
|
|
@@ -63767,6 +63868,14 @@ export type Routes = {
|
|
|
63767
63868
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63768
63869
|
warning_code: 'accessory_keypad_setup_required'
|
|
63769
63870
|
}
|
|
63871
|
+
| {
|
|
63872
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63873
|
+
message: string
|
|
63874
|
+
/** Date and time at which Seam created the warning. */
|
|
63875
|
+
created_at: string
|
|
63876
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
63877
|
+
warning_code: 'unreliable_online_status'
|
|
63878
|
+
}
|
|
63770
63879
|
| {
|
|
63771
63880
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
63772
63881
|
message: string
|
|
@@ -78458,6 +78567,14 @@ export type Routes = {
|
|
|
78458
78567
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78459
78568
|
warning_code: 'accessory_keypad_setup_required'
|
|
78460
78569
|
}
|
|
78570
|
+
| {
|
|
78571
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
78572
|
+
message: string
|
|
78573
|
+
/** Date and time at which Seam created the warning. */
|
|
78574
|
+
created_at: string
|
|
78575
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
78576
|
+
warning_code: 'unreliable_online_status'
|
|
78577
|
+
}
|
|
78461
78578
|
| {
|
|
78462
78579
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
78463
78580
|
message: string
|
|
@@ -85416,6 +85533,14 @@ export type Routes = {
|
|
|
85416
85533
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85417
85534
|
warning_code: 'accessory_keypad_setup_required'
|
|
85418
85535
|
}
|
|
85536
|
+
| {
|
|
85537
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85538
|
+
message: string
|
|
85539
|
+
/** Date and time at which Seam created the warning. */
|
|
85540
|
+
created_at: string
|
|
85541
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85542
|
+
warning_code: 'unreliable_online_status'
|
|
85543
|
+
}
|
|
85419
85544
|
| {
|
|
85420
85545
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85421
85546
|
message: string
|
|
@@ -90139,6 +90264,14 @@ export type Routes = {
|
|
|
90139
90264
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90140
90265
|
warning_code: 'accessory_keypad_setup_required'
|
|
90141
90266
|
}
|
|
90267
|
+
| {
|
|
90268
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90269
|
+
message: string
|
|
90270
|
+
/** Date and time at which Seam created the warning. */
|
|
90271
|
+
created_at: string
|
|
90272
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
90273
|
+
warning_code: 'unreliable_online_status'
|
|
90274
|
+
}
|
|
90142
90275
|
| {
|
|
90143
90276
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
90144
90277
|
message: string
|
|
@@ -91766,6 +91899,14 @@ export type Routes = {
|
|
|
91766
91899
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91767
91900
|
warning_code: 'accessory_keypad_setup_required'
|
|
91768
91901
|
}
|
|
91902
|
+
| {
|
|
91903
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91904
|
+
message: string
|
|
91905
|
+
/** Date and time at which Seam created the warning. */
|
|
91906
|
+
created_at: string
|
|
91907
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91908
|
+
warning_code: 'unreliable_online_status'
|
|
91909
|
+
}
|
|
91769
91910
|
| {
|
|
91770
91911
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91771
91912
|
message: string
|
|
@@ -100287,6 +100428,14 @@ export type Routes = {
|
|
|
100287
100428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100288
100429
|
warning_code: 'accessory_keypad_setup_required'
|
|
100289
100430
|
}
|
|
100431
|
+
| {
|
|
100432
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100433
|
+
message: string
|
|
100434
|
+
/** Date and time at which Seam created the warning. */
|
|
100435
|
+
created_at: string
|
|
100436
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100437
|
+
warning_code: 'unreliable_online_status'
|
|
100438
|
+
}
|
|
100290
100439
|
| {
|
|
100291
100440
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100292
100441
|
message: string
|
|
@@ -101916,6 +102065,14 @@ export type Routes = {
|
|
|
101916
102065
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101917
102066
|
warning_code: 'accessory_keypad_setup_required'
|
|
101918
102067
|
}
|
|
102068
|
+
| {
|
|
102069
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
102070
|
+
message: string
|
|
102071
|
+
/** Date and time at which Seam created the warning. */
|
|
102072
|
+
created_at: string
|
|
102073
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
102074
|
+
warning_code: 'unreliable_online_status'
|
|
102075
|
+
}
|
|
101919
102076
|
| {
|
|
101920
102077
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101921
102078
|
message: string
|
|
@@ -104658,6 +104815,14 @@ export type Routes = {
|
|
|
104658
104815
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104659
104816
|
warning_code: 'accessory_keypad_setup_required'
|
|
104660
104817
|
}
|
|
104818
|
+
| {
|
|
104819
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
104820
|
+
message: string
|
|
104821
|
+
/** Date and time at which Seam created the warning. */
|
|
104822
|
+
created_at: string
|
|
104823
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104824
|
+
warning_code: 'unreliable_online_status'
|
|
104825
|
+
}
|
|
104661
104826
|
| {
|
|
104662
104827
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
104663
104828
|
message: string
|
|
@@ -107936,6 +108101,14 @@ export type Routes = {
|
|
|
107936
108101
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107937
108102
|
warning_code: 'accessory_keypad_setup_required'
|
|
107938
108103
|
}
|
|
108104
|
+
| {
|
|
108105
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108106
|
+
message: string
|
|
108107
|
+
/** Date and time at which Seam created the warning. */
|
|
108108
|
+
created_at: string
|
|
108109
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108110
|
+
warning_code: 'unreliable_online_status'
|
|
108111
|
+
}
|
|
107939
108112
|
| {
|
|
107940
108113
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107941
108114
|
message: string
|