@seamapi/types 1.872.0 → 1.873.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 +66 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +157 -0
- package/dist/index.cjs +66 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +48 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +13 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +34 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +98 -0
- package/lib/seam/connect/openapi.js +54 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +64 -0
- package/src/lib/seam/connect/route-types.ts +110 -0
|
@@ -15971,6 +15971,14 @@ export type Routes = {
|
|
|
15971
15971
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15972
15972
|
warning_code: 'entrance_setup_required'
|
|
15973
15973
|
}
|
|
15974
|
+
| {
|
|
15975
|
+
/** Date and time at which Seam created the warning. */
|
|
15976
|
+
created_at: string
|
|
15977
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15978
|
+
message: string
|
|
15979
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15980
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
15981
|
+
}
|
|
15974
15982
|
)[]
|
|
15975
15983
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
15976
15984
|
latch_metadata?:
|
|
@@ -16123,6 +16131,8 @@ export type Routes = {
|
|
|
16123
16131
|
entry_relays_total_count: number
|
|
16124
16132
|
}
|
|
16125
16133
|
| undefined
|
|
16134
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
16135
|
+
is_locked?: boolean | undefined
|
|
16126
16136
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
16127
16137
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
16128
16138
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -21529,6 +21539,14 @@ export type Routes = {
|
|
|
21529
21539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21530
21540
|
warning_code: 'entrance_setup_required'
|
|
21531
21541
|
}
|
|
21542
|
+
| {
|
|
21543
|
+
/** Date and time at which Seam created the warning. */
|
|
21544
|
+
created_at: string
|
|
21545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21546
|
+
message: string
|
|
21547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21548
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
21549
|
+
}
|
|
21532
21550
|
)[]
|
|
21533
21551
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21534
21552
|
latch_metadata?:
|
|
@@ -21681,6 +21699,8 @@ export type Routes = {
|
|
|
21681
21699
|
entry_relays_total_count: number
|
|
21682
21700
|
}
|
|
21683
21701
|
| undefined
|
|
21702
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
21703
|
+
is_locked?: boolean | undefined
|
|
21684
21704
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
21685
21705
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
21686
21706
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -23152,6 +23172,14 @@ export type Routes = {
|
|
|
23152
23172
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23153
23173
|
warning_code: 'entrance_setup_required'
|
|
23154
23174
|
}
|
|
23175
|
+
| {
|
|
23176
|
+
/** Date and time at which Seam created the warning. */
|
|
23177
|
+
created_at: string
|
|
23178
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23179
|
+
message: string
|
|
23180
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23181
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
23182
|
+
}
|
|
23155
23183
|
)[]
|
|
23156
23184
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23157
23185
|
latch_metadata?:
|
|
@@ -23301,6 +23329,8 @@ export type Routes = {
|
|
|
23301
23329
|
entry_relays_total_count: number
|
|
23302
23330
|
}
|
|
23303
23331
|
| undefined
|
|
23332
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
23333
|
+
is_locked?: boolean | undefined
|
|
23304
23334
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
23305
23335
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
23306
23336
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -25187,6 +25217,14 @@ export type Routes = {
|
|
|
25187
25217
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25188
25218
|
warning_code: 'entrance_setup_required'
|
|
25189
25219
|
}
|
|
25220
|
+
| {
|
|
25221
|
+
/** Date and time at which Seam created the warning. */
|
|
25222
|
+
created_at: string
|
|
25223
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
25224
|
+
message: string
|
|
25225
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
25226
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
25227
|
+
}
|
|
25190
25228
|
)[]
|
|
25191
25229
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
25192
25230
|
latch_metadata?:
|
|
@@ -25336,6 +25374,8 @@ export type Routes = {
|
|
|
25336
25374
|
entry_relays_total_count: number
|
|
25337
25375
|
}
|
|
25338
25376
|
| undefined
|
|
25377
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
25378
|
+
is_locked?: boolean | undefined
|
|
25339
25379
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
25340
25380
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
25341
25381
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -31672,6 +31712,14 @@ export type Routes = {
|
|
|
31672
31712
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31673
31713
|
warning_code: 'entrance_setup_required'
|
|
31674
31714
|
}
|
|
31715
|
+
| {
|
|
31716
|
+
/** Date and time at which Seam created the warning. */
|
|
31717
|
+
created_at: string
|
|
31718
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31719
|
+
message: string
|
|
31720
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31721
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
31722
|
+
}
|
|
31675
31723
|
)[]
|
|
31676
31724
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31677
31725
|
latch_metadata?:
|
|
@@ -31821,6 +31869,8 @@ export type Routes = {
|
|
|
31821
31869
|
entry_relays_total_count: number
|
|
31822
31870
|
}
|
|
31823
31871
|
| undefined
|
|
31872
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
31873
|
+
is_locked?: boolean | undefined
|
|
31824
31874
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
31825
31875
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
31826
31876
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -31928,6 +31978,14 @@ export type Routes = {
|
|
|
31928
31978
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31929
31979
|
warning_code: 'entrance_setup_required'
|
|
31930
31980
|
}
|
|
31981
|
+
| {
|
|
31982
|
+
/** Date and time at which Seam created the warning. */
|
|
31983
|
+
created_at: string
|
|
31984
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31985
|
+
message: string
|
|
31986
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31987
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
31988
|
+
}
|
|
31931
31989
|
)[]
|
|
31932
31990
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31933
31991
|
latch_metadata?:
|
|
@@ -32077,6 +32135,8 @@ export type Routes = {
|
|
|
32077
32135
|
entry_relays_total_count: number
|
|
32078
32136
|
}
|
|
32079
32137
|
| undefined
|
|
32138
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
32139
|
+
is_locked?: boolean | undefined
|
|
32080
32140
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
32081
32141
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
32082
32142
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -35728,6 +35788,14 @@ export type Routes = {
|
|
|
35728
35788
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35729
35789
|
warning_code: 'entrance_setup_required'
|
|
35730
35790
|
}
|
|
35791
|
+
| {
|
|
35792
|
+
/** Date and time at which Seam created the warning. */
|
|
35793
|
+
created_at: string
|
|
35794
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
35795
|
+
message: string
|
|
35796
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
35797
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
35798
|
+
}
|
|
35731
35799
|
)[]
|
|
35732
35800
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
35733
35801
|
latch_metadata?:
|
|
@@ -35877,6 +35945,8 @@ export type Routes = {
|
|
|
35877
35945
|
entry_relays_total_count: number
|
|
35878
35946
|
}
|
|
35879
35947
|
| undefined
|
|
35948
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
35949
|
+
is_locked?: boolean | undefined
|
|
35880
35950
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
35881
35951
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
35882
35952
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -89372,6 +89442,14 @@ export type Routes = {
|
|
|
89372
89442
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89373
89443
|
warning_code: 'entrance_setup_required'
|
|
89374
89444
|
}
|
|
89445
|
+
| {
|
|
89446
|
+
/** Date and time at which Seam created the warning. */
|
|
89447
|
+
created_at: string
|
|
89448
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
89449
|
+
message: string
|
|
89450
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
89451
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
89452
|
+
}
|
|
89375
89453
|
)[]
|
|
89376
89454
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
89377
89455
|
latch_metadata?:
|
|
@@ -89524,6 +89602,8 @@ export type Routes = {
|
|
|
89524
89602
|
entry_relays_total_count: number
|
|
89525
89603
|
}
|
|
89526
89604
|
| undefined
|
|
89605
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
89606
|
+
is_locked?: boolean | undefined
|
|
89527
89607
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
89528
89608
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
89529
89609
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -91655,6 +91735,14 @@ export type Routes = {
|
|
|
91655
91735
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91656
91736
|
warning_code: 'entrance_setup_required'
|
|
91657
91737
|
}
|
|
91738
|
+
| {
|
|
91739
|
+
/** Date and time at which Seam created the warning. */
|
|
91740
|
+
created_at: string
|
|
91741
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91742
|
+
message: string
|
|
91743
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91744
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
91745
|
+
}
|
|
91658
91746
|
)[]
|
|
91659
91747
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
91660
91748
|
latch_metadata?:
|
|
@@ -91807,6 +91895,8 @@ export type Routes = {
|
|
|
91807
91895
|
entry_relays_total_count: number
|
|
91808
91896
|
}
|
|
91809
91897
|
| undefined
|
|
91898
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
91899
|
+
is_locked?: boolean | undefined
|
|
91810
91900
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
91811
91901
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
91812
91902
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -118100,6 +118190,14 @@ export type Routes = {
|
|
|
118100
118190
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118101
118191
|
warning_code: 'entrance_setup_required'
|
|
118102
118192
|
}
|
|
118193
|
+
| {
|
|
118194
|
+
/** Date and time at which Seam created the warning. */
|
|
118195
|
+
created_at: string
|
|
118196
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
118197
|
+
message: string
|
|
118198
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
118199
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
118200
|
+
}
|
|
118103
118201
|
)[]
|
|
118104
118202
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
118105
118203
|
latch_metadata?:
|
|
@@ -118249,6 +118347,8 @@ export type Routes = {
|
|
|
118249
118347
|
entry_relays_total_count: number
|
|
118250
118348
|
}
|
|
118251
118349
|
| undefined
|
|
118350
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
118351
|
+
is_locked?: boolean | undefined
|
|
118252
118352
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
118253
118353
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
118254
118354
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -121131,6 +121231,14 @@ export type Routes = {
|
|
|
121131
121231
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121132
121232
|
warning_code: 'entrance_setup_required'
|
|
121133
121233
|
}
|
|
121234
|
+
| {
|
|
121235
|
+
/** Date and time at which Seam created the warning. */
|
|
121236
|
+
created_at: string
|
|
121237
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121238
|
+
message: string
|
|
121239
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121240
|
+
warning_code: 'salto_ks_privacy_mode'
|
|
121241
|
+
}
|
|
121134
121242
|
)[]
|
|
121135
121243
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
121136
121244
|
latch_metadata?:
|
|
@@ -121283,6 +121391,8 @@ export type Routes = {
|
|
|
121283
121391
|
entry_relays_total_count: number
|
|
121284
121392
|
}
|
|
121285
121393
|
| undefined
|
|
121394
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
121395
|
+
is_locked?: boolean | undefined
|
|
121286
121396
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
121287
121397
|
can_unlock_with_mobile_key?: boolean | undefined
|
|
121288
121398
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|