@seamapi/types 1.847.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 +65 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +207 -80
- package/dist/index.cjs +65 -7
- package/dist/index.cjs.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 +57 -28
- package/lib/seam/connect/models/phones/phone-session.d.ts +110 -28
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +113 -36
- package/package.json +1 -1
- 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 +58 -0
- package/src/lib/seam/connect/route-types.ts +212 -88
|
@@ -14694,14 +14694,24 @@ export type Routes = {
|
|
|
14694
14694
|
message: string
|
|
14695
14695
|
}[]
|
|
14696
14696
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14697
|
-
warnings:
|
|
14698
|
-
|
|
14699
|
-
|
|
14700
|
-
|
|
14701
|
-
|
|
14702
|
-
|
|
14703
|
-
|
|
14704
|
-
|
|
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
|
+
)[]
|
|
14705
14715
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
14706
14716
|
latch_metadata?:
|
|
14707
14717
|
| {
|
|
@@ -15282,6 +15292,7 @@ export type Routes = {
|
|
|
15282
15292
|
| 'salto_space_group'
|
|
15283
15293
|
| 'dormakaba_community_access_group'
|
|
15284
15294
|
| 'dormakaba_ambiance_access_group'
|
|
15295
|
+
| 'avigilon_alta_group'
|
|
15285
15296
|
/**
|
|
15286
15297
|
* @deprecated Use `external_type_display_name`.*/
|
|
15287
15298
|
access_group_type_display_name: string
|
|
@@ -15295,6 +15306,7 @@ export type Routes = {
|
|
|
15295
15306
|
| 'salto_space_group'
|
|
15296
15307
|
| 'dormakaba_community_access_group'
|
|
15297
15308
|
| 'dormakaba_ambiance_access_group'
|
|
15309
|
+
| 'avigilon_alta_group'
|
|
15298
15310
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
15299
15311
|
external_type_display_name: string
|
|
15300
15312
|
/** Date and time at which the access group was created. */
|
|
@@ -19992,14 +20004,24 @@ export type Routes = {
|
|
|
19992
20004
|
message: string
|
|
19993
20005
|
}[]
|
|
19994
20006
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19995
|
-
warnings:
|
|
19996
|
-
|
|
19997
|
-
|
|
19998
|
-
|
|
19999
|
-
|
|
20000
|
-
|
|
20001
|
-
|
|
20002
|
-
|
|
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
|
+
)[]
|
|
20003
20025
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
20004
20026
|
latch_metadata?:
|
|
20005
20027
|
| {
|
|
@@ -21175,6 +21197,7 @@ export type Routes = {
|
|
|
21175
21197
|
| 'salto_space_group'
|
|
21176
21198
|
| 'dormakaba_community_access_group'
|
|
21177
21199
|
| 'dormakaba_ambiance_access_group'
|
|
21200
|
+
| 'avigilon_alta_group'
|
|
21178
21201
|
/**
|
|
21179
21202
|
* @deprecated Use `external_type_display_name`.*/
|
|
21180
21203
|
access_group_type_display_name: string
|
|
@@ -21188,6 +21211,7 @@ export type Routes = {
|
|
|
21188
21211
|
| 'salto_space_group'
|
|
21189
21212
|
| 'dormakaba_community_access_group'
|
|
21190
21213
|
| 'dormakaba_ambiance_access_group'
|
|
21214
|
+
| 'avigilon_alta_group'
|
|
21191
21215
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
21192
21216
|
external_type_display_name: string
|
|
21193
21217
|
/** Date and time at which the access group was created. */
|
|
@@ -21387,6 +21411,7 @@ export type Routes = {
|
|
|
21387
21411
|
| 'salto_space_group'
|
|
21388
21412
|
| 'dormakaba_community_access_group'
|
|
21389
21413
|
| 'dormakaba_ambiance_access_group'
|
|
21414
|
+
| 'avigilon_alta_group'
|
|
21390
21415
|
/**
|
|
21391
21416
|
* @deprecated Use `external_type_display_name`.*/
|
|
21392
21417
|
access_group_type_display_name: string
|
|
@@ -21400,6 +21425,7 @@ export type Routes = {
|
|
|
21400
21425
|
| 'salto_space_group'
|
|
21401
21426
|
| 'dormakaba_community_access_group'
|
|
21402
21427
|
| 'dormakaba_ambiance_access_group'
|
|
21428
|
+
| 'avigilon_alta_group'
|
|
21403
21429
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
21404
21430
|
external_type_display_name: string
|
|
21405
21431
|
/** Date and time at which the access group was created. */
|
|
@@ -21593,14 +21619,24 @@ export type Routes = {
|
|
|
21593
21619
|
message: string
|
|
21594
21620
|
}[]
|
|
21595
21621
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21596
|
-
warnings:
|
|
21597
|
-
|
|
21598
|
-
|
|
21599
|
-
|
|
21600
|
-
|
|
21601
|
-
|
|
21602
|
-
|
|
21603
|
-
|
|
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
|
+
)[]
|
|
21604
21640
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21605
21641
|
latch_metadata?:
|
|
21606
21642
|
| {
|
|
@@ -22118,6 +22154,7 @@ export type Routes = {
|
|
|
22118
22154
|
| 'salto_space_group'
|
|
22119
22155
|
| 'dormakaba_community_access_group'
|
|
22120
22156
|
| 'dormakaba_ambiance_access_group'
|
|
22157
|
+
| 'avigilon_alta_group'
|
|
22121
22158
|
/**
|
|
22122
22159
|
* @deprecated Use `external_type_display_name`.*/
|
|
22123
22160
|
access_group_type_display_name: string
|
|
@@ -22131,6 +22168,7 @@ export type Routes = {
|
|
|
22131
22168
|
| 'salto_space_group'
|
|
22132
22169
|
| 'dormakaba_community_access_group'
|
|
22133
22170
|
| 'dormakaba_ambiance_access_group'
|
|
22171
|
+
| 'avigilon_alta_group'
|
|
22134
22172
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
22135
22173
|
external_type_display_name: string
|
|
22136
22174
|
/** Date and time at which the access group was created. */
|
|
@@ -22328,6 +22366,7 @@ export type Routes = {
|
|
|
22328
22366
|
| 'salto_space_group'
|
|
22329
22367
|
| 'dormakaba_community_access_group'
|
|
22330
22368
|
| 'dormakaba_ambiance_access_group'
|
|
22369
|
+
| 'avigilon_alta_group'
|
|
22331
22370
|
/**
|
|
22332
22371
|
* @deprecated Use `external_type_display_name`.*/
|
|
22333
22372
|
access_group_type_display_name: string
|
|
@@ -22341,6 +22380,7 @@ export type Routes = {
|
|
|
22341
22380
|
| 'salto_space_group'
|
|
22342
22381
|
| 'dormakaba_community_access_group'
|
|
22343
22382
|
| 'dormakaba_ambiance_access_group'
|
|
22383
|
+
| 'avigilon_alta_group'
|
|
22344
22384
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
22345
22385
|
external_type_display_name: string
|
|
22346
22386
|
/** Date and time at which the access group was created. */
|
|
@@ -23606,14 +23646,24 @@ export type Routes = {
|
|
|
23606
23646
|
message: string
|
|
23607
23647
|
}[]
|
|
23608
23648
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23609
|
-
warnings:
|
|
23610
|
-
|
|
23611
|
-
|
|
23612
|
-
|
|
23613
|
-
|
|
23614
|
-
|
|
23615
|
-
|
|
23616
|
-
|
|
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
|
+
)[]
|
|
23617
23667
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
23618
23668
|
latch_metadata?:
|
|
23619
23669
|
| {
|
|
@@ -27869,14 +27919,24 @@ export type Routes = {
|
|
|
27869
27919
|
message: string
|
|
27870
27920
|
}[]
|
|
27871
27921
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27872
|
-
warnings:
|
|
27873
|
-
|
|
27874
|
-
|
|
27875
|
-
|
|
27876
|
-
|
|
27877
|
-
|
|
27878
|
-
|
|
27879
|
-
|
|
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
|
+
)[]
|
|
27880
27940
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27881
27941
|
latch_metadata?:
|
|
27882
27942
|
| {
|
|
@@ -28107,14 +28167,24 @@ export type Routes = {
|
|
|
28107
28167
|
message: string
|
|
28108
28168
|
}[]
|
|
28109
28169
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28110
|
-
warnings:
|
|
28111
|
-
|
|
28112
|
-
|
|
28113
|
-
|
|
28114
|
-
|
|
28115
|
-
|
|
28116
|
-
|
|
28117
|
-
|
|
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
|
+
)[]
|
|
28118
28188
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
28119
28189
|
latch_metadata?:
|
|
28120
28190
|
| {
|
|
@@ -31655,14 +31725,24 @@ export type Routes = {
|
|
|
31655
31725
|
message: string
|
|
31656
31726
|
}[]
|
|
31657
31727
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31658
|
-
warnings:
|
|
31659
|
-
|
|
31660
|
-
|
|
31661
|
-
|
|
31662
|
-
|
|
31663
|
-
|
|
31664
|
-
|
|
31665
|
-
|
|
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
|
+
)[]
|
|
31666
31746
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
31667
31747
|
latch_metadata?:
|
|
31668
31748
|
| {
|
|
@@ -82366,14 +82446,24 @@ export type Routes = {
|
|
|
82366
82446
|
message: string
|
|
82367
82447
|
}[]
|
|
82368
82448
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
82369
|
-
warnings:
|
|
82370
|
-
|
|
82371
|
-
|
|
82372
|
-
|
|
82373
|
-
|
|
82374
|
-
|
|
82375
|
-
|
|
82376
|
-
|
|
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
|
+
)[]
|
|
82377
82467
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
82378
82468
|
latch_metadata?:
|
|
82379
82469
|
| {
|
|
@@ -84615,14 +84705,24 @@ export type Routes = {
|
|
|
84615
84705
|
message: string
|
|
84616
84706
|
}[]
|
|
84617
84707
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84618
|
-
warnings:
|
|
84619
|
-
|
|
84620
|
-
|
|
84621
|
-
|
|
84622
|
-
|
|
84623
|
-
|
|
84624
|
-
|
|
84625
|
-
|
|
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
|
+
)[]
|
|
84626
84726
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84627
84727
|
latch_metadata?:
|
|
84628
84728
|
| {
|
|
@@ -109056,14 +109156,24 @@ export type Routes = {
|
|
|
109056
109156
|
message: string
|
|
109057
109157
|
}[]
|
|
109058
109158
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
109059
|
-
warnings:
|
|
109060
|
-
|
|
109061
|
-
|
|
109062
|
-
|
|
109063
|
-
|
|
109064
|
-
|
|
109065
|
-
|
|
109066
|
-
|
|
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
|
+
)[]
|
|
109067
109177
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
109068
109178
|
latch_metadata?:
|
|
109069
109179
|
| {
|
|
@@ -112045,14 +112155,24 @@ export type Routes = {
|
|
|
112045
112155
|
message: string
|
|
112046
112156
|
}[]
|
|
112047
112157
|
/** Warnings associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112048
|
-
warnings:
|
|
112049
|
-
|
|
112050
|
-
|
|
112051
|
-
|
|
112052
|
-
|
|
112053
|
-
|
|
112054
|
-
|
|
112055
|
-
|
|
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
|
+
)[]
|
|
112056
112176
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
112057
112177
|
latch_metadata?:
|
|
112058
112178
|
| {
|
|
@@ -112706,6 +112826,7 @@ export type Routes = {
|
|
|
112706
112826
|
| 'salto_space_group'
|
|
112707
112827
|
| 'dormakaba_community_access_group'
|
|
112708
112828
|
| 'dormakaba_ambiance_access_group'
|
|
112829
|
+
| 'avigilon_alta_group'
|
|
112709
112830
|
/**
|
|
112710
112831
|
* @deprecated Use `external_type_display_name`.*/
|
|
112711
112832
|
access_group_type_display_name: string
|
|
@@ -112719,6 +112840,7 @@ export type Routes = {
|
|
|
112719
112840
|
| 'salto_space_group'
|
|
112720
112841
|
| 'dormakaba_community_access_group'
|
|
112721
112842
|
| 'dormakaba_ambiance_access_group'
|
|
112843
|
+
| 'avigilon_alta_group'
|
|
112722
112844
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
112723
112845
|
external_type_display_name: string
|
|
112724
112846
|
/** Date and time at which the access group was created. */
|
|
@@ -114819,6 +114941,7 @@ export type Routes = {
|
|
|
114819
114941
|
| 'salto_space_group'
|
|
114820
114942
|
| 'dormakaba_community_access_group'
|
|
114821
114943
|
| 'dormakaba_ambiance_access_group'
|
|
114944
|
+
| 'avigilon_alta_group'
|
|
114822
114945
|
/**
|
|
114823
114946
|
* @deprecated Use `external_type_display_name`.*/
|
|
114824
114947
|
access_group_type_display_name: string
|
|
@@ -114832,6 +114955,7 @@ export type Routes = {
|
|
|
114832
114955
|
| 'salto_space_group'
|
|
114833
114956
|
| 'dormakaba_community_access_group'
|
|
114834
114957
|
| 'dormakaba_ambiance_access_group'
|
|
114958
|
+
| 'avigilon_alta_group'
|
|
114835
114959
|
/** Display name that corresponds to the brand-specific terminology for the access group type. */
|
|
114836
114960
|
external_type_display_name: string
|
|
114837
114961
|
/** Date and time at which the access group was created. */
|