@seamapi/types 1.391.0 → 1.392.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 +8 -47
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +212 -166
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -58
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -11
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -21
- package/lib/seam/connect/models/acs/acs-credential.d.ts +18 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +1 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +60 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +26 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +34 -16
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +7 -42
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +119 -75
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -12
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +7 -48
- package/src/lib/seam/connect/route-types.ts +119 -72
|
@@ -258,6 +258,7 @@ export interface Routes {
|
|
|
258
258
|
} | undefined;
|
|
259
259
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
260
260
|
assa_abloy_vostio_metadata?: {
|
|
261
|
+
auto_join?: boolean | undefined;
|
|
261
262
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
262
263
|
key_id?: string | undefined;
|
|
263
264
|
key_issuing_request_id?: string | undefined;
|
|
@@ -369,6 +370,7 @@ export interface Routes {
|
|
|
369
370
|
} | undefined;
|
|
370
371
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
371
372
|
assa_abloy_vostio_metadata?: {
|
|
373
|
+
auto_join?: boolean | undefined;
|
|
372
374
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
373
375
|
key_id?: string | undefined;
|
|
374
376
|
key_issuing_request_id?: string | undefined;
|
|
@@ -591,6 +593,7 @@ export interface Routes {
|
|
|
591
593
|
} | undefined;
|
|
592
594
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
593
595
|
assa_abloy_vostio_metadata?: {
|
|
596
|
+
auto_join?: boolean | undefined;
|
|
594
597
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
595
598
|
key_id?: string | undefined;
|
|
596
599
|
key_issuing_request_id?: string | undefined;
|
|
@@ -702,6 +705,7 @@ export interface Routes {
|
|
|
702
705
|
} | undefined;
|
|
703
706
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
704
707
|
assa_abloy_vostio_metadata?: {
|
|
708
|
+
auto_join?: boolean | undefined;
|
|
705
709
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
706
710
|
key_id?: string | undefined;
|
|
707
711
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1494,13 +1498,6 @@ export interface Routes {
|
|
|
1494
1498
|
created_at?: string | undefined;
|
|
1495
1499
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1496
1500
|
warning_code: 'schlage_detected_duplicate';
|
|
1497
|
-
} | {
|
|
1498
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1499
|
-
message: string;
|
|
1500
|
-
/** Date and time at which Seam created the warning. */
|
|
1501
|
-
created_at?: string | undefined;
|
|
1502
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1503
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
1504
1501
|
} | {
|
|
1505
1502
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1506
1503
|
message: string;
|
|
@@ -1982,13 +1979,6 @@ export interface Routes {
|
|
|
1982
1979
|
created_at?: string | undefined;
|
|
1983
1980
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1984
1981
|
warning_code: 'schlage_detected_duplicate';
|
|
1985
|
-
} | {
|
|
1986
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1987
|
-
message: string;
|
|
1988
|
-
/** Date and time at which Seam created the warning. */
|
|
1989
|
-
created_at?: string | undefined;
|
|
1990
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1991
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
1992
1982
|
} | {
|
|
1993
1983
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1994
1984
|
message: string;
|
|
@@ -2316,6 +2306,7 @@ export interface Routes {
|
|
|
2316
2306
|
} | undefined;
|
|
2317
2307
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2318
2308
|
assa_abloy_vostio_metadata?: {
|
|
2309
|
+
auto_join?: boolean | undefined;
|
|
2319
2310
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2320
2311
|
key_id?: string | undefined;
|
|
2321
2312
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2427,6 +2418,7 @@ export interface Routes {
|
|
|
2427
2418
|
} | undefined;
|
|
2428
2419
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2429
2420
|
assa_abloy_vostio_metadata?: {
|
|
2421
|
+
auto_join?: boolean | undefined;
|
|
2430
2422
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2431
2423
|
key_id?: string | undefined;
|
|
2432
2424
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2649,6 +2641,7 @@ export interface Routes {
|
|
|
2649
2641
|
} | undefined;
|
|
2650
2642
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2651
2643
|
assa_abloy_vostio_metadata?: {
|
|
2644
|
+
auto_join?: boolean | undefined;
|
|
2652
2645
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2653
2646
|
key_id?: string | undefined;
|
|
2654
2647
|
key_issuing_request_id?: string | undefined;
|
|
@@ -2760,6 +2753,7 @@ export interface Routes {
|
|
|
2760
2753
|
} | undefined;
|
|
2761
2754
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
2762
2755
|
assa_abloy_vostio_metadata?: {
|
|
2756
|
+
auto_join?: boolean | undefined;
|
|
2763
2757
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2764
2758
|
key_id?: string | undefined;
|
|
2765
2759
|
key_issuing_request_id?: string | undefined;
|
|
@@ -3585,13 +3579,6 @@ export interface Routes {
|
|
|
3585
3579
|
created_at?: string | undefined;
|
|
3586
3580
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3587
3581
|
warning_code: 'schlage_detected_duplicate';
|
|
3588
|
-
} | {
|
|
3589
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3590
|
-
message: string;
|
|
3591
|
-
/** Date and time at which Seam created the warning. */
|
|
3592
|
-
created_at?: string | undefined;
|
|
3593
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3594
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
3595
3582
|
} | {
|
|
3596
3583
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3597
3584
|
message: string;
|
|
@@ -4053,13 +4040,6 @@ export interface Routes {
|
|
|
4053
4040
|
created_at?: string | undefined;
|
|
4054
4041
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4055
4042
|
warning_code: 'schlage_detected_duplicate';
|
|
4056
|
-
} | {
|
|
4057
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4058
|
-
message: string;
|
|
4059
|
-
/** Date and time at which Seam created the warning. */
|
|
4060
|
-
created_at?: string | undefined;
|
|
4061
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4062
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
4063
4043
|
} | {
|
|
4064
4044
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4065
4045
|
message: string;
|
|
@@ -4529,13 +4509,6 @@ export interface Routes {
|
|
|
4529
4509
|
created_at?: string | undefined;
|
|
4530
4510
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4531
4511
|
warning_code: 'schlage_detected_duplicate';
|
|
4532
|
-
} | {
|
|
4533
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4534
|
-
message: string;
|
|
4535
|
-
/** Date and time at which Seam created the warning. */
|
|
4536
|
-
created_at?: string | undefined;
|
|
4537
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4538
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
4539
4512
|
} | {
|
|
4540
4513
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4541
4514
|
message: string;
|
|
@@ -4983,13 +4956,6 @@ export interface Routes {
|
|
|
4983
4956
|
created_at?: string | undefined;
|
|
4984
4957
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4985
4958
|
warning_code: 'schlage_detected_duplicate';
|
|
4986
|
-
} | {
|
|
4987
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4988
|
-
message: string;
|
|
4989
|
-
/** Date and time at which Seam created the warning. */
|
|
4990
|
-
created_at?: string | undefined;
|
|
4991
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4992
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
4993
4959
|
} | {
|
|
4994
4960
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4995
4961
|
message: string;
|
|
@@ -5466,13 +5432,6 @@ export interface Routes {
|
|
|
5466
5432
|
created_at?: string | undefined;
|
|
5467
5433
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5468
5434
|
warning_code: 'schlage_detected_duplicate';
|
|
5469
|
-
} | {
|
|
5470
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5471
|
-
message: string;
|
|
5472
|
-
/** Date and time at which Seam created the warning. */
|
|
5473
|
-
created_at?: string | undefined;
|
|
5474
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5475
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
5476
5435
|
} | {
|
|
5477
5436
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5478
5437
|
message: string;
|
|
@@ -5806,6 +5765,7 @@ export interface Routes {
|
|
|
5806
5765
|
} | undefined;
|
|
5807
5766
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
5808
5767
|
assa_abloy_vostio_metadata?: {
|
|
5768
|
+
auto_join?: boolean | undefined;
|
|
5809
5769
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5810
5770
|
key_id?: string | undefined;
|
|
5811
5771
|
key_issuing_request_id?: string | undefined;
|
|
@@ -5917,6 +5877,7 @@ export interface Routes {
|
|
|
5917
5877
|
} | undefined;
|
|
5918
5878
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
5919
5879
|
assa_abloy_vostio_metadata?: {
|
|
5880
|
+
auto_join?: boolean | undefined;
|
|
5920
5881
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5921
5882
|
key_id?: string | undefined;
|
|
5922
5883
|
key_issuing_request_id?: string | undefined;
|
|
@@ -6139,6 +6100,7 @@ export interface Routes {
|
|
|
6139
6100
|
} | undefined;
|
|
6140
6101
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6141
6102
|
assa_abloy_vostio_metadata?: {
|
|
6103
|
+
auto_join?: boolean | undefined;
|
|
6142
6104
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6143
6105
|
key_id?: string | undefined;
|
|
6144
6106
|
key_issuing_request_id?: string | undefined;
|
|
@@ -6250,6 +6212,7 @@ export interface Routes {
|
|
|
6250
6212
|
} | undefined;
|
|
6251
6213
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
6252
6214
|
assa_abloy_vostio_metadata?: {
|
|
6215
|
+
auto_join?: boolean | undefined;
|
|
6253
6216
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6254
6217
|
key_id?: string | undefined;
|
|
6255
6218
|
key_issuing_request_id?: string | undefined;
|
|
@@ -7053,13 +7016,6 @@ export interface Routes {
|
|
|
7053
7016
|
created_at?: string | undefined;
|
|
7054
7017
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7055
7018
|
warning_code: 'schlage_detected_duplicate';
|
|
7056
|
-
} | {
|
|
7057
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7058
|
-
message: string;
|
|
7059
|
-
/** Date and time at which Seam created the warning. */
|
|
7060
|
-
created_at?: string | undefined;
|
|
7061
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7062
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
7063
7019
|
} | {
|
|
7064
7020
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7065
7021
|
message: string;
|
|
@@ -7497,13 +7453,6 @@ export interface Routes {
|
|
|
7497
7453
|
created_at?: string | undefined;
|
|
7498
7454
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7499
7455
|
warning_code: 'schlage_detected_duplicate';
|
|
7500
|
-
} | {
|
|
7501
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7502
|
-
message: string;
|
|
7503
|
-
/** Date and time at which Seam created the warning. */
|
|
7504
|
-
created_at?: string | undefined;
|
|
7505
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7506
|
-
warning_code: 'schlage_detected_duplicate_code_name';
|
|
7507
7456
|
} | {
|
|
7508
7457
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7509
7458
|
message: string;
|
|
@@ -7868,6 +7817,7 @@ export interface Routes {
|
|
|
7868
7817
|
} | undefined;
|
|
7869
7818
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7870
7819
|
assa_abloy_vostio_metadata?: {
|
|
7820
|
+
auto_join?: boolean | undefined;
|
|
7871
7821
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7872
7822
|
key_id?: string | undefined;
|
|
7873
7823
|
key_issuing_request_id?: string | undefined;
|
|
@@ -7979,6 +7929,7 @@ export interface Routes {
|
|
|
7979
7929
|
} | undefined;
|
|
7980
7930
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
7981
7931
|
assa_abloy_vostio_metadata?: {
|
|
7932
|
+
auto_join?: boolean | undefined;
|
|
7982
7933
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7983
7934
|
key_id?: string | undefined;
|
|
7984
7935
|
key_issuing_request_id?: string | undefined;
|
|
@@ -8201,6 +8152,7 @@ export interface Routes {
|
|
|
8201
8152
|
} | undefined;
|
|
8202
8153
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
8203
8154
|
assa_abloy_vostio_metadata?: {
|
|
8155
|
+
auto_join?: boolean | undefined;
|
|
8204
8156
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8205
8157
|
key_id?: string | undefined;
|
|
8206
8158
|
key_issuing_request_id?: string | undefined;
|
|
@@ -8312,6 +8264,7 @@ export interface Routes {
|
|
|
8312
8264
|
} | undefined;
|
|
8313
8265
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
8314
8266
|
assa_abloy_vostio_metadata?: {
|
|
8267
|
+
auto_join?: boolean | undefined;
|
|
8315
8268
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8316
8269
|
key_id?: string | undefined;
|
|
8317
8270
|
key_issuing_request_id?: string | undefined;
|
|
@@ -9420,6 +9373,7 @@ export interface Routes {
|
|
|
9420
9373
|
} | undefined;
|
|
9421
9374
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9422
9375
|
assa_abloy_vostio_metadata?: {
|
|
9376
|
+
auto_join?: boolean | undefined;
|
|
9423
9377
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
9424
9378
|
key_id?: string | undefined;
|
|
9425
9379
|
key_issuing_request_id?: string | undefined;
|
|
@@ -9464,6 +9418,7 @@ export interface Routes {
|
|
|
9464
9418
|
} | undefined;
|
|
9465
9419
|
/** Vostio-specific metadata for the new credential. */
|
|
9466
9420
|
assa_abloy_vostio_metadata?: {
|
|
9421
|
+
auto_join?: boolean | undefined;
|
|
9467
9422
|
override_all_guest_acs_entrances?: boolean | undefined;
|
|
9468
9423
|
join_all_guest_acs_entrances?: boolean | undefined;
|
|
9469
9424
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
@@ -9589,6 +9544,7 @@ export interface Routes {
|
|
|
9589
9544
|
} | undefined;
|
|
9590
9545
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9591
9546
|
assa_abloy_vostio_metadata?: {
|
|
9547
|
+
auto_join?: boolean | undefined;
|
|
9592
9548
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
9593
9549
|
key_id?: string | undefined;
|
|
9594
9550
|
key_issuing_request_id?: string | undefined;
|
|
@@ -9727,6 +9683,7 @@ export interface Routes {
|
|
|
9727
9683
|
} | undefined;
|
|
9728
9684
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9729
9685
|
assa_abloy_vostio_metadata?: {
|
|
9686
|
+
auto_join?: boolean | undefined;
|
|
9730
9687
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
9731
9688
|
key_id?: string | undefined;
|
|
9732
9689
|
key_issuing_request_id?: string | undefined;
|
|
@@ -9869,6 +9826,7 @@ export interface Routes {
|
|
|
9869
9826
|
} | undefined;
|
|
9870
9827
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
9871
9828
|
assa_abloy_vostio_metadata?: {
|
|
9829
|
+
auto_join?: boolean | undefined;
|
|
9872
9830
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
9873
9831
|
key_id?: string | undefined;
|
|
9874
9832
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10012,6 +9970,7 @@ export interface Routes {
|
|
|
10012
9970
|
} | undefined;
|
|
10013
9971
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10014
9972
|
assa_abloy_vostio_metadata?: {
|
|
9973
|
+
auto_join?: boolean | undefined;
|
|
10015
9974
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10016
9975
|
key_id?: string | undefined;
|
|
10017
9976
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10219,6 +10178,7 @@ export interface Routes {
|
|
|
10219
10178
|
} | undefined;
|
|
10220
10179
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10221
10180
|
assa_abloy_vostio_metadata?: {
|
|
10181
|
+
auto_join?: boolean | undefined;
|
|
10222
10182
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10223
10183
|
key_id?: string | undefined;
|
|
10224
10184
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10345,6 +10305,7 @@ export interface Routes {
|
|
|
10345
10305
|
} | undefined;
|
|
10346
10306
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10347
10307
|
assa_abloy_vostio_metadata?: {
|
|
10308
|
+
auto_join?: boolean | undefined;
|
|
10348
10309
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10349
10310
|
key_id?: string | undefined;
|
|
10350
10311
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10481,6 +10442,7 @@ export interface Routes {
|
|
|
10481
10442
|
} | undefined;
|
|
10482
10443
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10483
10444
|
assa_abloy_vostio_metadata?: {
|
|
10445
|
+
auto_join?: boolean | undefined;
|
|
10484
10446
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10485
10447
|
key_id?: string | undefined;
|
|
10486
10448
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10615,6 +10577,7 @@ export interface Routes {
|
|
|
10615
10577
|
} | undefined;
|
|
10616
10578
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10617
10579
|
assa_abloy_vostio_metadata?: {
|
|
10580
|
+
auto_join?: boolean | undefined;
|
|
10618
10581
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10619
10582
|
key_id?: string | undefined;
|
|
10620
10583
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10856,6 +10819,7 @@ export interface Routes {
|
|
|
10856
10819
|
} | undefined;
|
|
10857
10820
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10858
10821
|
assa_abloy_vostio_metadata?: {
|
|
10822
|
+
auto_join?: boolean | undefined;
|
|
10859
10823
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10860
10824
|
key_id?: string | undefined;
|
|
10861
10825
|
key_issuing_request_id?: string | undefined;
|
|
@@ -10967,6 +10931,7 @@ export interface Routes {
|
|
|
10967
10931
|
} | undefined;
|
|
10968
10932
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
10969
10933
|
assa_abloy_vostio_metadata?: {
|
|
10934
|
+
auto_join?: boolean | undefined;
|
|
10970
10935
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
10971
10936
|
key_id?: string | undefined;
|
|
10972
10937
|
key_issuing_request_id?: string | undefined;
|
|
@@ -11189,6 +11154,7 @@ export interface Routes {
|
|
|
11189
11154
|
} | undefined;
|
|
11190
11155
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11191
11156
|
assa_abloy_vostio_metadata?: {
|
|
11157
|
+
auto_join?: boolean | undefined;
|
|
11192
11158
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11193
11159
|
key_id?: string | undefined;
|
|
11194
11160
|
key_issuing_request_id?: string | undefined;
|
|
@@ -11300,6 +11266,7 @@ export interface Routes {
|
|
|
11300
11266
|
} | undefined;
|
|
11301
11267
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11302
11268
|
assa_abloy_vostio_metadata?: {
|
|
11269
|
+
auto_join?: boolean | undefined;
|
|
11303
11270
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11304
11271
|
key_id?: string | undefined;
|
|
11305
11272
|
key_issuing_request_id?: string | undefined;
|
|
@@ -11970,6 +11937,7 @@ export interface Routes {
|
|
|
11970
11937
|
} | undefined;
|
|
11971
11938
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
11972
11939
|
assa_abloy_vostio_metadata?: {
|
|
11940
|
+
auto_join?: boolean | undefined;
|
|
11973
11941
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11974
11942
|
key_id?: string | undefined;
|
|
11975
11943
|
key_issuing_request_id?: string | undefined;
|
|
@@ -12081,6 +12049,7 @@ export interface Routes {
|
|
|
12081
12049
|
} | undefined;
|
|
12082
12050
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12083
12051
|
assa_abloy_vostio_metadata?: {
|
|
12052
|
+
auto_join?: boolean | undefined;
|
|
12084
12053
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
12085
12054
|
key_id?: string | undefined;
|
|
12086
12055
|
key_issuing_request_id?: string | undefined;
|
|
@@ -12303,6 +12272,7 @@ export interface Routes {
|
|
|
12303
12272
|
} | undefined;
|
|
12304
12273
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12305
12274
|
assa_abloy_vostio_metadata?: {
|
|
12275
|
+
auto_join?: boolean | undefined;
|
|
12306
12276
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
12307
12277
|
key_id?: string | undefined;
|
|
12308
12278
|
key_issuing_request_id?: string | undefined;
|
|
@@ -12414,6 +12384,7 @@ export interface Routes {
|
|
|
12414
12384
|
} | undefined;
|
|
12415
12385
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
12416
12386
|
assa_abloy_vostio_metadata?: {
|
|
12387
|
+
auto_join?: boolean | undefined;
|
|
12417
12388
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
12418
12389
|
key_id?: string | undefined;
|
|
12419
12390
|
key_issuing_request_id?: string | undefined;
|
|
@@ -13176,6 +13147,7 @@ export interface Routes {
|
|
|
13176
13147
|
} | undefined;
|
|
13177
13148
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13178
13149
|
assa_abloy_vostio_metadata?: {
|
|
13150
|
+
auto_join?: boolean | undefined;
|
|
13179
13151
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
13180
13152
|
key_id?: string | undefined;
|
|
13181
13153
|
key_issuing_request_id?: string | undefined;
|
|
@@ -13287,6 +13259,7 @@ export interface Routes {
|
|
|
13287
13259
|
} | undefined;
|
|
13288
13260
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13289
13261
|
assa_abloy_vostio_metadata?: {
|
|
13262
|
+
auto_join?: boolean | undefined;
|
|
13290
13263
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
13291
13264
|
key_id?: string | undefined;
|
|
13292
13265
|
key_issuing_request_id?: string | undefined;
|
|
@@ -13509,6 +13482,7 @@ export interface Routes {
|
|
|
13509
13482
|
} | undefined;
|
|
13510
13483
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13511
13484
|
assa_abloy_vostio_metadata?: {
|
|
13485
|
+
auto_join?: boolean | undefined;
|
|
13512
13486
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
13513
13487
|
key_id?: string | undefined;
|
|
13514
13488
|
key_issuing_request_id?: string | undefined;
|
|
@@ -13620,6 +13594,7 @@ export interface Routes {
|
|
|
13620
13594
|
} | undefined;
|
|
13621
13595
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
13622
13596
|
assa_abloy_vostio_metadata?: {
|
|
13597
|
+
auto_join?: boolean | undefined;
|
|
13623
13598
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
13624
13599
|
key_id?: string | undefined;
|
|
13625
13600
|
key_issuing_request_id?: string | undefined;
|
|
@@ -14419,6 +14394,7 @@ export interface Routes {
|
|
|
14419
14394
|
} | undefined;
|
|
14420
14395
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
14421
14396
|
assa_abloy_vostio_metadata?: {
|
|
14397
|
+
auto_join?: boolean | undefined;
|
|
14422
14398
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
14423
14399
|
key_id?: string | undefined;
|
|
14424
14400
|
key_issuing_request_id?: string | undefined;
|
|
@@ -16263,6 +16239,7 @@ export interface Routes {
|
|
|
16263
16239
|
} | undefined;
|
|
16264
16240
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16265
16241
|
assa_abloy_vostio_metadata?: {
|
|
16242
|
+
auto_join?: boolean | undefined;
|
|
16266
16243
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16267
16244
|
key_id?: string | undefined;
|
|
16268
16245
|
key_issuing_request_id?: string | undefined;
|
|
@@ -16374,6 +16351,7 @@ export interface Routes {
|
|
|
16374
16351
|
} | undefined;
|
|
16375
16352
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16376
16353
|
assa_abloy_vostio_metadata?: {
|
|
16354
|
+
auto_join?: boolean | undefined;
|
|
16377
16355
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16378
16356
|
key_id?: string | undefined;
|
|
16379
16357
|
key_issuing_request_id?: string | undefined;
|
|
@@ -16596,6 +16574,7 @@ export interface Routes {
|
|
|
16596
16574
|
} | undefined;
|
|
16597
16575
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16598
16576
|
assa_abloy_vostio_metadata?: {
|
|
16577
|
+
auto_join?: boolean | undefined;
|
|
16599
16578
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16600
16579
|
key_id?: string | undefined;
|
|
16601
16580
|
key_issuing_request_id?: string | undefined;
|
|
@@ -16707,6 +16686,7 @@ export interface Routes {
|
|
|
16707
16686
|
} | undefined;
|
|
16708
16687
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
16709
16688
|
assa_abloy_vostio_metadata?: {
|
|
16689
|
+
auto_join?: boolean | undefined;
|
|
16710
16690
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16711
16691
|
key_id?: string | undefined;
|
|
16712
16692
|
key_issuing_request_id?: string | undefined;
|
|
@@ -17373,6 +17353,7 @@ export interface Routes {
|
|
|
17373
17353
|
} | undefined;
|
|
17374
17354
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17375
17355
|
assa_abloy_vostio_metadata?: {
|
|
17356
|
+
auto_join?: boolean | undefined;
|
|
17376
17357
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17377
17358
|
key_id?: string | undefined;
|
|
17378
17359
|
key_issuing_request_id?: string | undefined;
|
|
@@ -17484,6 +17465,7 @@ export interface Routes {
|
|
|
17484
17465
|
} | undefined;
|
|
17485
17466
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17486
17467
|
assa_abloy_vostio_metadata?: {
|
|
17468
|
+
auto_join?: boolean | undefined;
|
|
17487
17469
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17488
17470
|
key_id?: string | undefined;
|
|
17489
17471
|
key_issuing_request_id?: string | undefined;
|
|
@@ -17706,6 +17688,7 @@ export interface Routes {
|
|
|
17706
17688
|
} | undefined;
|
|
17707
17689
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17708
17690
|
assa_abloy_vostio_metadata?: {
|
|
17691
|
+
auto_join?: boolean | undefined;
|
|
17709
17692
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17710
17693
|
key_id?: string | undefined;
|
|
17711
17694
|
key_issuing_request_id?: string | undefined;
|
|
@@ -17817,6 +17800,7 @@ export interface Routes {
|
|
|
17817
17800
|
} | undefined;
|
|
17818
17801
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
17819
17802
|
assa_abloy_vostio_metadata?: {
|
|
17803
|
+
auto_join?: boolean | undefined;
|
|
17820
17804
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17821
17805
|
key_id?: string | undefined;
|
|
17822
17806
|
key_issuing_request_id?: string | undefined;
|
|
@@ -27212,6 +27196,7 @@ export interface Routes {
|
|
|
27212
27196
|
} | undefined;
|
|
27213
27197
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
27214
27198
|
assa_abloy_vostio_metadata?: {
|
|
27199
|
+
auto_join?: boolean | undefined;
|
|
27215
27200
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27216
27201
|
key_id?: string | undefined;
|
|
27217
27202
|
key_issuing_request_id?: string | undefined;
|
|
@@ -27323,6 +27308,7 @@ export interface Routes {
|
|
|
27323
27308
|
} | undefined;
|
|
27324
27309
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
27325
27310
|
assa_abloy_vostio_metadata?: {
|
|
27311
|
+
auto_join?: boolean | undefined;
|
|
27326
27312
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27327
27313
|
key_id?: string | undefined;
|
|
27328
27314
|
key_issuing_request_id?: string | undefined;
|
|
@@ -27545,6 +27531,7 @@ export interface Routes {
|
|
|
27545
27531
|
} | undefined;
|
|
27546
27532
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
27547
27533
|
assa_abloy_vostio_metadata?: {
|
|
27534
|
+
auto_join?: boolean | undefined;
|
|
27548
27535
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27549
27536
|
key_id?: string | undefined;
|
|
27550
27537
|
key_issuing_request_id?: string | undefined;
|
|
@@ -27656,6 +27643,7 @@ export interface Routes {
|
|
|
27656
27643
|
} | undefined;
|
|
27657
27644
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
27658
27645
|
assa_abloy_vostio_metadata?: {
|
|
27646
|
+
auto_join?: boolean | undefined;
|
|
27659
27647
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27660
27648
|
key_id?: string | undefined;
|
|
27661
27649
|
key_issuing_request_id?: string | undefined;
|
|
@@ -28324,6 +28312,7 @@ export interface Routes {
|
|
|
28324
28312
|
} | undefined;
|
|
28325
28313
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
28326
28314
|
assa_abloy_vostio_metadata?: {
|
|
28315
|
+
auto_join?: boolean | undefined;
|
|
28327
28316
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28328
28317
|
key_id?: string | undefined;
|
|
28329
28318
|
key_issuing_request_id?: string | undefined;
|
|
@@ -28435,6 +28424,7 @@ export interface Routes {
|
|
|
28435
28424
|
} | undefined;
|
|
28436
28425
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
28437
28426
|
assa_abloy_vostio_metadata?: {
|
|
28427
|
+
auto_join?: boolean | undefined;
|
|
28438
28428
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28439
28429
|
key_id?: string | undefined;
|
|
28440
28430
|
key_issuing_request_id?: string | undefined;
|
|
@@ -28657,6 +28647,7 @@ export interface Routes {
|
|
|
28657
28647
|
} | undefined;
|
|
28658
28648
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
28659
28649
|
assa_abloy_vostio_metadata?: {
|
|
28650
|
+
auto_join?: boolean | undefined;
|
|
28660
28651
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28661
28652
|
key_id?: string | undefined;
|
|
28662
28653
|
key_issuing_request_id?: string | undefined;
|
|
@@ -28768,6 +28759,7 @@ export interface Routes {
|
|
|
28768
28759
|
} | undefined;
|
|
28769
28760
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
28770
28761
|
assa_abloy_vostio_metadata?: {
|
|
28762
|
+
auto_join?: boolean | undefined;
|
|
28771
28763
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28772
28764
|
key_id?: string | undefined;
|
|
28773
28765
|
key_issuing_request_id?: string | undefined;
|
|
@@ -29435,6 +29427,7 @@ export interface Routes {
|
|
|
29435
29427
|
} | undefined;
|
|
29436
29428
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
29437
29429
|
assa_abloy_vostio_metadata?: {
|
|
29430
|
+
auto_join?: boolean | undefined;
|
|
29438
29431
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29439
29432
|
key_id?: string | undefined;
|
|
29440
29433
|
key_issuing_request_id?: string | undefined;
|
|
@@ -29546,6 +29539,7 @@ export interface Routes {
|
|
|
29546
29539
|
} | undefined;
|
|
29547
29540
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
29548
29541
|
assa_abloy_vostio_metadata?: {
|
|
29542
|
+
auto_join?: boolean | undefined;
|
|
29549
29543
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29550
29544
|
key_id?: string | undefined;
|
|
29551
29545
|
key_issuing_request_id?: string | undefined;
|
|
@@ -29768,6 +29762,7 @@ export interface Routes {
|
|
|
29768
29762
|
} | undefined;
|
|
29769
29763
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
29770
29764
|
assa_abloy_vostio_metadata?: {
|
|
29765
|
+
auto_join?: boolean | undefined;
|
|
29771
29766
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29772
29767
|
key_id?: string | undefined;
|
|
29773
29768
|
key_issuing_request_id?: string | undefined;
|
|
@@ -29879,6 +29874,7 @@ export interface Routes {
|
|
|
29879
29874
|
} | undefined;
|
|
29880
29875
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
29881
29876
|
assa_abloy_vostio_metadata?: {
|
|
29877
|
+
auto_join?: boolean | undefined;
|
|
29882
29878
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29883
29879
|
key_id?: string | undefined;
|
|
29884
29880
|
key_issuing_request_id?: string | undefined;
|
|
@@ -30547,6 +30543,7 @@ export interface Routes {
|
|
|
30547
30543
|
} | undefined;
|
|
30548
30544
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
30549
30545
|
assa_abloy_vostio_metadata?: {
|
|
30546
|
+
auto_join?: boolean | undefined;
|
|
30550
30547
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
30551
30548
|
key_id?: string | undefined;
|
|
30552
30549
|
key_issuing_request_id?: string | undefined;
|
|
@@ -30658,6 +30655,7 @@ export interface Routes {
|
|
|
30658
30655
|
} | undefined;
|
|
30659
30656
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
30660
30657
|
assa_abloy_vostio_metadata?: {
|
|
30658
|
+
auto_join?: boolean | undefined;
|
|
30661
30659
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
30662
30660
|
key_id?: string | undefined;
|
|
30663
30661
|
key_issuing_request_id?: string | undefined;
|
|
@@ -30880,6 +30878,7 @@ export interface Routes {
|
|
|
30880
30878
|
} | undefined;
|
|
30881
30879
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
30882
30880
|
assa_abloy_vostio_metadata?: {
|
|
30881
|
+
auto_join?: boolean | undefined;
|
|
30883
30882
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
30884
30883
|
key_id?: string | undefined;
|
|
30885
30884
|
key_issuing_request_id?: string | undefined;
|
|
@@ -30991,6 +30990,7 @@ export interface Routes {
|
|
|
30991
30990
|
} | undefined;
|
|
30992
30991
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
30993
30992
|
assa_abloy_vostio_metadata?: {
|
|
30993
|
+
auto_join?: boolean | undefined;
|
|
30994
30994
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
30995
30995
|
key_id?: string | undefined;
|
|
30996
30996
|
key_issuing_request_id?: string | undefined;
|
|
@@ -33240,6 +33240,7 @@ export interface Routes {
|
|
|
33240
33240
|
} | undefined;
|
|
33241
33241
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33242
33242
|
assa_abloy_vostio_metadata?: {
|
|
33243
|
+
auto_join?: boolean | undefined;
|
|
33243
33244
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33244
33245
|
key_id?: string | undefined;
|
|
33245
33246
|
key_issuing_request_id?: string | undefined;
|
|
@@ -33351,6 +33352,7 @@ export interface Routes {
|
|
|
33351
33352
|
} | undefined;
|
|
33352
33353
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33353
33354
|
assa_abloy_vostio_metadata?: {
|
|
33355
|
+
auto_join?: boolean | undefined;
|
|
33354
33356
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33355
33357
|
key_id?: string | undefined;
|
|
33356
33358
|
key_issuing_request_id?: string | undefined;
|
|
@@ -33573,6 +33575,7 @@ export interface Routes {
|
|
|
33573
33575
|
} | undefined;
|
|
33574
33576
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33575
33577
|
assa_abloy_vostio_metadata?: {
|
|
33578
|
+
auto_join?: boolean | undefined;
|
|
33576
33579
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33577
33580
|
key_id?: string | undefined;
|
|
33578
33581
|
key_issuing_request_id?: string | undefined;
|
|
@@ -33684,6 +33687,7 @@ export interface Routes {
|
|
|
33684
33687
|
} | undefined;
|
|
33685
33688
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
33686
33689
|
assa_abloy_vostio_metadata?: {
|
|
33690
|
+
auto_join?: boolean | undefined;
|
|
33687
33691
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33688
33692
|
key_id?: string | undefined;
|
|
33689
33693
|
key_issuing_request_id?: string | undefined;
|
|
@@ -34363,6 +34367,7 @@ export interface Routes {
|
|
|
34363
34367
|
} | undefined;
|
|
34364
34368
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34365
34369
|
assa_abloy_vostio_metadata?: {
|
|
34370
|
+
auto_join?: boolean | undefined;
|
|
34366
34371
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
34367
34372
|
key_id?: string | undefined;
|
|
34368
34373
|
key_issuing_request_id?: string | undefined;
|
|
@@ -34474,6 +34479,7 @@ export interface Routes {
|
|
|
34474
34479
|
} | undefined;
|
|
34475
34480
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34476
34481
|
assa_abloy_vostio_metadata?: {
|
|
34482
|
+
auto_join?: boolean | undefined;
|
|
34477
34483
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
34478
34484
|
key_id?: string | undefined;
|
|
34479
34485
|
key_issuing_request_id?: string | undefined;
|
|
@@ -34696,6 +34702,7 @@ export interface Routes {
|
|
|
34696
34702
|
} | undefined;
|
|
34697
34703
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34698
34704
|
assa_abloy_vostio_metadata?: {
|
|
34705
|
+
auto_join?: boolean | undefined;
|
|
34699
34706
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
34700
34707
|
key_id?: string | undefined;
|
|
34701
34708
|
key_issuing_request_id?: string | undefined;
|
|
@@ -34807,6 +34814,7 @@ export interface Routes {
|
|
|
34807
34814
|
} | undefined;
|
|
34808
34815
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
34809
34816
|
assa_abloy_vostio_metadata?: {
|
|
34817
|
+
auto_join?: boolean | undefined;
|
|
34810
34818
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
34811
34819
|
key_id?: string | undefined;
|
|
34812
34820
|
key_issuing_request_id?: string | undefined;
|
|
@@ -35525,6 +35533,7 @@ export interface Routes {
|
|
|
35525
35533
|
} | undefined;
|
|
35526
35534
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35527
35535
|
assa_abloy_vostio_metadata?: {
|
|
35536
|
+
auto_join?: boolean | undefined;
|
|
35528
35537
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35529
35538
|
key_id?: string | undefined;
|
|
35530
35539
|
key_issuing_request_id?: string | undefined;
|
|
@@ -35636,6 +35645,7 @@ export interface Routes {
|
|
|
35636
35645
|
} | undefined;
|
|
35637
35646
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35638
35647
|
assa_abloy_vostio_metadata?: {
|
|
35648
|
+
auto_join?: boolean | undefined;
|
|
35639
35649
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35640
35650
|
key_id?: string | undefined;
|
|
35641
35651
|
key_issuing_request_id?: string | undefined;
|
|
@@ -35858,6 +35868,7 @@ export interface Routes {
|
|
|
35858
35868
|
} | undefined;
|
|
35859
35869
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35860
35870
|
assa_abloy_vostio_metadata?: {
|
|
35871
|
+
auto_join?: boolean | undefined;
|
|
35861
35872
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35862
35873
|
key_id?: string | undefined;
|
|
35863
35874
|
key_issuing_request_id?: string | undefined;
|
|
@@ -35969,6 +35980,7 @@ export interface Routes {
|
|
|
35969
35980
|
} | undefined;
|
|
35970
35981
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
35971
35982
|
assa_abloy_vostio_metadata?: {
|
|
35983
|
+
auto_join?: boolean | undefined;
|
|
35972
35984
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35973
35985
|
key_id?: string | undefined;
|
|
35974
35986
|
key_issuing_request_id?: string | undefined;
|
|
@@ -37121,6 +37133,7 @@ export interface Routes {
|
|
|
37121
37133
|
} | undefined;
|
|
37122
37134
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37123
37135
|
assa_abloy_vostio_metadata?: {
|
|
37136
|
+
auto_join?: boolean | undefined;
|
|
37124
37137
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
37125
37138
|
key_id?: string | undefined;
|
|
37126
37139
|
key_issuing_request_id?: string | undefined;
|
|
@@ -37232,6 +37245,7 @@ export interface Routes {
|
|
|
37232
37245
|
} | undefined;
|
|
37233
37246
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37234
37247
|
assa_abloy_vostio_metadata?: {
|
|
37248
|
+
auto_join?: boolean | undefined;
|
|
37235
37249
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
37236
37250
|
key_id?: string | undefined;
|
|
37237
37251
|
key_issuing_request_id?: string | undefined;
|
|
@@ -37454,6 +37468,7 @@ export interface Routes {
|
|
|
37454
37468
|
} | undefined;
|
|
37455
37469
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37456
37470
|
assa_abloy_vostio_metadata?: {
|
|
37471
|
+
auto_join?: boolean | undefined;
|
|
37457
37472
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
37458
37473
|
key_id?: string | undefined;
|
|
37459
37474
|
key_issuing_request_id?: string | undefined;
|
|
@@ -37565,6 +37580,7 @@ export interface Routes {
|
|
|
37565
37580
|
} | undefined;
|
|
37566
37581
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
37567
37582
|
assa_abloy_vostio_metadata?: {
|
|
37583
|
+
auto_join?: boolean | undefined;
|
|
37568
37584
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
37569
37585
|
key_id?: string | undefined;
|
|
37570
37586
|
key_issuing_request_id?: string | undefined;
|
|
@@ -38168,7 +38184,7 @@ export interface Routes {
|
|
|
38168
38184
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
38169
38185
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38170
38186
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38171
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
38187
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
38172
38188
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
38173
38189
|
external_type_display_name?: string | undefined;
|
|
38174
38190
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -38279,7 +38295,7 @@ export interface Routes {
|
|
|
38279
38295
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
38280
38296
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38281
38297
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38282
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
38298
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
38283
38299
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
38284
38300
|
external_type_display_name?: string | undefined;
|
|
38285
38301
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -38501,7 +38517,7 @@ export interface Routes {
|
|
|
38501
38517
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
38502
38518
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38503
38519
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38504
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
38520
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
38505
38521
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
38506
38522
|
external_type_display_name?: string | undefined;
|
|
38507
38523
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -38612,7 +38628,7 @@ export interface Routes {
|
|
|
38612
38628
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
38613
38629
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
38614
38630
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
38615
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
38631
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
38616
38632
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
38617
38633
|
external_type_display_name?: string | undefined;
|
|
38618
38634
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -39280,7 +39296,7 @@ export interface Routes {
|
|
|
39280
39296
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
39281
39297
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39282
39298
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39283
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
39299
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
39284
39300
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
39285
39301
|
external_type_display_name?: string | undefined;
|
|
39286
39302
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -39391,7 +39407,7 @@ export interface Routes {
|
|
|
39391
39407
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
39392
39408
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39393
39409
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39394
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
39410
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
39395
39411
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
39396
39412
|
external_type_display_name?: string | undefined;
|
|
39397
39413
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -39613,7 +39629,7 @@ export interface Routes {
|
|
|
39613
39629
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
39614
39630
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39615
39631
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39616
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
39632
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
39617
39633
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
39618
39634
|
external_type_display_name?: string | undefined;
|
|
39619
39635
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -39724,7 +39740,7 @@ export interface Routes {
|
|
|
39724
39740
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
39725
39741
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
39726
39742
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
39727
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
39743
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
39728
39744
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
39729
39745
|
external_type_display_name?: string | undefined;
|
|
39730
39746
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -40477,6 +40493,7 @@ export interface Routes {
|
|
|
40477
40493
|
} | undefined;
|
|
40478
40494
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40479
40495
|
assa_abloy_vostio_metadata?: {
|
|
40496
|
+
auto_join?: boolean | undefined;
|
|
40480
40497
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40481
40498
|
key_id?: string | undefined;
|
|
40482
40499
|
key_issuing_request_id?: string | undefined;
|
|
@@ -40588,6 +40605,7 @@ export interface Routes {
|
|
|
40588
40605
|
} | undefined;
|
|
40589
40606
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40590
40607
|
assa_abloy_vostio_metadata?: {
|
|
40608
|
+
auto_join?: boolean | undefined;
|
|
40591
40609
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40592
40610
|
key_id?: string | undefined;
|
|
40593
40611
|
key_issuing_request_id?: string | undefined;
|
|
@@ -40810,6 +40828,7 @@ export interface Routes {
|
|
|
40810
40828
|
} | undefined;
|
|
40811
40829
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40812
40830
|
assa_abloy_vostio_metadata?: {
|
|
40831
|
+
auto_join?: boolean | undefined;
|
|
40813
40832
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40814
40833
|
key_id?: string | undefined;
|
|
40815
40834
|
key_issuing_request_id?: string | undefined;
|
|
@@ -40921,6 +40940,7 @@ export interface Routes {
|
|
|
40921
40940
|
} | undefined;
|
|
40922
40941
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
40923
40942
|
assa_abloy_vostio_metadata?: {
|
|
40943
|
+
auto_join?: boolean | undefined;
|
|
40924
40944
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40925
40945
|
key_id?: string | undefined;
|
|
40926
40946
|
key_issuing_request_id?: string | undefined;
|
|
@@ -41601,7 +41621,7 @@ export interface Routes {
|
|
|
41601
41621
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
41602
41622
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41603
41623
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41604
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
41624
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
41605
41625
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
41606
41626
|
external_type_display_name?: string | undefined;
|
|
41607
41627
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -41712,7 +41732,7 @@ export interface Routes {
|
|
|
41712
41732
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
41713
41733
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41714
41734
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41715
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
41735
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
41716
41736
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
41717
41737
|
external_type_display_name?: string | undefined;
|
|
41718
41738
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -41934,7 +41954,7 @@ export interface Routes {
|
|
|
41934
41954
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
41935
41955
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
41936
41956
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
41937
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
41957
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
41938
41958
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
41939
41959
|
external_type_display_name?: string | undefined;
|
|
41940
41960
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -42045,7 +42065,7 @@ export interface Routes {
|
|
|
42045
42065
|
/** Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`. */
|
|
42046
42066
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
42047
42067
|
/** Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
42048
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
42068
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key' | 'latch_access') | undefined;
|
|
42049
42069
|
/** Display name that corresponds to the brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. */
|
|
42050
42070
|
external_type_display_name?: string | undefined;
|
|
42051
42071
|
/** Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created. */
|
|
@@ -43578,6 +43598,7 @@ export interface Routes {
|
|
|
43578
43598
|
} | undefined;
|
|
43579
43599
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43580
43600
|
assa_abloy_vostio_metadata?: {
|
|
43601
|
+
auto_join?: boolean | undefined;
|
|
43581
43602
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
43582
43603
|
key_id?: string | undefined;
|
|
43583
43604
|
key_issuing_request_id?: string | undefined;
|
|
@@ -43689,6 +43710,7 @@ export interface Routes {
|
|
|
43689
43710
|
} | undefined;
|
|
43690
43711
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43691
43712
|
assa_abloy_vostio_metadata?: {
|
|
43713
|
+
auto_join?: boolean | undefined;
|
|
43692
43714
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
43693
43715
|
key_id?: string | undefined;
|
|
43694
43716
|
key_issuing_request_id?: string | undefined;
|
|
@@ -43911,6 +43933,7 @@ export interface Routes {
|
|
|
43911
43933
|
} | undefined;
|
|
43912
43934
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
43913
43935
|
assa_abloy_vostio_metadata?: {
|
|
43936
|
+
auto_join?: boolean | undefined;
|
|
43914
43937
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
43915
43938
|
key_id?: string | undefined;
|
|
43916
43939
|
key_issuing_request_id?: string | undefined;
|
|
@@ -44022,6 +44045,7 @@ export interface Routes {
|
|
|
44022
44045
|
} | undefined;
|
|
44023
44046
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44024
44047
|
assa_abloy_vostio_metadata?: {
|
|
44048
|
+
auto_join?: boolean | undefined;
|
|
44025
44049
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44026
44050
|
key_id?: string | undefined;
|
|
44027
44051
|
key_issuing_request_id?: string | undefined;
|
|
@@ -44700,6 +44724,7 @@ export interface Routes {
|
|
|
44700
44724
|
} | undefined;
|
|
44701
44725
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44702
44726
|
assa_abloy_vostio_metadata?: {
|
|
44727
|
+
auto_join?: boolean | undefined;
|
|
44703
44728
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44704
44729
|
key_id?: string | undefined;
|
|
44705
44730
|
key_issuing_request_id?: string | undefined;
|
|
@@ -44811,6 +44836,7 @@ export interface Routes {
|
|
|
44811
44836
|
} | undefined;
|
|
44812
44837
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
44813
44838
|
assa_abloy_vostio_metadata?: {
|
|
44839
|
+
auto_join?: boolean | undefined;
|
|
44814
44840
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
44815
44841
|
key_id?: string | undefined;
|
|
44816
44842
|
key_issuing_request_id?: string | undefined;
|
|
@@ -45033,6 +45059,7 @@ export interface Routes {
|
|
|
45033
45059
|
} | undefined;
|
|
45034
45060
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
45035
45061
|
assa_abloy_vostio_metadata?: {
|
|
45062
|
+
auto_join?: boolean | undefined;
|
|
45036
45063
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45037
45064
|
key_id?: string | undefined;
|
|
45038
45065
|
key_issuing_request_id?: string | undefined;
|
|
@@ -45144,6 +45171,7 @@ export interface Routes {
|
|
|
45144
45171
|
} | undefined;
|
|
45145
45172
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
45146
45173
|
assa_abloy_vostio_metadata?: {
|
|
45174
|
+
auto_join?: boolean | undefined;
|
|
45147
45175
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45148
45176
|
key_id?: string | undefined;
|
|
45149
45177
|
key_issuing_request_id?: string | undefined;
|
|
@@ -47355,6 +47383,7 @@ export interface Routes {
|
|
|
47355
47383
|
} | undefined;
|
|
47356
47384
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47357
47385
|
assa_abloy_vostio_metadata?: {
|
|
47386
|
+
auto_join?: boolean | undefined;
|
|
47358
47387
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47359
47388
|
key_id?: string | undefined;
|
|
47360
47389
|
key_issuing_request_id?: string | undefined;
|
|
@@ -47466,6 +47495,7 @@ export interface Routes {
|
|
|
47466
47495
|
} | undefined;
|
|
47467
47496
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47468
47497
|
assa_abloy_vostio_metadata?: {
|
|
47498
|
+
auto_join?: boolean | undefined;
|
|
47469
47499
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47470
47500
|
key_id?: string | undefined;
|
|
47471
47501
|
key_issuing_request_id?: string | undefined;
|
|
@@ -47688,6 +47718,7 @@ export interface Routes {
|
|
|
47688
47718
|
} | undefined;
|
|
47689
47719
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47690
47720
|
assa_abloy_vostio_metadata?: {
|
|
47721
|
+
auto_join?: boolean | undefined;
|
|
47691
47722
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47692
47723
|
key_id?: string | undefined;
|
|
47693
47724
|
key_issuing_request_id?: string | undefined;
|
|
@@ -47799,6 +47830,7 @@ export interface Routes {
|
|
|
47799
47830
|
} | undefined;
|
|
47800
47831
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
47801
47832
|
assa_abloy_vostio_metadata?: {
|
|
47833
|
+
auto_join?: boolean | undefined;
|
|
47802
47834
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
47803
47835
|
key_id?: string | undefined;
|
|
47804
47836
|
key_issuing_request_id?: string | undefined;
|
|
@@ -48659,6 +48691,7 @@ export interface Routes {
|
|
|
48659
48691
|
} | undefined;
|
|
48660
48692
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48661
48693
|
assa_abloy_vostio_metadata?: {
|
|
48694
|
+
auto_join?: boolean | undefined;
|
|
48662
48695
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48663
48696
|
key_id?: string | undefined;
|
|
48664
48697
|
key_issuing_request_id?: string | undefined;
|
|
@@ -48770,6 +48803,7 @@ export interface Routes {
|
|
|
48770
48803
|
} | undefined;
|
|
48771
48804
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48772
48805
|
assa_abloy_vostio_metadata?: {
|
|
48806
|
+
auto_join?: boolean | undefined;
|
|
48773
48807
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48774
48808
|
key_id?: string | undefined;
|
|
48775
48809
|
key_issuing_request_id?: string | undefined;
|
|
@@ -48992,6 +49026,7 @@ export interface Routes {
|
|
|
48992
49026
|
} | undefined;
|
|
48993
49027
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
48994
49028
|
assa_abloy_vostio_metadata?: {
|
|
49029
|
+
auto_join?: boolean | undefined;
|
|
48995
49030
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
48996
49031
|
key_id?: string | undefined;
|
|
48997
49032
|
key_issuing_request_id?: string | undefined;
|
|
@@ -49103,6 +49138,7 @@ export interface Routes {
|
|
|
49103
49138
|
} | undefined;
|
|
49104
49139
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49105
49140
|
assa_abloy_vostio_metadata?: {
|
|
49141
|
+
auto_join?: boolean | undefined;
|
|
49106
49142
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49107
49143
|
key_id?: string | undefined;
|
|
49108
49144
|
key_issuing_request_id?: string | undefined;
|
|
@@ -49800,6 +49836,7 @@ export interface Routes {
|
|
|
49800
49836
|
} | undefined;
|
|
49801
49837
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49802
49838
|
assa_abloy_vostio_metadata?: {
|
|
49839
|
+
auto_join?: boolean | undefined;
|
|
49803
49840
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49804
49841
|
key_id?: string | undefined;
|
|
49805
49842
|
key_issuing_request_id?: string | undefined;
|
|
@@ -49911,6 +49948,7 @@ export interface Routes {
|
|
|
49911
49948
|
} | undefined;
|
|
49912
49949
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
49913
49950
|
assa_abloy_vostio_metadata?: {
|
|
49951
|
+
auto_join?: boolean | undefined;
|
|
49914
49952
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
49915
49953
|
key_id?: string | undefined;
|
|
49916
49954
|
key_issuing_request_id?: string | undefined;
|
|
@@ -50133,6 +50171,7 @@ export interface Routes {
|
|
|
50133
50171
|
} | undefined;
|
|
50134
50172
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50135
50173
|
assa_abloy_vostio_metadata?: {
|
|
50174
|
+
auto_join?: boolean | undefined;
|
|
50136
50175
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
50137
50176
|
key_id?: string | undefined;
|
|
50138
50177
|
key_issuing_request_id?: string | undefined;
|
|
@@ -50244,6 +50283,7 @@ export interface Routes {
|
|
|
50244
50283
|
} | undefined;
|
|
50245
50284
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
50246
50285
|
assa_abloy_vostio_metadata?: {
|
|
50286
|
+
auto_join?: boolean | undefined;
|
|
50247
50287
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
50248
50288
|
key_id?: string | undefined;
|
|
50249
50289
|
key_issuing_request_id?: string | undefined;
|
|
@@ -53771,6 +53811,7 @@ export interface Routes {
|
|
|
53771
53811
|
} | undefined;
|
|
53772
53812
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53773
53813
|
assa_abloy_vostio_metadata?: {
|
|
53814
|
+
auto_join?: boolean | undefined;
|
|
53774
53815
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53775
53816
|
key_id?: string | undefined;
|
|
53776
53817
|
key_issuing_request_id?: string | undefined;
|
|
@@ -53882,6 +53923,7 @@ export interface Routes {
|
|
|
53882
53923
|
} | undefined;
|
|
53883
53924
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
53884
53925
|
assa_abloy_vostio_metadata?: {
|
|
53926
|
+
auto_join?: boolean | undefined;
|
|
53885
53927
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53886
53928
|
key_id?: string | undefined;
|
|
53887
53929
|
key_issuing_request_id?: string | undefined;
|
|
@@ -54104,6 +54146,7 @@ export interface Routes {
|
|
|
54104
54146
|
} | undefined;
|
|
54105
54147
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
54106
54148
|
assa_abloy_vostio_metadata?: {
|
|
54149
|
+
auto_join?: boolean | undefined;
|
|
54107
54150
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54108
54151
|
key_id?: string | undefined;
|
|
54109
54152
|
key_issuing_request_id?: string | undefined;
|
|
@@ -54215,6 +54258,7 @@ export interface Routes {
|
|
|
54215
54258
|
} | undefined;
|
|
54216
54259
|
/** Vostio-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). */
|
|
54217
54260
|
assa_abloy_vostio_metadata?: {
|
|
54261
|
+
auto_join?: boolean | undefined;
|
|
54218
54262
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54219
54263
|
key_id?: string | undefined;
|
|
54220
54264
|
key_issuing_request_id?: string | undefined;
|