@seamapi/types 1.846.0 → 1.848.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 +81 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +239 -80
- package/dist/index.cjs +81 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +6 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +8 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +13 -13
- package/lib/seam/connect/models/acs/acs-access-group.js +1 -0
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +9 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +67 -28
- package/lib/seam/connect/models/phones/phone-session.d.ts +110 -28
- package/lib/seam/connect/openapi.js +60 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +129 -36
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +12 -0
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +70 -0
- package/src/lib/seam/connect/route-types.ts +228 -88
|
@@ -7975,6 +7975,10 @@ export type Routes = {
|
|
|
7975
7975
|
ends_at?: (string | null) | undefined
|
|
7976
7976
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
7977
7977
|
status: 'set' | 'unset'
|
|
7978
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
7979
|
+
cannot_be_managed?: true | undefined
|
|
7980
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
7981
|
+
cannot_delete_unmanaged_access_code?: true | undefined
|
|
7978
7982
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
7979
7983
|
dormakaba_oracode_metadata?:
|
|
7980
7984
|
| ({
|
|
@@ -10142,6 +10146,10 @@ export type Routes = {
|
|
|
10142
10146
|
ends_at?: (string | null) | undefined
|
|
10143
10147
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
10144
10148
|
status: 'set' | 'unset'
|
|
10149
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
10150
|
+
cannot_be_managed?: true | undefined
|
|
10151
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
10152
|
+
cannot_delete_unmanaged_access_code?: true | undefined
|
|
10145
10153
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
10146
10154
|
dormakaba_oracode_metadata?:
|
|
10147
10155
|
| ({
|
|
@@ -10723,6 +10731,10 @@ export type Routes = {
|
|
|
10723
10731
|
ends_at?: (string | null) | undefined
|
|
10724
10732
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
10725
10733
|
status: 'set' | 'unset'
|
|
10734
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
10735
|
+
cannot_be_managed?: true | undefined
|
|
10736
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
10737
|
+
cannot_delete_unmanaged_access_code?: true | undefined
|
|
10726
10738
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
10727
10739
|
dormakaba_oracode_metadata?:
|
|
10728
10740
|
| ({
|
|
@@ -14682,14 +14694,24 @@ export type Routes = {
|
|
|
14682
14694
|
message: string
|
|
14683
14695
|
}[]
|
|
14684
14696
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14685
|
-
warnings:
|
|
14686
|
-
|
|
14687
|
-
|
|
14688
|
-
|
|
14689
|
-
|
|
14690
|
-
|
|
14691
|
-
|
|
14692
|
-
|
|
14697
|
+
warnings: (
|
|
14698
|
+
| {
|
|
14699
|
+
/** Date and time at which Seam created the warning. */
|
|
14700
|
+
created_at: string
|
|
14701
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14702
|
+
message: string
|
|
14703
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14704
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
14705
|
+
}
|
|
14706
|
+
| {
|
|
14707
|
+
/** Date and time at which Seam created the warning. */
|
|
14708
|
+
created_at: string
|
|
14709
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
14710
|
+
message: string
|
|
14711
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
14712
|
+
warning_code: 'entrance_shares_zone'
|
|
14713
|
+
}
|
|
14714
|
+
)[]
|
|
14693
14715
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14694
14716
|
latch_metadata?:
|
|
14695
14717
|
| {
|
|
@@ -15270,6 +15292,7 @@ export type Routes = {
|
|
|
15270
15292
|
| 'salto_space_group'
|
|
15271
15293
|
| 'dormakaba_community_access_group'
|
|
15272
15294
|
| 'dormakaba_ambiance_access_group'
|
|
15295
|
+
| 'avigilon_alta_group'
|
|
15273
15296
|
/**
|
|
15274
15297
|
* @deprecated Use `external_type_display_name`.*/
|
|
15275
15298
|
access_group_type_display_name: string
|
|
@@ -15283,6 +15306,7 @@ export type Routes = {
|
|
|
15283
15306
|
| 'salto_space_group'
|
|
15284
15307
|
| 'dormakaba_community_access_group'
|
|
15285
15308
|
| 'dormakaba_ambiance_access_group'
|
|
15309
|
+
| 'avigilon_alta_group'
|
|
15286
15310
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
15287
15311
|
external_type_display_name: string
|
|
15288
15312
|
/** Date and time at which the access group was created. */
|
|
@@ -19980,14 +20004,24 @@ export type Routes = {
|
|
|
19980
20004
|
message: string
|
|
19981
20005
|
}[]
|
|
19982
20006
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19983
|
-
warnings:
|
|
19984
|
-
|
|
19985
|
-
|
|
19986
|
-
|
|
19987
|
-
|
|
19988
|
-
|
|
19989
|
-
|
|
19990
|
-
|
|
20007
|
+
warnings: (
|
|
20008
|
+
| {
|
|
20009
|
+
/** Date and time at which Seam created the warning. */
|
|
20010
|
+
created_at: string
|
|
20011
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20012
|
+
message: string
|
|
20013
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20014
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
20015
|
+
}
|
|
20016
|
+
| {
|
|
20017
|
+
/** Date and time at which Seam created the warning. */
|
|
20018
|
+
created_at: string
|
|
20019
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20020
|
+
message: string
|
|
20021
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20022
|
+
warning_code: 'entrance_shares_zone'
|
|
20023
|
+
}
|
|
20024
|
+
)[]
|
|
19991
20025
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19992
20026
|
latch_metadata?:
|
|
19993
20027
|
| {
|
|
@@ -21163,6 +21197,7 @@ export type Routes = {
|
|
|
21163
21197
|
| 'salto_space_group'
|
|
21164
21198
|
| 'dormakaba_community_access_group'
|
|
21165
21199
|
| 'dormakaba_ambiance_access_group'
|
|
21200
|
+
| 'avigilon_alta_group'
|
|
21166
21201
|
/**
|
|
21167
21202
|
* @deprecated Use `external_type_display_name`.*/
|
|
21168
21203
|
access_group_type_display_name: string
|
|
@@ -21176,6 +21211,7 @@ export type Routes = {
|
|
|
21176
21211
|
| 'salto_space_group'
|
|
21177
21212
|
| 'dormakaba_community_access_group'
|
|
21178
21213
|
| 'dormakaba_ambiance_access_group'
|
|
21214
|
+
| 'avigilon_alta_group'
|
|
21179
21215
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
21180
21216
|
external_type_display_name: string
|
|
21181
21217
|
/** Date and time at which the access group was created. */
|
|
@@ -21375,6 +21411,7 @@ export type Routes = {
|
|
|
21375
21411
|
| 'salto_space_group'
|
|
21376
21412
|
| 'dormakaba_community_access_group'
|
|
21377
21413
|
| 'dormakaba_ambiance_access_group'
|
|
21414
|
+
| 'avigilon_alta_group'
|
|
21378
21415
|
/**
|
|
21379
21416
|
* @deprecated Use `external_type_display_name`.*/
|
|
21380
21417
|
access_group_type_display_name: string
|
|
@@ -21388,6 +21425,7 @@ export type Routes = {
|
|
|
21388
21425
|
| 'salto_space_group'
|
|
21389
21426
|
| 'dormakaba_community_access_group'
|
|
21390
21427
|
| 'dormakaba_ambiance_access_group'
|
|
21428
|
+
| 'avigilon_alta_group'
|
|
21391
21429
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
21392
21430
|
external_type_display_name: string
|
|
21393
21431
|
/** Date and time at which the access group was created. */
|
|
@@ -21581,14 +21619,24 @@ export type Routes = {
|
|
|
21581
21619
|
message: string
|
|
21582
21620
|
}[]
|
|
21583
21621
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21584
|
-
warnings:
|
|
21585
|
-
|
|
21586
|
-
|
|
21587
|
-
|
|
21588
|
-
|
|
21589
|
-
|
|
21590
|
-
|
|
21591
|
-
|
|
21622
|
+
warnings: (
|
|
21623
|
+
| {
|
|
21624
|
+
/** Date and time at which Seam created the warning. */
|
|
21625
|
+
created_at: string
|
|
21626
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21627
|
+
message: string
|
|
21628
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21629
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
21630
|
+
}
|
|
21631
|
+
| {
|
|
21632
|
+
/** Date and time at which Seam created the warning. */
|
|
21633
|
+
created_at: string
|
|
21634
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21635
|
+
message: string
|
|
21636
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21637
|
+
warning_code: 'entrance_shares_zone'
|
|
21638
|
+
}
|
|
21639
|
+
)[]
|
|
21592
21640
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21593
21641
|
latch_metadata?:
|
|
21594
21642
|
| {
|
|
@@ -22106,6 +22154,7 @@ export type Routes = {
|
|
|
22106
22154
|
| 'salto_space_group'
|
|
22107
22155
|
| 'dormakaba_community_access_group'
|
|
22108
22156
|
| 'dormakaba_ambiance_access_group'
|
|
22157
|
+
| 'avigilon_alta_group'
|
|
22109
22158
|
/**
|
|
22110
22159
|
* @deprecated Use `external_type_display_name`.*/
|
|
22111
22160
|
access_group_type_display_name: string
|
|
@@ -22119,6 +22168,7 @@ export type Routes = {
|
|
|
22119
22168
|
| 'salto_space_group'
|
|
22120
22169
|
| 'dormakaba_community_access_group'
|
|
22121
22170
|
| 'dormakaba_ambiance_access_group'
|
|
22171
|
+
| 'avigilon_alta_group'
|
|
22122
22172
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
22123
22173
|
external_type_display_name: string
|
|
22124
22174
|
/** Date and time at which the access group was created. */
|
|
@@ -22316,6 +22366,7 @@ export type Routes = {
|
|
|
22316
22366
|
| 'salto_space_group'
|
|
22317
22367
|
| 'dormakaba_community_access_group'
|
|
22318
22368
|
| 'dormakaba_ambiance_access_group'
|
|
22369
|
+
| 'avigilon_alta_group'
|
|
22319
22370
|
/**
|
|
22320
22371
|
* @deprecated Use `external_type_display_name`.*/
|
|
22321
22372
|
access_group_type_display_name: string
|
|
@@ -22329,6 +22380,7 @@ export type Routes = {
|
|
|
22329
22380
|
| 'salto_space_group'
|
|
22330
22381
|
| 'dormakaba_community_access_group'
|
|
22331
22382
|
| 'dormakaba_ambiance_access_group'
|
|
22383
|
+
| 'avigilon_alta_group'
|
|
22332
22384
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
22333
22385
|
external_type_display_name: string
|
|
22334
22386
|
/** Date and time at which the access group was created. */
|
|
@@ -23594,14 +23646,24 @@ export type Routes = {
|
|
|
23594
23646
|
message: string
|
|
23595
23647
|
}[]
|
|
23596
23648
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23597
|
-
warnings:
|
|
23598
|
-
|
|
23599
|
-
|
|
23600
|
-
|
|
23601
|
-
|
|
23602
|
-
|
|
23603
|
-
|
|
23604
|
-
|
|
23649
|
+
warnings: (
|
|
23650
|
+
| {
|
|
23651
|
+
/** Date and time at which Seam created the warning. */
|
|
23652
|
+
created_at: string
|
|
23653
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23654
|
+
message: string
|
|
23655
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23656
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
23657
|
+
}
|
|
23658
|
+
| {
|
|
23659
|
+
/** Date and time at which Seam created the warning. */
|
|
23660
|
+
created_at: string
|
|
23661
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23662
|
+
message: string
|
|
23663
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23664
|
+
warning_code: 'entrance_shares_zone'
|
|
23665
|
+
}
|
|
23666
|
+
)[]
|
|
23605
23667
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23606
23668
|
latch_metadata?:
|
|
23607
23669
|
| {
|
|
@@ -27857,14 +27919,24 @@ export type Routes = {
|
|
|
27857
27919
|
message: string
|
|
27858
27920
|
}[]
|
|
27859
27921
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27860
|
-
warnings:
|
|
27861
|
-
|
|
27862
|
-
|
|
27863
|
-
|
|
27864
|
-
|
|
27865
|
-
|
|
27866
|
-
|
|
27867
|
-
|
|
27922
|
+
warnings: (
|
|
27923
|
+
| {
|
|
27924
|
+
/** Date and time at which Seam created the warning. */
|
|
27925
|
+
created_at: string
|
|
27926
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27927
|
+
message: string
|
|
27928
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27929
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
27930
|
+
}
|
|
27931
|
+
| {
|
|
27932
|
+
/** Date and time at which Seam created the warning. */
|
|
27933
|
+
created_at: string
|
|
27934
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27935
|
+
message: string
|
|
27936
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27937
|
+
warning_code: 'entrance_shares_zone'
|
|
27938
|
+
}
|
|
27939
|
+
)[]
|
|
27868
27940
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27869
27941
|
latch_metadata?:
|
|
27870
27942
|
| {
|
|
@@ -28095,14 +28167,24 @@ export type Routes = {
|
|
|
28095
28167
|
message: string
|
|
28096
28168
|
}[]
|
|
28097
28169
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28098
|
-
warnings:
|
|
28099
|
-
|
|
28100
|
-
|
|
28101
|
-
|
|
28102
|
-
|
|
28103
|
-
|
|
28104
|
-
|
|
28105
|
-
|
|
28170
|
+
warnings: (
|
|
28171
|
+
| {
|
|
28172
|
+
/** Date and time at which Seam created the warning. */
|
|
28173
|
+
created_at: string
|
|
28174
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28175
|
+
message: string
|
|
28176
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28177
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
28178
|
+
}
|
|
28179
|
+
| {
|
|
28180
|
+
/** Date and time at which Seam created the warning. */
|
|
28181
|
+
created_at: string
|
|
28182
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
28183
|
+
message: string
|
|
28184
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
28185
|
+
warning_code: 'entrance_shares_zone'
|
|
28186
|
+
}
|
|
28187
|
+
)[]
|
|
28106
28188
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28107
28189
|
latch_metadata?:
|
|
28108
28190
|
| {
|
|
@@ -31643,14 +31725,24 @@ export type Routes = {
|
|
|
31643
31725
|
message: string
|
|
31644
31726
|
}[]
|
|
31645
31727
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31646
|
-
warnings:
|
|
31647
|
-
|
|
31648
|
-
|
|
31649
|
-
|
|
31650
|
-
|
|
31651
|
-
|
|
31652
|
-
|
|
31653
|
-
|
|
31728
|
+
warnings: (
|
|
31729
|
+
| {
|
|
31730
|
+
/** Date and time at which Seam created the warning. */
|
|
31731
|
+
created_at: string
|
|
31732
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31733
|
+
message: string
|
|
31734
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31735
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
31736
|
+
}
|
|
31737
|
+
| {
|
|
31738
|
+
/** Date and time at which Seam created the warning. */
|
|
31739
|
+
created_at: string
|
|
31740
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
31741
|
+
message: string
|
|
31742
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
31743
|
+
warning_code: 'entrance_shares_zone'
|
|
31744
|
+
}
|
|
31745
|
+
)[]
|
|
31654
31746
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31655
31747
|
latch_metadata?:
|
|
31656
31748
|
| {
|
|
@@ -82354,14 +82446,24 @@ export type Routes = {
|
|
|
82354
82446
|
message: string
|
|
82355
82447
|
}[]
|
|
82356
82448
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
82357
|
-
warnings:
|
|
82358
|
-
|
|
82359
|
-
|
|
82360
|
-
|
|
82361
|
-
|
|
82362
|
-
|
|
82363
|
-
|
|
82364
|
-
|
|
82449
|
+
warnings: (
|
|
82450
|
+
| {
|
|
82451
|
+
/** Date and time at which Seam created the warning. */
|
|
82452
|
+
created_at: string
|
|
82453
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82454
|
+
message: string
|
|
82455
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82456
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
82457
|
+
}
|
|
82458
|
+
| {
|
|
82459
|
+
/** Date and time at which Seam created the warning. */
|
|
82460
|
+
created_at: string
|
|
82461
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82462
|
+
message: string
|
|
82463
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82464
|
+
warning_code: 'entrance_shares_zone'
|
|
82465
|
+
}
|
|
82466
|
+
)[]
|
|
82365
82467
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
82366
82468
|
latch_metadata?:
|
|
82367
82469
|
| {
|
|
@@ -84603,14 +84705,24 @@ export type Routes = {
|
|
|
84603
84705
|
message: string
|
|
84604
84706
|
}[]
|
|
84605
84707
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84606
|
-
warnings:
|
|
84607
|
-
|
|
84608
|
-
|
|
84609
|
-
|
|
84610
|
-
|
|
84611
|
-
|
|
84612
|
-
|
|
84613
|
-
|
|
84708
|
+
warnings: (
|
|
84709
|
+
| {
|
|
84710
|
+
/** Date and time at which Seam created the warning. */
|
|
84711
|
+
created_at: string
|
|
84712
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84713
|
+
message: string
|
|
84714
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84715
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
84716
|
+
}
|
|
84717
|
+
| {
|
|
84718
|
+
/** Date and time at which Seam created the warning. */
|
|
84719
|
+
created_at: string
|
|
84720
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84721
|
+
message: string
|
|
84722
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84723
|
+
warning_code: 'entrance_shares_zone'
|
|
84724
|
+
}
|
|
84725
|
+
)[]
|
|
84614
84726
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84615
84727
|
latch_metadata?:
|
|
84616
84728
|
| {
|
|
@@ -109044,14 +109156,24 @@ export type Routes = {
|
|
|
109044
109156
|
message: string
|
|
109045
109157
|
}[]
|
|
109046
109158
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
109047
|
-
warnings:
|
|
109048
|
-
|
|
109049
|
-
|
|
109050
|
-
|
|
109051
|
-
|
|
109052
|
-
|
|
109053
|
-
|
|
109054
|
-
|
|
109159
|
+
warnings: (
|
|
109160
|
+
| {
|
|
109161
|
+
/** Date and time at which Seam created the warning. */
|
|
109162
|
+
created_at: string
|
|
109163
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109164
|
+
message: string
|
|
109165
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109166
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
109167
|
+
}
|
|
109168
|
+
| {
|
|
109169
|
+
/** Date and time at which Seam created the warning. */
|
|
109170
|
+
created_at: string
|
|
109171
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109172
|
+
message: string
|
|
109173
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109174
|
+
warning_code: 'entrance_shares_zone'
|
|
109175
|
+
}
|
|
109176
|
+
)[]
|
|
109055
109177
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
109056
109178
|
latch_metadata?:
|
|
109057
109179
|
| {
|
|
@@ -112033,14 +112155,24 @@ export type Routes = {
|
|
|
112033
112155
|
message: string
|
|
112034
112156
|
}[]
|
|
112035
112157
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112036
|
-
warnings:
|
|
112037
|
-
|
|
112038
|
-
|
|
112039
|
-
|
|
112040
|
-
|
|
112041
|
-
|
|
112042
|
-
|
|
112043
|
-
|
|
112158
|
+
warnings: (
|
|
112159
|
+
| {
|
|
112160
|
+
/** Date and time at which Seam created the warning. */
|
|
112161
|
+
created_at: string
|
|
112162
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
112163
|
+
message: string
|
|
112164
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112165
|
+
warning_code: 'salto_ks_entrance_access_code_support_removed'
|
|
112166
|
+
}
|
|
112167
|
+
| {
|
|
112168
|
+
/** Date and time at which Seam created the warning. */
|
|
112169
|
+
created_at: string
|
|
112170
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
112171
|
+
message: string
|
|
112172
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
112173
|
+
warning_code: 'entrance_shares_zone'
|
|
112174
|
+
}
|
|
112175
|
+
)[]
|
|
112044
112176
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112045
112177
|
latch_metadata?:
|
|
112046
112178
|
| {
|
|
@@ -112694,6 +112826,7 @@ export type Routes = {
|
|
|
112694
112826
|
| 'salto_space_group'
|
|
112695
112827
|
| 'dormakaba_community_access_group'
|
|
112696
112828
|
| 'dormakaba_ambiance_access_group'
|
|
112829
|
+
| 'avigilon_alta_group'
|
|
112697
112830
|
/**
|
|
112698
112831
|
* @deprecated Use `external_type_display_name`.*/
|
|
112699
112832
|
access_group_type_display_name: string
|
|
@@ -112707,6 +112840,7 @@ export type Routes = {
|
|
|
112707
112840
|
| 'salto_space_group'
|
|
112708
112841
|
| 'dormakaba_community_access_group'
|
|
112709
112842
|
| 'dormakaba_ambiance_access_group'
|
|
112843
|
+
| 'avigilon_alta_group'
|
|
112710
112844
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
112711
112845
|
external_type_display_name: string
|
|
112712
112846
|
/** Date and time at which the access group was created. */
|
|
@@ -114807,6 +114941,7 @@ export type Routes = {
|
|
|
114807
114941
|
| 'salto_space_group'
|
|
114808
114942
|
| 'dormakaba_community_access_group'
|
|
114809
114943
|
| 'dormakaba_ambiance_access_group'
|
|
114944
|
+
| 'avigilon_alta_group'
|
|
114810
114945
|
/**
|
|
114811
114946
|
* @deprecated Use `external_type_display_name`.*/
|
|
114812
114947
|
access_group_type_display_name: string
|
|
@@ -114820,6 +114955,7 @@ export type Routes = {
|
|
|
114820
114955
|
| 'salto_space_group'
|
|
114821
114956
|
| 'dormakaba_community_access_group'
|
|
114822
114957
|
| 'dormakaba_ambiance_access_group'
|
|
114958
|
+
| 'avigilon_alta_group'
|
|
114823
114959
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
114824
114960
|
external_type_display_name: string
|
|
114825
114961
|
/** Date and time at which the access group was created. */
|
|
@@ -120144,6 +120280,10 @@ export type Routes = {
|
|
|
120144
120280
|
ends_at?: (string | null) | undefined
|
|
120145
120281
|
/** Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device. */
|
|
120146
120282
|
status: 'set' | 'unset'
|
|
120283
|
+
/** Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations. */
|
|
120284
|
+
cannot_be_managed?: true | undefined
|
|
120285
|
+
/** Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app. */
|
|
120286
|
+
cannot_delete_unmanaged_access_code?: true | undefined
|
|
120147
120287
|
/** Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices. */
|
|
120148
120288
|
dormakaba_oracode_metadata?:
|
|
120149
120289
|
| ({
|