@seamapi/types 1.333.0 → 1.334.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 +125 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1169 -0
- package/lib/seam/connect/models/acs/acs-credential.d.ts +66 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +20 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +7 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +216 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +94 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +122 -0
- package/lib/seam/connect/openapi.d.ts +135 -0
- package/lib/seam/connect/openapi.js +116 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +752 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +122 -0
- package/src/lib/seam/connect/route-types.ts +1024 -0
|
@@ -250,6 +250,18 @@ export interface Routes {
|
|
|
250
250
|
credential_id?: string | undefined
|
|
251
251
|
}
|
|
252
252
|
| undefined
|
|
253
|
+
/** Vostio-specific metadata for the credential. */
|
|
254
|
+
assa_abloy_vostio_metadata?:
|
|
255
|
+
| {
|
|
256
|
+
override_guest_acs_entrance_ids?:
|
|
257
|
+
| string[]
|
|
258
|
+
| undefined
|
|
259
|
+
key_id?: string | undefined
|
|
260
|
+
key_issuing_request_id?: string | undefined
|
|
261
|
+
door_names?: string[] | undefined
|
|
262
|
+
endpoint_id?: string | undefined
|
|
263
|
+
}
|
|
264
|
+
| undefined
|
|
253
265
|
is_managed: true
|
|
254
266
|
}
|
|
255
267
|
| {
|
|
@@ -374,6 +386,18 @@ export interface Routes {
|
|
|
374
386
|
credential_id?: string | undefined
|
|
375
387
|
}
|
|
376
388
|
| undefined
|
|
389
|
+
/** Vostio-specific metadata for the credential. */
|
|
390
|
+
assa_abloy_vostio_metadata?:
|
|
391
|
+
| {
|
|
392
|
+
override_guest_acs_entrance_ids?:
|
|
393
|
+
| string[]
|
|
394
|
+
| undefined
|
|
395
|
+
key_id?: string | undefined
|
|
396
|
+
key_issuing_request_id?: string | undefined
|
|
397
|
+
door_names?: string[] | undefined
|
|
398
|
+
endpoint_id?: string | undefined
|
|
399
|
+
}
|
|
400
|
+
| undefined
|
|
377
401
|
is_managed: false
|
|
378
402
|
}
|
|
379
403
|
)
|
|
@@ -545,6 +569,16 @@ export interface Routes {
|
|
|
545
569
|
credential_id?: string | undefined
|
|
546
570
|
}
|
|
547
571
|
| undefined
|
|
572
|
+
/** Vostio-specific metadata for the credential. */
|
|
573
|
+
assa_abloy_vostio_metadata?:
|
|
574
|
+
| {
|
|
575
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
576
|
+
key_id?: string | undefined
|
|
577
|
+
key_issuing_request_id?: string | undefined
|
|
578
|
+
door_names?: string[] | undefined
|
|
579
|
+
endpoint_id?: string | undefined
|
|
580
|
+
}
|
|
581
|
+
| undefined
|
|
548
582
|
is_managed: true
|
|
549
583
|
}
|
|
550
584
|
| {
|
|
@@ -669,6 +703,16 @@ export interface Routes {
|
|
|
669
703
|
credential_id?: string | undefined
|
|
670
704
|
}
|
|
671
705
|
| undefined
|
|
706
|
+
/** Vostio-specific metadata for the credential. */
|
|
707
|
+
assa_abloy_vostio_metadata?:
|
|
708
|
+
| {
|
|
709
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
710
|
+
key_id?: string | undefined
|
|
711
|
+
key_issuing_request_id?: string | undefined
|
|
712
|
+
door_names?: string[] | undefined
|
|
713
|
+
endpoint_id?: string | undefined
|
|
714
|
+
}
|
|
715
|
+
| undefined
|
|
672
716
|
is_managed: false
|
|
673
717
|
}
|
|
674
718
|
}
|
|
@@ -1884,6 +1928,18 @@ export interface Routes {
|
|
|
1884
1928
|
credential_id?: string | undefined
|
|
1885
1929
|
}
|
|
1886
1930
|
| undefined
|
|
1931
|
+
/** Vostio-specific metadata for the credential. */
|
|
1932
|
+
assa_abloy_vostio_metadata?:
|
|
1933
|
+
| {
|
|
1934
|
+
override_guest_acs_entrance_ids?:
|
|
1935
|
+
| string[]
|
|
1936
|
+
| undefined
|
|
1937
|
+
key_id?: string | undefined
|
|
1938
|
+
key_issuing_request_id?: string | undefined
|
|
1939
|
+
door_names?: string[] | undefined
|
|
1940
|
+
endpoint_id?: string | undefined
|
|
1941
|
+
}
|
|
1942
|
+
| undefined
|
|
1887
1943
|
is_managed: true
|
|
1888
1944
|
}
|
|
1889
1945
|
| {
|
|
@@ -2008,6 +2064,18 @@ export interface Routes {
|
|
|
2008
2064
|
credential_id?: string | undefined
|
|
2009
2065
|
}
|
|
2010
2066
|
| undefined
|
|
2067
|
+
/** Vostio-specific metadata for the credential. */
|
|
2068
|
+
assa_abloy_vostio_metadata?:
|
|
2069
|
+
| {
|
|
2070
|
+
override_guest_acs_entrance_ids?:
|
|
2071
|
+
| string[]
|
|
2072
|
+
| undefined
|
|
2073
|
+
key_id?: string | undefined
|
|
2074
|
+
key_issuing_request_id?: string | undefined
|
|
2075
|
+
door_names?: string[] | undefined
|
|
2076
|
+
endpoint_id?: string | undefined
|
|
2077
|
+
}
|
|
2078
|
+
| undefined
|
|
2011
2079
|
is_managed: false
|
|
2012
2080
|
}
|
|
2013
2081
|
)
|
|
@@ -2179,6 +2247,16 @@ export interface Routes {
|
|
|
2179
2247
|
credential_id?: string | undefined
|
|
2180
2248
|
}
|
|
2181
2249
|
| undefined
|
|
2250
|
+
/** Vostio-specific metadata for the credential. */
|
|
2251
|
+
assa_abloy_vostio_metadata?:
|
|
2252
|
+
| {
|
|
2253
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
2254
|
+
key_id?: string | undefined
|
|
2255
|
+
key_issuing_request_id?: string | undefined
|
|
2256
|
+
door_names?: string[] | undefined
|
|
2257
|
+
endpoint_id?: string | undefined
|
|
2258
|
+
}
|
|
2259
|
+
| undefined
|
|
2182
2260
|
is_managed: true
|
|
2183
2261
|
}
|
|
2184
2262
|
| {
|
|
@@ -2303,6 +2381,16 @@ export interface Routes {
|
|
|
2303
2381
|
credential_id?: string | undefined
|
|
2304
2382
|
}
|
|
2305
2383
|
| undefined
|
|
2384
|
+
/** Vostio-specific metadata for the credential. */
|
|
2385
|
+
assa_abloy_vostio_metadata?:
|
|
2386
|
+
| {
|
|
2387
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
2388
|
+
key_id?: string | undefined
|
|
2389
|
+
key_issuing_request_id?: string | undefined
|
|
2390
|
+
door_names?: string[] | undefined
|
|
2391
|
+
endpoint_id?: string | undefined
|
|
2392
|
+
}
|
|
2393
|
+
| undefined
|
|
2306
2394
|
is_managed: false
|
|
2307
2395
|
}
|
|
2308
2396
|
}
|
|
@@ -4480,6 +4568,18 @@ export interface Routes {
|
|
|
4480
4568
|
credential_id?: string | undefined
|
|
4481
4569
|
}
|
|
4482
4570
|
| undefined
|
|
4571
|
+
/** Vostio-specific metadata for the credential. */
|
|
4572
|
+
assa_abloy_vostio_metadata?:
|
|
4573
|
+
| {
|
|
4574
|
+
override_guest_acs_entrance_ids?:
|
|
4575
|
+
| string[]
|
|
4576
|
+
| undefined
|
|
4577
|
+
key_id?: string | undefined
|
|
4578
|
+
key_issuing_request_id?: string | undefined
|
|
4579
|
+
door_names?: string[] | undefined
|
|
4580
|
+
endpoint_id?: string | undefined
|
|
4581
|
+
}
|
|
4582
|
+
| undefined
|
|
4483
4583
|
is_managed: true
|
|
4484
4584
|
}
|
|
4485
4585
|
| {
|
|
@@ -4604,6 +4704,18 @@ export interface Routes {
|
|
|
4604
4704
|
credential_id?: string | undefined
|
|
4605
4705
|
}
|
|
4606
4706
|
| undefined
|
|
4707
|
+
/** Vostio-specific metadata for the credential. */
|
|
4708
|
+
assa_abloy_vostio_metadata?:
|
|
4709
|
+
| {
|
|
4710
|
+
override_guest_acs_entrance_ids?:
|
|
4711
|
+
| string[]
|
|
4712
|
+
| undefined
|
|
4713
|
+
key_id?: string | undefined
|
|
4714
|
+
key_issuing_request_id?: string | undefined
|
|
4715
|
+
door_names?: string[] | undefined
|
|
4716
|
+
endpoint_id?: string | undefined
|
|
4717
|
+
}
|
|
4718
|
+
| undefined
|
|
4607
4719
|
is_managed: false
|
|
4608
4720
|
}
|
|
4609
4721
|
)
|
|
@@ -4775,6 +4887,16 @@ export interface Routes {
|
|
|
4775
4887
|
credential_id?: string | undefined
|
|
4776
4888
|
}
|
|
4777
4889
|
| undefined
|
|
4890
|
+
/** Vostio-specific metadata for the credential. */
|
|
4891
|
+
assa_abloy_vostio_metadata?:
|
|
4892
|
+
| {
|
|
4893
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
4894
|
+
key_id?: string | undefined
|
|
4895
|
+
key_issuing_request_id?: string | undefined
|
|
4896
|
+
door_names?: string[] | undefined
|
|
4897
|
+
endpoint_id?: string | undefined
|
|
4898
|
+
}
|
|
4899
|
+
| undefined
|
|
4778
4900
|
is_managed: true
|
|
4779
4901
|
}
|
|
4780
4902
|
| {
|
|
@@ -4899,6 +5021,16 @@ export interface Routes {
|
|
|
4899
5021
|
credential_id?: string | undefined
|
|
4900
5022
|
}
|
|
4901
5023
|
| undefined
|
|
5024
|
+
/** Vostio-specific metadata for the credential. */
|
|
5025
|
+
assa_abloy_vostio_metadata?:
|
|
5026
|
+
| {
|
|
5027
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
5028
|
+
key_id?: string | undefined
|
|
5029
|
+
key_issuing_request_id?: string | undefined
|
|
5030
|
+
door_names?: string[] | undefined
|
|
5031
|
+
endpoint_id?: string | undefined
|
|
5032
|
+
}
|
|
5033
|
+
| undefined
|
|
4902
5034
|
is_managed: false
|
|
4903
5035
|
}
|
|
4904
5036
|
}
|
|
@@ -6101,6 +6233,18 @@ export interface Routes {
|
|
|
6101
6233
|
credential_id?: string | undefined
|
|
6102
6234
|
}
|
|
6103
6235
|
| undefined
|
|
6236
|
+
/** Vostio-specific metadata for the credential. */
|
|
6237
|
+
assa_abloy_vostio_metadata?:
|
|
6238
|
+
| {
|
|
6239
|
+
override_guest_acs_entrance_ids?:
|
|
6240
|
+
| string[]
|
|
6241
|
+
| undefined
|
|
6242
|
+
key_id?: string | undefined
|
|
6243
|
+
key_issuing_request_id?: string | undefined
|
|
6244
|
+
door_names?: string[] | undefined
|
|
6245
|
+
endpoint_id?: string | undefined
|
|
6246
|
+
}
|
|
6247
|
+
| undefined
|
|
6104
6248
|
is_managed: true
|
|
6105
6249
|
}
|
|
6106
6250
|
| {
|
|
@@ -6225,6 +6369,18 @@ export interface Routes {
|
|
|
6225
6369
|
credential_id?: string | undefined
|
|
6226
6370
|
}
|
|
6227
6371
|
| undefined
|
|
6372
|
+
/** Vostio-specific metadata for the credential. */
|
|
6373
|
+
assa_abloy_vostio_metadata?:
|
|
6374
|
+
| {
|
|
6375
|
+
override_guest_acs_entrance_ids?:
|
|
6376
|
+
| string[]
|
|
6377
|
+
| undefined
|
|
6378
|
+
key_id?: string | undefined
|
|
6379
|
+
key_issuing_request_id?: string | undefined
|
|
6380
|
+
door_names?: string[] | undefined
|
|
6381
|
+
endpoint_id?: string | undefined
|
|
6382
|
+
}
|
|
6383
|
+
| undefined
|
|
6228
6384
|
is_managed: false
|
|
6229
6385
|
}
|
|
6230
6386
|
)
|
|
@@ -6396,6 +6552,16 @@ export interface Routes {
|
|
|
6396
6552
|
credential_id?: string | undefined
|
|
6397
6553
|
}
|
|
6398
6554
|
| undefined
|
|
6555
|
+
/** Vostio-specific metadata for the credential. */
|
|
6556
|
+
assa_abloy_vostio_metadata?:
|
|
6557
|
+
| {
|
|
6558
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
6559
|
+
key_id?: string | undefined
|
|
6560
|
+
key_issuing_request_id?: string | undefined
|
|
6561
|
+
door_names?: string[] | undefined
|
|
6562
|
+
endpoint_id?: string | undefined
|
|
6563
|
+
}
|
|
6564
|
+
| undefined
|
|
6399
6565
|
is_managed: true
|
|
6400
6566
|
}
|
|
6401
6567
|
| {
|
|
@@ -6520,6 +6686,16 @@ export interface Routes {
|
|
|
6520
6686
|
credential_id?: string | undefined
|
|
6521
6687
|
}
|
|
6522
6688
|
| undefined
|
|
6689
|
+
/** Vostio-specific metadata for the credential. */
|
|
6690
|
+
assa_abloy_vostio_metadata?:
|
|
6691
|
+
| {
|
|
6692
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
6693
|
+
key_id?: string | undefined
|
|
6694
|
+
key_issuing_request_id?: string | undefined
|
|
6695
|
+
door_names?: string[] | undefined
|
|
6696
|
+
endpoint_id?: string | undefined
|
|
6697
|
+
}
|
|
6698
|
+
| undefined
|
|
6523
6699
|
is_managed: false
|
|
6524
6700
|
}
|
|
6525
6701
|
}
|
|
@@ -7537,6 +7713,16 @@ export interface Routes {
|
|
|
7537
7713
|
credential_id?: string | undefined
|
|
7538
7714
|
}
|
|
7539
7715
|
| undefined
|
|
7716
|
+
/** Vostio-specific metadata for the credential. */
|
|
7717
|
+
assa_abloy_vostio_metadata?:
|
|
7718
|
+
| {
|
|
7719
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
7720
|
+
key_id?: string | undefined
|
|
7721
|
+
key_issuing_request_id?: string | undefined
|
|
7722
|
+
door_names?: string[] | undefined
|
|
7723
|
+
endpoint_id?: string | undefined
|
|
7724
|
+
}
|
|
7725
|
+
| undefined
|
|
7540
7726
|
is_managed: true
|
|
7541
7727
|
}
|
|
7542
7728
|
}
|
|
@@ -7723,6 +7909,16 @@ export interface Routes {
|
|
|
7723
7909
|
credential_id?: string | undefined
|
|
7724
7910
|
}
|
|
7725
7911
|
| undefined
|
|
7912
|
+
/** Vostio-specific metadata for the credential. */
|
|
7913
|
+
assa_abloy_vostio_metadata?:
|
|
7914
|
+
| {
|
|
7915
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
7916
|
+
key_id?: string | undefined
|
|
7917
|
+
key_issuing_request_id?: string | undefined
|
|
7918
|
+
door_names?: string[] | undefined
|
|
7919
|
+
endpoint_id?: string | undefined
|
|
7920
|
+
}
|
|
7921
|
+
| undefined
|
|
7726
7922
|
is_managed: true
|
|
7727
7923
|
}
|
|
7728
7924
|
}
|
|
@@ -7870,6 +8066,16 @@ export interface Routes {
|
|
|
7870
8066
|
credential_id?: string | undefined
|
|
7871
8067
|
}
|
|
7872
8068
|
| undefined
|
|
8069
|
+
/** Vostio-specific metadata for the credential. */
|
|
8070
|
+
assa_abloy_vostio_metadata?:
|
|
8071
|
+
| {
|
|
8072
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8073
|
+
key_id?: string | undefined
|
|
8074
|
+
key_issuing_request_id?: string | undefined
|
|
8075
|
+
door_names?: string[] | undefined
|
|
8076
|
+
endpoint_id?: string | undefined
|
|
8077
|
+
}
|
|
8078
|
+
| undefined
|
|
7873
8079
|
is_managed: true
|
|
7874
8080
|
}
|
|
7875
8081
|
}
|
|
@@ -8021,6 +8227,16 @@ export interface Routes {
|
|
|
8021
8227
|
credential_id?: string | undefined
|
|
8022
8228
|
}
|
|
8023
8229
|
| undefined
|
|
8230
|
+
/** Vostio-specific metadata for the credential. */
|
|
8231
|
+
assa_abloy_vostio_metadata?:
|
|
8232
|
+
| {
|
|
8233
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8234
|
+
key_id?: string | undefined
|
|
8235
|
+
key_issuing_request_id?: string | undefined
|
|
8236
|
+
door_names?: string[] | undefined
|
|
8237
|
+
endpoint_id?: string | undefined
|
|
8238
|
+
}
|
|
8239
|
+
| undefined
|
|
8024
8240
|
is_managed: true
|
|
8025
8241
|
}
|
|
8026
8242
|
}
|
|
@@ -8181,6 +8397,16 @@ export interface Routes {
|
|
|
8181
8397
|
credential_id?: string | undefined
|
|
8182
8398
|
}
|
|
8183
8399
|
| undefined
|
|
8400
|
+
/** Vostio-specific metadata for the credential. */
|
|
8401
|
+
assa_abloy_vostio_metadata?:
|
|
8402
|
+
| {
|
|
8403
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8404
|
+
key_id?: string | undefined
|
|
8405
|
+
key_issuing_request_id?: string | undefined
|
|
8406
|
+
door_names?: string[] | undefined
|
|
8407
|
+
endpoint_id?: string | undefined
|
|
8408
|
+
}
|
|
8409
|
+
| undefined
|
|
8184
8410
|
is_managed: true
|
|
8185
8411
|
}>
|
|
8186
8412
|
}
|
|
@@ -8411,6 +8637,16 @@ export interface Routes {
|
|
|
8411
8637
|
credential_id?: string | undefined
|
|
8412
8638
|
}
|
|
8413
8639
|
| undefined
|
|
8640
|
+
/** Vostio-specific metadata for the credential. */
|
|
8641
|
+
assa_abloy_vostio_metadata?:
|
|
8642
|
+
| {
|
|
8643
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8644
|
+
key_id?: string | undefined
|
|
8645
|
+
key_issuing_request_id?: string | undefined
|
|
8646
|
+
door_names?: string[] | undefined
|
|
8647
|
+
endpoint_id?: string | undefined
|
|
8648
|
+
}
|
|
8649
|
+
| undefined
|
|
8414
8650
|
is_managed: true
|
|
8415
8651
|
}
|
|
8416
8652
|
}
|
|
@@ -8550,6 +8786,16 @@ export interface Routes {
|
|
|
8550
8786
|
credential_id?: string | undefined
|
|
8551
8787
|
}
|
|
8552
8788
|
| undefined
|
|
8789
|
+
/** Vostio-specific metadata for the credential. */
|
|
8790
|
+
assa_abloy_vostio_metadata?:
|
|
8791
|
+
| {
|
|
8792
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8793
|
+
key_id?: string | undefined
|
|
8794
|
+
key_issuing_request_id?: string | undefined
|
|
8795
|
+
door_names?: string[] | undefined
|
|
8796
|
+
endpoint_id?: string | undefined
|
|
8797
|
+
}
|
|
8798
|
+
| undefined
|
|
8553
8799
|
is_managed: false
|
|
8554
8800
|
}
|
|
8555
8801
|
}
|
|
@@ -8702,6 +8948,16 @@ export interface Routes {
|
|
|
8702
8948
|
credential_id?: string | undefined
|
|
8703
8949
|
}
|
|
8704
8950
|
| undefined
|
|
8951
|
+
/** Vostio-specific metadata for the credential. */
|
|
8952
|
+
assa_abloy_vostio_metadata?:
|
|
8953
|
+
| {
|
|
8954
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
8955
|
+
key_id?: string | undefined
|
|
8956
|
+
key_issuing_request_id?: string | undefined
|
|
8957
|
+
door_names?: string[] | undefined
|
|
8958
|
+
endpoint_id?: string | undefined
|
|
8959
|
+
}
|
|
8960
|
+
| undefined
|
|
8705
8961
|
is_managed: false
|
|
8706
8962
|
}>
|
|
8707
8963
|
}
|
|
@@ -8845,6 +9101,16 @@ export interface Routes {
|
|
|
8845
9101
|
credential_id?: string | undefined
|
|
8846
9102
|
}
|
|
8847
9103
|
| undefined
|
|
9104
|
+
/** Vostio-specific metadata for the credential. */
|
|
9105
|
+
assa_abloy_vostio_metadata?:
|
|
9106
|
+
| {
|
|
9107
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
9108
|
+
key_id?: string | undefined
|
|
9109
|
+
key_issuing_request_id?: string | undefined
|
|
9110
|
+
door_names?: string[] | undefined
|
|
9111
|
+
endpoint_id?: string | undefined
|
|
9112
|
+
}
|
|
9113
|
+
| undefined
|
|
8848
9114
|
is_managed: true
|
|
8849
9115
|
}
|
|
8850
9116
|
}
|
|
@@ -9087,6 +9353,18 @@ export interface Routes {
|
|
|
9087
9353
|
credential_id?: string | undefined
|
|
9088
9354
|
}
|
|
9089
9355
|
| undefined
|
|
9356
|
+
/** Vostio-specific metadata for the credential. */
|
|
9357
|
+
assa_abloy_vostio_metadata?:
|
|
9358
|
+
| {
|
|
9359
|
+
override_guest_acs_entrance_ids?:
|
|
9360
|
+
| string[]
|
|
9361
|
+
| undefined
|
|
9362
|
+
key_id?: string | undefined
|
|
9363
|
+
key_issuing_request_id?: string | undefined
|
|
9364
|
+
door_names?: string[] | undefined
|
|
9365
|
+
endpoint_id?: string | undefined
|
|
9366
|
+
}
|
|
9367
|
+
| undefined
|
|
9090
9368
|
is_managed: true
|
|
9091
9369
|
}
|
|
9092
9370
|
| {
|
|
@@ -9211,6 +9489,18 @@ export interface Routes {
|
|
|
9211
9489
|
credential_id?: string | undefined
|
|
9212
9490
|
}
|
|
9213
9491
|
| undefined
|
|
9492
|
+
/** Vostio-specific metadata for the credential. */
|
|
9493
|
+
assa_abloy_vostio_metadata?:
|
|
9494
|
+
| {
|
|
9495
|
+
override_guest_acs_entrance_ids?:
|
|
9496
|
+
| string[]
|
|
9497
|
+
| undefined
|
|
9498
|
+
key_id?: string | undefined
|
|
9499
|
+
key_issuing_request_id?: string | undefined
|
|
9500
|
+
door_names?: string[] | undefined
|
|
9501
|
+
endpoint_id?: string | undefined
|
|
9502
|
+
}
|
|
9503
|
+
| undefined
|
|
9214
9504
|
is_managed: false
|
|
9215
9505
|
}
|
|
9216
9506
|
)
|
|
@@ -9382,6 +9672,16 @@ export interface Routes {
|
|
|
9382
9672
|
credential_id?: string | undefined
|
|
9383
9673
|
}
|
|
9384
9674
|
| undefined
|
|
9675
|
+
/** Vostio-specific metadata for the credential. */
|
|
9676
|
+
assa_abloy_vostio_metadata?:
|
|
9677
|
+
| {
|
|
9678
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
9679
|
+
key_id?: string | undefined
|
|
9680
|
+
key_issuing_request_id?: string | undefined
|
|
9681
|
+
door_names?: string[] | undefined
|
|
9682
|
+
endpoint_id?: string | undefined
|
|
9683
|
+
}
|
|
9684
|
+
| undefined
|
|
9385
9685
|
is_managed: true
|
|
9386
9686
|
}
|
|
9387
9687
|
| {
|
|
@@ -9506,6 +9806,16 @@ export interface Routes {
|
|
|
9506
9806
|
credential_id?: string | undefined
|
|
9507
9807
|
}
|
|
9508
9808
|
| undefined
|
|
9809
|
+
/** Vostio-specific metadata for the credential. */
|
|
9810
|
+
assa_abloy_vostio_metadata?:
|
|
9811
|
+
| {
|
|
9812
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
9813
|
+
key_id?: string | undefined
|
|
9814
|
+
key_issuing_request_id?: string | undefined
|
|
9815
|
+
door_names?: string[] | undefined
|
|
9816
|
+
endpoint_id?: string | undefined
|
|
9817
|
+
}
|
|
9818
|
+
| undefined
|
|
9509
9819
|
is_managed: false
|
|
9510
9820
|
}
|
|
9511
9821
|
}
|
|
@@ -10125,6 +10435,18 @@ export interface Routes {
|
|
|
10125
10435
|
credential_id?: string | undefined
|
|
10126
10436
|
}
|
|
10127
10437
|
| undefined
|
|
10438
|
+
/** Vostio-specific metadata for the credential. */
|
|
10439
|
+
assa_abloy_vostio_metadata?:
|
|
10440
|
+
| {
|
|
10441
|
+
override_guest_acs_entrance_ids?:
|
|
10442
|
+
| string[]
|
|
10443
|
+
| undefined
|
|
10444
|
+
key_id?: string | undefined
|
|
10445
|
+
key_issuing_request_id?: string | undefined
|
|
10446
|
+
door_names?: string[] | undefined
|
|
10447
|
+
endpoint_id?: string | undefined
|
|
10448
|
+
}
|
|
10449
|
+
| undefined
|
|
10128
10450
|
is_managed: true
|
|
10129
10451
|
}
|
|
10130
10452
|
| {
|
|
@@ -10249,6 +10571,18 @@ export interface Routes {
|
|
|
10249
10571
|
credential_id?: string | undefined
|
|
10250
10572
|
}
|
|
10251
10573
|
| undefined
|
|
10574
|
+
/** Vostio-specific metadata for the credential. */
|
|
10575
|
+
assa_abloy_vostio_metadata?:
|
|
10576
|
+
| {
|
|
10577
|
+
override_guest_acs_entrance_ids?:
|
|
10578
|
+
| string[]
|
|
10579
|
+
| undefined
|
|
10580
|
+
key_id?: string | undefined
|
|
10581
|
+
key_issuing_request_id?: string | undefined
|
|
10582
|
+
door_names?: string[] | undefined
|
|
10583
|
+
endpoint_id?: string | undefined
|
|
10584
|
+
}
|
|
10585
|
+
| undefined
|
|
10252
10586
|
is_managed: false
|
|
10253
10587
|
}
|
|
10254
10588
|
)
|
|
@@ -10420,6 +10754,16 @@ export interface Routes {
|
|
|
10420
10754
|
credential_id?: string | undefined
|
|
10421
10755
|
}
|
|
10422
10756
|
| undefined
|
|
10757
|
+
/** Vostio-specific metadata for the credential. */
|
|
10758
|
+
assa_abloy_vostio_metadata?:
|
|
10759
|
+
| {
|
|
10760
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
10761
|
+
key_id?: string | undefined
|
|
10762
|
+
key_issuing_request_id?: string | undefined
|
|
10763
|
+
door_names?: string[] | undefined
|
|
10764
|
+
endpoint_id?: string | undefined
|
|
10765
|
+
}
|
|
10766
|
+
| undefined
|
|
10423
10767
|
is_managed: true
|
|
10424
10768
|
}
|
|
10425
10769
|
| {
|
|
@@ -10544,6 +10888,16 @@ export interface Routes {
|
|
|
10544
10888
|
credential_id?: string | undefined
|
|
10545
10889
|
}
|
|
10546
10890
|
| undefined
|
|
10891
|
+
/** Vostio-specific metadata for the credential. */
|
|
10892
|
+
assa_abloy_vostio_metadata?:
|
|
10893
|
+
| {
|
|
10894
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
10895
|
+
key_id?: string | undefined
|
|
10896
|
+
key_issuing_request_id?: string | undefined
|
|
10897
|
+
door_names?: string[] | undefined
|
|
10898
|
+
endpoint_id?: string | undefined
|
|
10899
|
+
}
|
|
10900
|
+
| undefined
|
|
10547
10901
|
is_managed: false
|
|
10548
10902
|
}
|
|
10549
10903
|
}
|
|
@@ -11289,6 +11643,16 @@ export interface Routes {
|
|
|
11289
11643
|
credential_id?: string | undefined
|
|
11290
11644
|
}
|
|
11291
11645
|
| undefined
|
|
11646
|
+
/** Vostio-specific metadata for the credential. */
|
|
11647
|
+
assa_abloy_vostio_metadata?:
|
|
11648
|
+
| {
|
|
11649
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
11650
|
+
key_id?: string | undefined
|
|
11651
|
+
key_issuing_request_id?: string | undefined
|
|
11652
|
+
door_names?: string[] | undefined
|
|
11653
|
+
endpoint_id?: string | undefined
|
|
11654
|
+
}
|
|
11655
|
+
| undefined
|
|
11292
11656
|
is_managed: true
|
|
11293
11657
|
}>
|
|
11294
11658
|
}
|
|
@@ -12929,6 +13293,18 @@ export interface Routes {
|
|
|
12929
13293
|
credential_id?: string | undefined
|
|
12930
13294
|
}
|
|
12931
13295
|
| undefined
|
|
13296
|
+
/** Vostio-specific metadata for the credential. */
|
|
13297
|
+
assa_abloy_vostio_metadata?:
|
|
13298
|
+
| {
|
|
13299
|
+
override_guest_acs_entrance_ids?:
|
|
13300
|
+
| string[]
|
|
13301
|
+
| undefined
|
|
13302
|
+
key_id?: string | undefined
|
|
13303
|
+
key_issuing_request_id?: string | undefined
|
|
13304
|
+
door_names?: string[] | undefined
|
|
13305
|
+
endpoint_id?: string | undefined
|
|
13306
|
+
}
|
|
13307
|
+
| undefined
|
|
12932
13308
|
is_managed: true
|
|
12933
13309
|
}
|
|
12934
13310
|
| {
|
|
@@ -13053,6 +13429,18 @@ export interface Routes {
|
|
|
13053
13429
|
credential_id?: string | undefined
|
|
13054
13430
|
}
|
|
13055
13431
|
| undefined
|
|
13432
|
+
/** Vostio-specific metadata for the credential. */
|
|
13433
|
+
assa_abloy_vostio_metadata?:
|
|
13434
|
+
| {
|
|
13435
|
+
override_guest_acs_entrance_ids?:
|
|
13436
|
+
| string[]
|
|
13437
|
+
| undefined
|
|
13438
|
+
key_id?: string | undefined
|
|
13439
|
+
key_issuing_request_id?: string | undefined
|
|
13440
|
+
door_names?: string[] | undefined
|
|
13441
|
+
endpoint_id?: string | undefined
|
|
13442
|
+
}
|
|
13443
|
+
| undefined
|
|
13056
13444
|
is_managed: false
|
|
13057
13445
|
}
|
|
13058
13446
|
)
|
|
@@ -13224,6 +13612,16 @@ export interface Routes {
|
|
|
13224
13612
|
credential_id?: string | undefined
|
|
13225
13613
|
}
|
|
13226
13614
|
| undefined
|
|
13615
|
+
/** Vostio-specific metadata for the credential. */
|
|
13616
|
+
assa_abloy_vostio_metadata?:
|
|
13617
|
+
| {
|
|
13618
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
13619
|
+
key_id?: string | undefined
|
|
13620
|
+
key_issuing_request_id?: string | undefined
|
|
13621
|
+
door_names?: string[] | undefined
|
|
13622
|
+
endpoint_id?: string | undefined
|
|
13623
|
+
}
|
|
13624
|
+
| undefined
|
|
13227
13625
|
is_managed: true
|
|
13228
13626
|
}
|
|
13229
13627
|
| {
|
|
@@ -13348,6 +13746,16 @@ export interface Routes {
|
|
|
13348
13746
|
credential_id?: string | undefined
|
|
13349
13747
|
}
|
|
13350
13748
|
| undefined
|
|
13749
|
+
/** Vostio-specific metadata for the credential. */
|
|
13750
|
+
assa_abloy_vostio_metadata?:
|
|
13751
|
+
| {
|
|
13752
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
13753
|
+
key_id?: string | undefined
|
|
13754
|
+
key_issuing_request_id?: string | undefined
|
|
13755
|
+
door_names?: string[] | undefined
|
|
13756
|
+
endpoint_id?: string | undefined
|
|
13757
|
+
}
|
|
13758
|
+
| undefined
|
|
13351
13759
|
is_managed: false
|
|
13352
13760
|
}
|
|
13353
13761
|
}
|
|
@@ -13916,6 +14324,18 @@ export interface Routes {
|
|
|
13916
14324
|
credential_id?: string | undefined
|
|
13917
14325
|
}
|
|
13918
14326
|
| undefined
|
|
14327
|
+
/** Vostio-specific metadata for the credential. */
|
|
14328
|
+
assa_abloy_vostio_metadata?:
|
|
14329
|
+
| {
|
|
14330
|
+
override_guest_acs_entrance_ids?:
|
|
14331
|
+
| string[]
|
|
14332
|
+
| undefined
|
|
14333
|
+
key_id?: string | undefined
|
|
14334
|
+
key_issuing_request_id?: string | undefined
|
|
14335
|
+
door_names?: string[] | undefined
|
|
14336
|
+
endpoint_id?: string | undefined
|
|
14337
|
+
}
|
|
14338
|
+
| undefined
|
|
13919
14339
|
is_managed: true
|
|
13920
14340
|
}
|
|
13921
14341
|
| {
|
|
@@ -14040,6 +14460,18 @@ export interface Routes {
|
|
|
14040
14460
|
credential_id?: string | undefined
|
|
14041
14461
|
}
|
|
14042
14462
|
| undefined
|
|
14463
|
+
/** Vostio-specific metadata for the credential. */
|
|
14464
|
+
assa_abloy_vostio_metadata?:
|
|
14465
|
+
| {
|
|
14466
|
+
override_guest_acs_entrance_ids?:
|
|
14467
|
+
| string[]
|
|
14468
|
+
| undefined
|
|
14469
|
+
key_id?: string | undefined
|
|
14470
|
+
key_issuing_request_id?: string | undefined
|
|
14471
|
+
door_names?: string[] | undefined
|
|
14472
|
+
endpoint_id?: string | undefined
|
|
14473
|
+
}
|
|
14474
|
+
| undefined
|
|
14043
14475
|
is_managed: false
|
|
14044
14476
|
}
|
|
14045
14477
|
)
|
|
@@ -14211,6 +14643,16 @@ export interface Routes {
|
|
|
14211
14643
|
credential_id?: string | undefined
|
|
14212
14644
|
}
|
|
14213
14645
|
| undefined
|
|
14646
|
+
/** Vostio-specific metadata for the credential. */
|
|
14647
|
+
assa_abloy_vostio_metadata?:
|
|
14648
|
+
| {
|
|
14649
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
14650
|
+
key_id?: string | undefined
|
|
14651
|
+
key_issuing_request_id?: string | undefined
|
|
14652
|
+
door_names?: string[] | undefined
|
|
14653
|
+
endpoint_id?: string | undefined
|
|
14654
|
+
}
|
|
14655
|
+
| undefined
|
|
14214
14656
|
is_managed: true
|
|
14215
14657
|
}
|
|
14216
14658
|
| {
|
|
@@ -14335,6 +14777,16 @@ export interface Routes {
|
|
|
14335
14777
|
credential_id?: string | undefined
|
|
14336
14778
|
}
|
|
14337
14779
|
| undefined
|
|
14780
|
+
/** Vostio-specific metadata for the credential. */
|
|
14781
|
+
assa_abloy_vostio_metadata?:
|
|
14782
|
+
| {
|
|
14783
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
14784
|
+
key_id?: string | undefined
|
|
14785
|
+
key_issuing_request_id?: string | undefined
|
|
14786
|
+
door_names?: string[] | undefined
|
|
14787
|
+
endpoint_id?: string | undefined
|
|
14788
|
+
}
|
|
14789
|
+
| undefined
|
|
14338
14790
|
is_managed: false
|
|
14339
14791
|
}
|
|
14340
14792
|
}
|
|
@@ -24709,6 +25161,18 @@ export interface Routes {
|
|
|
24709
25161
|
credential_id?: string | undefined
|
|
24710
25162
|
}
|
|
24711
25163
|
| undefined
|
|
25164
|
+
/** Vostio-specific metadata for the credential. */
|
|
25165
|
+
assa_abloy_vostio_metadata?:
|
|
25166
|
+
| {
|
|
25167
|
+
override_guest_acs_entrance_ids?:
|
|
25168
|
+
| string[]
|
|
25169
|
+
| undefined
|
|
25170
|
+
key_id?: string | undefined
|
|
25171
|
+
key_issuing_request_id?: string | undefined
|
|
25172
|
+
door_names?: string[] | undefined
|
|
25173
|
+
endpoint_id?: string | undefined
|
|
25174
|
+
}
|
|
25175
|
+
| undefined
|
|
24712
25176
|
is_managed: true
|
|
24713
25177
|
}
|
|
24714
25178
|
| {
|
|
@@ -24833,6 +25297,18 @@ export interface Routes {
|
|
|
24833
25297
|
credential_id?: string | undefined
|
|
24834
25298
|
}
|
|
24835
25299
|
| undefined
|
|
25300
|
+
/** Vostio-specific metadata for the credential. */
|
|
25301
|
+
assa_abloy_vostio_metadata?:
|
|
25302
|
+
| {
|
|
25303
|
+
override_guest_acs_entrance_ids?:
|
|
25304
|
+
| string[]
|
|
25305
|
+
| undefined
|
|
25306
|
+
key_id?: string | undefined
|
|
25307
|
+
key_issuing_request_id?: string | undefined
|
|
25308
|
+
door_names?: string[] | undefined
|
|
25309
|
+
endpoint_id?: string | undefined
|
|
25310
|
+
}
|
|
25311
|
+
| undefined
|
|
24836
25312
|
is_managed: false
|
|
24837
25313
|
}
|
|
24838
25314
|
)
|
|
@@ -25004,6 +25480,16 @@ export interface Routes {
|
|
|
25004
25480
|
credential_id?: string | undefined
|
|
25005
25481
|
}
|
|
25006
25482
|
| undefined
|
|
25483
|
+
/** Vostio-specific metadata for the credential. */
|
|
25484
|
+
assa_abloy_vostio_metadata?:
|
|
25485
|
+
| {
|
|
25486
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
25487
|
+
key_id?: string | undefined
|
|
25488
|
+
key_issuing_request_id?: string | undefined
|
|
25489
|
+
door_names?: string[] | undefined
|
|
25490
|
+
endpoint_id?: string | undefined
|
|
25491
|
+
}
|
|
25492
|
+
| undefined
|
|
25007
25493
|
is_managed: true
|
|
25008
25494
|
}
|
|
25009
25495
|
| {
|
|
@@ -25128,6 +25614,16 @@ export interface Routes {
|
|
|
25128
25614
|
credential_id?: string | undefined
|
|
25129
25615
|
}
|
|
25130
25616
|
| undefined
|
|
25617
|
+
/** Vostio-specific metadata for the credential. */
|
|
25618
|
+
assa_abloy_vostio_metadata?:
|
|
25619
|
+
| {
|
|
25620
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
25621
|
+
key_id?: string | undefined
|
|
25622
|
+
key_issuing_request_id?: string | undefined
|
|
25623
|
+
door_names?: string[] | undefined
|
|
25624
|
+
endpoint_id?: string | undefined
|
|
25625
|
+
}
|
|
25626
|
+
| undefined
|
|
25131
25627
|
is_managed: false
|
|
25132
25628
|
}
|
|
25133
25629
|
}
|
|
@@ -25698,6 +26194,18 @@ export interface Routes {
|
|
|
25698
26194
|
credential_id?: string | undefined
|
|
25699
26195
|
}
|
|
25700
26196
|
| undefined
|
|
26197
|
+
/** Vostio-specific metadata for the credential. */
|
|
26198
|
+
assa_abloy_vostio_metadata?:
|
|
26199
|
+
| {
|
|
26200
|
+
override_guest_acs_entrance_ids?:
|
|
26201
|
+
| string[]
|
|
26202
|
+
| undefined
|
|
26203
|
+
key_id?: string | undefined
|
|
26204
|
+
key_issuing_request_id?: string | undefined
|
|
26205
|
+
door_names?: string[] | undefined
|
|
26206
|
+
endpoint_id?: string | undefined
|
|
26207
|
+
}
|
|
26208
|
+
| undefined
|
|
25701
26209
|
is_managed: true
|
|
25702
26210
|
}
|
|
25703
26211
|
| {
|
|
@@ -25822,6 +26330,18 @@ export interface Routes {
|
|
|
25822
26330
|
credential_id?: string | undefined
|
|
25823
26331
|
}
|
|
25824
26332
|
| undefined
|
|
26333
|
+
/** Vostio-specific metadata for the credential. */
|
|
26334
|
+
assa_abloy_vostio_metadata?:
|
|
26335
|
+
| {
|
|
26336
|
+
override_guest_acs_entrance_ids?:
|
|
26337
|
+
| string[]
|
|
26338
|
+
| undefined
|
|
26339
|
+
key_id?: string | undefined
|
|
26340
|
+
key_issuing_request_id?: string | undefined
|
|
26341
|
+
door_names?: string[] | undefined
|
|
26342
|
+
endpoint_id?: string | undefined
|
|
26343
|
+
}
|
|
26344
|
+
| undefined
|
|
25825
26345
|
is_managed: false
|
|
25826
26346
|
}
|
|
25827
26347
|
)
|
|
@@ -25993,6 +26513,16 @@ export interface Routes {
|
|
|
25993
26513
|
credential_id?: string | undefined
|
|
25994
26514
|
}
|
|
25995
26515
|
| undefined
|
|
26516
|
+
/** Vostio-specific metadata for the credential. */
|
|
26517
|
+
assa_abloy_vostio_metadata?:
|
|
26518
|
+
| {
|
|
26519
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
26520
|
+
key_id?: string | undefined
|
|
26521
|
+
key_issuing_request_id?: string | undefined
|
|
26522
|
+
door_names?: string[] | undefined
|
|
26523
|
+
endpoint_id?: string | undefined
|
|
26524
|
+
}
|
|
26525
|
+
| undefined
|
|
25996
26526
|
is_managed: true
|
|
25997
26527
|
}
|
|
25998
26528
|
| {
|
|
@@ -26117,6 +26647,16 @@ export interface Routes {
|
|
|
26117
26647
|
credential_id?: string | undefined
|
|
26118
26648
|
}
|
|
26119
26649
|
| undefined
|
|
26650
|
+
/** Vostio-specific metadata for the credential. */
|
|
26651
|
+
assa_abloy_vostio_metadata?:
|
|
26652
|
+
| {
|
|
26653
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
26654
|
+
key_id?: string | undefined
|
|
26655
|
+
key_issuing_request_id?: string | undefined
|
|
26656
|
+
door_names?: string[] | undefined
|
|
26657
|
+
endpoint_id?: string | undefined
|
|
26658
|
+
}
|
|
26659
|
+
| undefined
|
|
26120
26660
|
is_managed: false
|
|
26121
26661
|
}
|
|
26122
26662
|
}
|
|
@@ -28635,6 +29175,18 @@ export interface Routes {
|
|
|
28635
29175
|
credential_id?: string | undefined
|
|
28636
29176
|
}
|
|
28637
29177
|
| undefined
|
|
29178
|
+
/** Vostio-specific metadata for the credential. */
|
|
29179
|
+
assa_abloy_vostio_metadata?:
|
|
29180
|
+
| {
|
|
29181
|
+
override_guest_acs_entrance_ids?:
|
|
29182
|
+
| string[]
|
|
29183
|
+
| undefined
|
|
29184
|
+
key_id?: string | undefined
|
|
29185
|
+
key_issuing_request_id?: string | undefined
|
|
29186
|
+
door_names?: string[] | undefined
|
|
29187
|
+
endpoint_id?: string | undefined
|
|
29188
|
+
}
|
|
29189
|
+
| undefined
|
|
28638
29190
|
is_managed: true
|
|
28639
29191
|
}
|
|
28640
29192
|
| {
|
|
@@ -28759,6 +29311,18 @@ export interface Routes {
|
|
|
28759
29311
|
credential_id?: string | undefined
|
|
28760
29312
|
}
|
|
28761
29313
|
| undefined
|
|
29314
|
+
/** Vostio-specific metadata for the credential. */
|
|
29315
|
+
assa_abloy_vostio_metadata?:
|
|
29316
|
+
| {
|
|
29317
|
+
override_guest_acs_entrance_ids?:
|
|
29318
|
+
| string[]
|
|
29319
|
+
| undefined
|
|
29320
|
+
key_id?: string | undefined
|
|
29321
|
+
key_issuing_request_id?: string | undefined
|
|
29322
|
+
door_names?: string[] | undefined
|
|
29323
|
+
endpoint_id?: string | undefined
|
|
29324
|
+
}
|
|
29325
|
+
| undefined
|
|
28762
29326
|
is_managed: false
|
|
28763
29327
|
}
|
|
28764
29328
|
)
|
|
@@ -28930,6 +29494,16 @@ export interface Routes {
|
|
|
28930
29494
|
credential_id?: string | undefined
|
|
28931
29495
|
}
|
|
28932
29496
|
| undefined
|
|
29497
|
+
/** Vostio-specific metadata for the credential. */
|
|
29498
|
+
assa_abloy_vostio_metadata?:
|
|
29499
|
+
| {
|
|
29500
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
29501
|
+
key_id?: string | undefined
|
|
29502
|
+
key_issuing_request_id?: string | undefined
|
|
29503
|
+
door_names?: string[] | undefined
|
|
29504
|
+
endpoint_id?: string | undefined
|
|
29505
|
+
}
|
|
29506
|
+
| undefined
|
|
28933
29507
|
is_managed: true
|
|
28934
29508
|
}
|
|
28935
29509
|
| {
|
|
@@ -29054,6 +29628,16 @@ export interface Routes {
|
|
|
29054
29628
|
credential_id?: string | undefined
|
|
29055
29629
|
}
|
|
29056
29630
|
| undefined
|
|
29631
|
+
/** Vostio-specific metadata for the credential. */
|
|
29632
|
+
assa_abloy_vostio_metadata?:
|
|
29633
|
+
| {
|
|
29634
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
29635
|
+
key_id?: string | undefined
|
|
29636
|
+
key_issuing_request_id?: string | undefined
|
|
29637
|
+
door_names?: string[] | undefined
|
|
29638
|
+
endpoint_id?: string | undefined
|
|
29639
|
+
}
|
|
29640
|
+
| undefined
|
|
29057
29641
|
is_managed: false
|
|
29058
29642
|
}
|
|
29059
29643
|
}
|
|
@@ -29635,6 +30219,18 @@ export interface Routes {
|
|
|
29635
30219
|
credential_id?: string | undefined
|
|
29636
30220
|
}
|
|
29637
30221
|
| undefined
|
|
30222
|
+
/** Vostio-specific metadata for the credential. */
|
|
30223
|
+
assa_abloy_vostio_metadata?:
|
|
30224
|
+
| {
|
|
30225
|
+
override_guest_acs_entrance_ids?:
|
|
30226
|
+
| string[]
|
|
30227
|
+
| undefined
|
|
30228
|
+
key_id?: string | undefined
|
|
30229
|
+
key_issuing_request_id?: string | undefined
|
|
30230
|
+
door_names?: string[] | undefined
|
|
30231
|
+
endpoint_id?: string | undefined
|
|
30232
|
+
}
|
|
30233
|
+
| undefined
|
|
29638
30234
|
is_managed: true
|
|
29639
30235
|
}
|
|
29640
30236
|
| {
|
|
@@ -29759,6 +30355,18 @@ export interface Routes {
|
|
|
29759
30355
|
credential_id?: string | undefined
|
|
29760
30356
|
}
|
|
29761
30357
|
| undefined
|
|
30358
|
+
/** Vostio-specific metadata for the credential. */
|
|
30359
|
+
assa_abloy_vostio_metadata?:
|
|
30360
|
+
| {
|
|
30361
|
+
override_guest_acs_entrance_ids?:
|
|
30362
|
+
| string[]
|
|
30363
|
+
| undefined
|
|
30364
|
+
key_id?: string | undefined
|
|
30365
|
+
key_issuing_request_id?: string | undefined
|
|
30366
|
+
door_names?: string[] | undefined
|
|
30367
|
+
endpoint_id?: string | undefined
|
|
30368
|
+
}
|
|
30369
|
+
| undefined
|
|
29762
30370
|
is_managed: false
|
|
29763
30371
|
}
|
|
29764
30372
|
)
|
|
@@ -29930,6 +30538,16 @@ export interface Routes {
|
|
|
29930
30538
|
credential_id?: string | undefined
|
|
29931
30539
|
}
|
|
29932
30540
|
| undefined
|
|
30541
|
+
/** Vostio-specific metadata for the credential. */
|
|
30542
|
+
assa_abloy_vostio_metadata?:
|
|
30543
|
+
| {
|
|
30544
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
30545
|
+
key_id?: string | undefined
|
|
30546
|
+
key_issuing_request_id?: string | undefined
|
|
30547
|
+
door_names?: string[] | undefined
|
|
30548
|
+
endpoint_id?: string | undefined
|
|
30549
|
+
}
|
|
30550
|
+
| undefined
|
|
29933
30551
|
is_managed: true
|
|
29934
30552
|
}
|
|
29935
30553
|
| {
|
|
@@ -30054,6 +30672,16 @@ export interface Routes {
|
|
|
30054
30672
|
credential_id?: string | undefined
|
|
30055
30673
|
}
|
|
30056
30674
|
| undefined
|
|
30675
|
+
/** Vostio-specific metadata for the credential. */
|
|
30676
|
+
assa_abloy_vostio_metadata?:
|
|
30677
|
+
| {
|
|
30678
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
30679
|
+
key_id?: string | undefined
|
|
30680
|
+
key_issuing_request_id?: string | undefined
|
|
30681
|
+
door_names?: string[] | undefined
|
|
30682
|
+
endpoint_id?: string | undefined
|
|
30683
|
+
}
|
|
30684
|
+
| undefined
|
|
30057
30685
|
is_managed: false
|
|
30058
30686
|
}
|
|
30059
30687
|
}
|
|
@@ -30674,6 +31302,18 @@ export interface Routes {
|
|
|
30674
31302
|
credential_id?: string | undefined
|
|
30675
31303
|
}
|
|
30676
31304
|
| undefined
|
|
31305
|
+
/** Vostio-specific metadata for the credential. */
|
|
31306
|
+
assa_abloy_vostio_metadata?:
|
|
31307
|
+
| {
|
|
31308
|
+
override_guest_acs_entrance_ids?:
|
|
31309
|
+
| string[]
|
|
31310
|
+
| undefined
|
|
31311
|
+
key_id?: string | undefined
|
|
31312
|
+
key_issuing_request_id?: string | undefined
|
|
31313
|
+
door_names?: string[] | undefined
|
|
31314
|
+
endpoint_id?: string | undefined
|
|
31315
|
+
}
|
|
31316
|
+
| undefined
|
|
30677
31317
|
is_managed: true
|
|
30678
31318
|
}
|
|
30679
31319
|
| {
|
|
@@ -30798,6 +31438,18 @@ export interface Routes {
|
|
|
30798
31438
|
credential_id?: string | undefined
|
|
30799
31439
|
}
|
|
30800
31440
|
| undefined
|
|
31441
|
+
/** Vostio-specific metadata for the credential. */
|
|
31442
|
+
assa_abloy_vostio_metadata?:
|
|
31443
|
+
| {
|
|
31444
|
+
override_guest_acs_entrance_ids?:
|
|
31445
|
+
| string[]
|
|
31446
|
+
| undefined
|
|
31447
|
+
key_id?: string | undefined
|
|
31448
|
+
key_issuing_request_id?: string | undefined
|
|
31449
|
+
door_names?: string[] | undefined
|
|
31450
|
+
endpoint_id?: string | undefined
|
|
31451
|
+
}
|
|
31452
|
+
| undefined
|
|
30801
31453
|
is_managed: false
|
|
30802
31454
|
}
|
|
30803
31455
|
)
|
|
@@ -30969,6 +31621,16 @@ export interface Routes {
|
|
|
30969
31621
|
credential_id?: string | undefined
|
|
30970
31622
|
}
|
|
30971
31623
|
| undefined
|
|
31624
|
+
/** Vostio-specific metadata for the credential. */
|
|
31625
|
+
assa_abloy_vostio_metadata?:
|
|
31626
|
+
| {
|
|
31627
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
31628
|
+
key_id?: string | undefined
|
|
31629
|
+
key_issuing_request_id?: string | undefined
|
|
31630
|
+
door_names?: string[] | undefined
|
|
31631
|
+
endpoint_id?: string | undefined
|
|
31632
|
+
}
|
|
31633
|
+
| undefined
|
|
30972
31634
|
is_managed: true
|
|
30973
31635
|
}
|
|
30974
31636
|
| {
|
|
@@ -31093,6 +31755,16 @@ export interface Routes {
|
|
|
31093
31755
|
credential_id?: string | undefined
|
|
31094
31756
|
}
|
|
31095
31757
|
| undefined
|
|
31758
|
+
/** Vostio-specific metadata for the credential. */
|
|
31759
|
+
assa_abloy_vostio_metadata?:
|
|
31760
|
+
| {
|
|
31761
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
31762
|
+
key_id?: string | undefined
|
|
31763
|
+
key_issuing_request_id?: string | undefined
|
|
31764
|
+
door_names?: string[] | undefined
|
|
31765
|
+
endpoint_id?: string | undefined
|
|
31766
|
+
}
|
|
31767
|
+
| undefined
|
|
31096
31768
|
is_managed: false
|
|
31097
31769
|
}
|
|
31098
31770
|
}
|
|
@@ -32186,6 +32858,18 @@ export interface Routes {
|
|
|
32186
32858
|
credential_id?: string | undefined
|
|
32187
32859
|
}
|
|
32188
32860
|
| undefined
|
|
32861
|
+
/** Vostio-specific metadata for the credential. */
|
|
32862
|
+
assa_abloy_vostio_metadata?:
|
|
32863
|
+
| {
|
|
32864
|
+
override_guest_acs_entrance_ids?:
|
|
32865
|
+
| string[]
|
|
32866
|
+
| undefined
|
|
32867
|
+
key_id?: string | undefined
|
|
32868
|
+
key_issuing_request_id?: string | undefined
|
|
32869
|
+
door_names?: string[] | undefined
|
|
32870
|
+
endpoint_id?: string | undefined
|
|
32871
|
+
}
|
|
32872
|
+
| undefined
|
|
32189
32873
|
is_managed: true
|
|
32190
32874
|
}
|
|
32191
32875
|
| {
|
|
@@ -32310,6 +32994,18 @@ export interface Routes {
|
|
|
32310
32994
|
credential_id?: string | undefined
|
|
32311
32995
|
}
|
|
32312
32996
|
| undefined
|
|
32997
|
+
/** Vostio-specific metadata for the credential. */
|
|
32998
|
+
assa_abloy_vostio_metadata?:
|
|
32999
|
+
| {
|
|
33000
|
+
override_guest_acs_entrance_ids?:
|
|
33001
|
+
| string[]
|
|
33002
|
+
| undefined
|
|
33003
|
+
key_id?: string | undefined
|
|
33004
|
+
key_issuing_request_id?: string | undefined
|
|
33005
|
+
door_names?: string[] | undefined
|
|
33006
|
+
endpoint_id?: string | undefined
|
|
33007
|
+
}
|
|
33008
|
+
| undefined
|
|
32313
33009
|
is_managed: false
|
|
32314
33010
|
}
|
|
32315
33011
|
)
|
|
@@ -32481,6 +33177,16 @@ export interface Routes {
|
|
|
32481
33177
|
credential_id?: string | undefined
|
|
32482
33178
|
}
|
|
32483
33179
|
| undefined
|
|
33180
|
+
/** Vostio-specific metadata for the credential. */
|
|
33181
|
+
assa_abloy_vostio_metadata?:
|
|
33182
|
+
| {
|
|
33183
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
33184
|
+
key_id?: string | undefined
|
|
33185
|
+
key_issuing_request_id?: string | undefined
|
|
33186
|
+
door_names?: string[] | undefined
|
|
33187
|
+
endpoint_id?: string | undefined
|
|
33188
|
+
}
|
|
33189
|
+
| undefined
|
|
32484
33190
|
is_managed: true
|
|
32485
33191
|
}
|
|
32486
33192
|
| {
|
|
@@ -32605,6 +33311,16 @@ export interface Routes {
|
|
|
32605
33311
|
credential_id?: string | undefined
|
|
32606
33312
|
}
|
|
32607
33313
|
| undefined
|
|
33314
|
+
/** Vostio-specific metadata for the credential. */
|
|
33315
|
+
assa_abloy_vostio_metadata?:
|
|
33316
|
+
| {
|
|
33317
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
33318
|
+
key_id?: string | undefined
|
|
33319
|
+
key_issuing_request_id?: string | undefined
|
|
33320
|
+
door_names?: string[] | undefined
|
|
33321
|
+
endpoint_id?: string | undefined
|
|
33322
|
+
}
|
|
33323
|
+
| undefined
|
|
32608
33324
|
is_managed: false
|
|
32609
33325
|
}
|
|
32610
33326
|
}
|
|
@@ -33181,6 +33897,18 @@ export interface Routes {
|
|
|
33181
33897
|
credential_id?: string | undefined
|
|
33182
33898
|
}
|
|
33183
33899
|
| undefined
|
|
33900
|
+
/** Vostio-specific metadata for the credential. */
|
|
33901
|
+
assa_abloy_vostio_metadata?:
|
|
33902
|
+
| {
|
|
33903
|
+
override_guest_acs_entrance_ids?:
|
|
33904
|
+
| string[]
|
|
33905
|
+
| undefined
|
|
33906
|
+
key_id?: string | undefined
|
|
33907
|
+
key_issuing_request_id?: string | undefined
|
|
33908
|
+
door_names?: string[] | undefined
|
|
33909
|
+
endpoint_id?: string | undefined
|
|
33910
|
+
}
|
|
33911
|
+
| undefined
|
|
33184
33912
|
is_managed: true
|
|
33185
33913
|
}
|
|
33186
33914
|
| {
|
|
@@ -33305,6 +34033,18 @@ export interface Routes {
|
|
|
33305
34033
|
credential_id?: string | undefined
|
|
33306
34034
|
}
|
|
33307
34035
|
| undefined
|
|
34036
|
+
/** Vostio-specific metadata for the credential. */
|
|
34037
|
+
assa_abloy_vostio_metadata?:
|
|
34038
|
+
| {
|
|
34039
|
+
override_guest_acs_entrance_ids?:
|
|
34040
|
+
| string[]
|
|
34041
|
+
| undefined
|
|
34042
|
+
key_id?: string | undefined
|
|
34043
|
+
key_issuing_request_id?: string | undefined
|
|
34044
|
+
door_names?: string[] | undefined
|
|
34045
|
+
endpoint_id?: string | undefined
|
|
34046
|
+
}
|
|
34047
|
+
| undefined
|
|
33308
34048
|
is_managed: false
|
|
33309
34049
|
}
|
|
33310
34050
|
)
|
|
@@ -33476,6 +34216,16 @@ export interface Routes {
|
|
|
33476
34216
|
credential_id?: string | undefined
|
|
33477
34217
|
}
|
|
33478
34218
|
| undefined
|
|
34219
|
+
/** Vostio-specific metadata for the credential. */
|
|
34220
|
+
assa_abloy_vostio_metadata?:
|
|
34221
|
+
| {
|
|
34222
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
34223
|
+
key_id?: string | undefined
|
|
34224
|
+
key_issuing_request_id?: string | undefined
|
|
34225
|
+
door_names?: string[] | undefined
|
|
34226
|
+
endpoint_id?: string | undefined
|
|
34227
|
+
}
|
|
34228
|
+
| undefined
|
|
33479
34229
|
is_managed: true
|
|
33480
34230
|
}
|
|
33481
34231
|
| {
|
|
@@ -33600,6 +34350,16 @@ export interface Routes {
|
|
|
33600
34350
|
credential_id?: string | undefined
|
|
33601
34351
|
}
|
|
33602
34352
|
| undefined
|
|
34353
|
+
/** Vostio-specific metadata for the credential. */
|
|
34354
|
+
assa_abloy_vostio_metadata?:
|
|
34355
|
+
| {
|
|
34356
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
34357
|
+
key_id?: string | undefined
|
|
34358
|
+
key_issuing_request_id?: string | undefined
|
|
34359
|
+
door_names?: string[] | undefined
|
|
34360
|
+
endpoint_id?: string | undefined
|
|
34361
|
+
}
|
|
34362
|
+
| undefined
|
|
33603
34363
|
is_managed: false
|
|
33604
34364
|
}
|
|
33605
34365
|
}
|
|
@@ -35099,6 +35859,18 @@ export interface Routes {
|
|
|
35099
35859
|
credential_id?: string | undefined
|
|
35100
35860
|
}
|
|
35101
35861
|
| undefined
|
|
35862
|
+
/** Vostio-specific metadata for the credential. */
|
|
35863
|
+
assa_abloy_vostio_metadata?:
|
|
35864
|
+
| {
|
|
35865
|
+
override_guest_acs_entrance_ids?:
|
|
35866
|
+
| string[]
|
|
35867
|
+
| undefined
|
|
35868
|
+
key_id?: string | undefined
|
|
35869
|
+
key_issuing_request_id?: string | undefined
|
|
35870
|
+
door_names?: string[] | undefined
|
|
35871
|
+
endpoint_id?: string | undefined
|
|
35872
|
+
}
|
|
35873
|
+
| undefined
|
|
35102
35874
|
is_managed: true
|
|
35103
35875
|
}
|
|
35104
35876
|
| {
|
|
@@ -35223,6 +35995,18 @@ export interface Routes {
|
|
|
35223
35995
|
credential_id?: string | undefined
|
|
35224
35996
|
}
|
|
35225
35997
|
| undefined
|
|
35998
|
+
/** Vostio-specific metadata for the credential. */
|
|
35999
|
+
assa_abloy_vostio_metadata?:
|
|
36000
|
+
| {
|
|
36001
|
+
override_guest_acs_entrance_ids?:
|
|
36002
|
+
| string[]
|
|
36003
|
+
| undefined
|
|
36004
|
+
key_id?: string | undefined
|
|
36005
|
+
key_issuing_request_id?: string | undefined
|
|
36006
|
+
door_names?: string[] | undefined
|
|
36007
|
+
endpoint_id?: string | undefined
|
|
36008
|
+
}
|
|
36009
|
+
| undefined
|
|
35226
36010
|
is_managed: false
|
|
35227
36011
|
}
|
|
35228
36012
|
)
|
|
@@ -35394,6 +36178,16 @@ export interface Routes {
|
|
|
35394
36178
|
credential_id?: string | undefined
|
|
35395
36179
|
}
|
|
35396
36180
|
| undefined
|
|
36181
|
+
/** Vostio-specific metadata for the credential. */
|
|
36182
|
+
assa_abloy_vostio_metadata?:
|
|
36183
|
+
| {
|
|
36184
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
36185
|
+
key_id?: string | undefined
|
|
36186
|
+
key_issuing_request_id?: string | undefined
|
|
36187
|
+
door_names?: string[] | undefined
|
|
36188
|
+
endpoint_id?: string | undefined
|
|
36189
|
+
}
|
|
36190
|
+
| undefined
|
|
35397
36191
|
is_managed: true
|
|
35398
36192
|
}
|
|
35399
36193
|
| {
|
|
@@ -35518,6 +36312,16 @@ export interface Routes {
|
|
|
35518
36312
|
credential_id?: string | undefined
|
|
35519
36313
|
}
|
|
35520
36314
|
| undefined
|
|
36315
|
+
/** Vostio-specific metadata for the credential. */
|
|
36316
|
+
assa_abloy_vostio_metadata?:
|
|
36317
|
+
| {
|
|
36318
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
36319
|
+
key_id?: string | undefined
|
|
36320
|
+
key_issuing_request_id?: string | undefined
|
|
36321
|
+
door_names?: string[] | undefined
|
|
36322
|
+
endpoint_id?: string | undefined
|
|
36323
|
+
}
|
|
36324
|
+
| undefined
|
|
35521
36325
|
is_managed: false
|
|
35522
36326
|
}
|
|
35523
36327
|
}
|
|
@@ -36098,6 +36902,18 @@ export interface Routes {
|
|
|
36098
36902
|
credential_id?: string | undefined
|
|
36099
36903
|
}
|
|
36100
36904
|
| undefined
|
|
36905
|
+
/** Vostio-specific metadata for the credential. */
|
|
36906
|
+
assa_abloy_vostio_metadata?:
|
|
36907
|
+
| {
|
|
36908
|
+
override_guest_acs_entrance_ids?:
|
|
36909
|
+
| string[]
|
|
36910
|
+
| undefined
|
|
36911
|
+
key_id?: string | undefined
|
|
36912
|
+
key_issuing_request_id?: string | undefined
|
|
36913
|
+
door_names?: string[] | undefined
|
|
36914
|
+
endpoint_id?: string | undefined
|
|
36915
|
+
}
|
|
36916
|
+
| undefined
|
|
36101
36917
|
is_managed: true
|
|
36102
36918
|
}
|
|
36103
36919
|
| {
|
|
@@ -36222,6 +37038,18 @@ export interface Routes {
|
|
|
36222
37038
|
credential_id?: string | undefined
|
|
36223
37039
|
}
|
|
36224
37040
|
| undefined
|
|
37041
|
+
/** Vostio-specific metadata for the credential. */
|
|
37042
|
+
assa_abloy_vostio_metadata?:
|
|
37043
|
+
| {
|
|
37044
|
+
override_guest_acs_entrance_ids?:
|
|
37045
|
+
| string[]
|
|
37046
|
+
| undefined
|
|
37047
|
+
key_id?: string | undefined
|
|
37048
|
+
key_issuing_request_id?: string | undefined
|
|
37049
|
+
door_names?: string[] | undefined
|
|
37050
|
+
endpoint_id?: string | undefined
|
|
37051
|
+
}
|
|
37052
|
+
| undefined
|
|
36225
37053
|
is_managed: false
|
|
36226
37054
|
}
|
|
36227
37055
|
)
|
|
@@ -36393,6 +37221,16 @@ export interface Routes {
|
|
|
36393
37221
|
credential_id?: string | undefined
|
|
36394
37222
|
}
|
|
36395
37223
|
| undefined
|
|
37224
|
+
/** Vostio-specific metadata for the credential. */
|
|
37225
|
+
assa_abloy_vostio_metadata?:
|
|
37226
|
+
| {
|
|
37227
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
37228
|
+
key_id?: string | undefined
|
|
37229
|
+
key_issuing_request_id?: string | undefined
|
|
37230
|
+
door_names?: string[] | undefined
|
|
37231
|
+
endpoint_id?: string | undefined
|
|
37232
|
+
}
|
|
37233
|
+
| undefined
|
|
36396
37234
|
is_managed: true
|
|
36397
37235
|
}
|
|
36398
37236
|
| {
|
|
@@ -36517,6 +37355,16 @@ export interface Routes {
|
|
|
36517
37355
|
credential_id?: string | undefined
|
|
36518
37356
|
}
|
|
36519
37357
|
| undefined
|
|
37358
|
+
/** Vostio-specific metadata for the credential. */
|
|
37359
|
+
assa_abloy_vostio_metadata?:
|
|
37360
|
+
| {
|
|
37361
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
37362
|
+
key_id?: string | undefined
|
|
37363
|
+
key_issuing_request_id?: string | undefined
|
|
37364
|
+
door_names?: string[] | undefined
|
|
37365
|
+
endpoint_id?: string | undefined
|
|
37366
|
+
}
|
|
37367
|
+
| undefined
|
|
36520
37368
|
is_managed: false
|
|
36521
37369
|
}
|
|
36522
37370
|
}
|
|
@@ -38997,6 +39845,18 @@ export interface Routes {
|
|
|
38997
39845
|
credential_id?: string | undefined
|
|
38998
39846
|
}
|
|
38999
39847
|
| undefined
|
|
39848
|
+
/** Vostio-specific metadata for the credential. */
|
|
39849
|
+
assa_abloy_vostio_metadata?:
|
|
39850
|
+
| {
|
|
39851
|
+
override_guest_acs_entrance_ids?:
|
|
39852
|
+
| string[]
|
|
39853
|
+
| undefined
|
|
39854
|
+
key_id?: string | undefined
|
|
39855
|
+
key_issuing_request_id?: string | undefined
|
|
39856
|
+
door_names?: string[] | undefined
|
|
39857
|
+
endpoint_id?: string | undefined
|
|
39858
|
+
}
|
|
39859
|
+
| undefined
|
|
39000
39860
|
is_managed: true
|
|
39001
39861
|
}
|
|
39002
39862
|
| {
|
|
@@ -39121,6 +39981,18 @@ export interface Routes {
|
|
|
39121
39981
|
credential_id?: string | undefined
|
|
39122
39982
|
}
|
|
39123
39983
|
| undefined
|
|
39984
|
+
/** Vostio-specific metadata for the credential. */
|
|
39985
|
+
assa_abloy_vostio_metadata?:
|
|
39986
|
+
| {
|
|
39987
|
+
override_guest_acs_entrance_ids?:
|
|
39988
|
+
| string[]
|
|
39989
|
+
| undefined
|
|
39990
|
+
key_id?: string | undefined
|
|
39991
|
+
key_issuing_request_id?: string | undefined
|
|
39992
|
+
door_names?: string[] | undefined
|
|
39993
|
+
endpoint_id?: string | undefined
|
|
39994
|
+
}
|
|
39995
|
+
| undefined
|
|
39124
39996
|
is_managed: false
|
|
39125
39997
|
}
|
|
39126
39998
|
)
|
|
@@ -39292,6 +40164,16 @@ export interface Routes {
|
|
|
39292
40164
|
credential_id?: string | undefined
|
|
39293
40165
|
}
|
|
39294
40166
|
| undefined
|
|
40167
|
+
/** Vostio-specific metadata for the credential. */
|
|
40168
|
+
assa_abloy_vostio_metadata?:
|
|
40169
|
+
| {
|
|
40170
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
40171
|
+
key_id?: string | undefined
|
|
40172
|
+
key_issuing_request_id?: string | undefined
|
|
40173
|
+
door_names?: string[] | undefined
|
|
40174
|
+
endpoint_id?: string | undefined
|
|
40175
|
+
}
|
|
40176
|
+
| undefined
|
|
39295
40177
|
is_managed: true
|
|
39296
40178
|
}
|
|
39297
40179
|
| {
|
|
@@ -39416,6 +40298,16 @@ export interface Routes {
|
|
|
39416
40298
|
credential_id?: string | undefined
|
|
39417
40299
|
}
|
|
39418
40300
|
| undefined
|
|
40301
|
+
/** Vostio-specific metadata for the credential. */
|
|
40302
|
+
assa_abloy_vostio_metadata?:
|
|
40303
|
+
| {
|
|
40304
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
40305
|
+
key_id?: string | undefined
|
|
40306
|
+
key_issuing_request_id?: string | undefined
|
|
40307
|
+
door_names?: string[] | undefined
|
|
40308
|
+
endpoint_id?: string | undefined
|
|
40309
|
+
}
|
|
40310
|
+
| undefined
|
|
39419
40311
|
is_managed: false
|
|
39420
40312
|
}
|
|
39421
40313
|
}
|
|
@@ -40172,6 +41064,18 @@ export interface Routes {
|
|
|
40172
41064
|
credential_id?: string | undefined
|
|
40173
41065
|
}
|
|
40174
41066
|
| undefined
|
|
41067
|
+
/** Vostio-specific metadata for the credential. */
|
|
41068
|
+
assa_abloy_vostio_metadata?:
|
|
41069
|
+
| {
|
|
41070
|
+
override_guest_acs_entrance_ids?:
|
|
41071
|
+
| string[]
|
|
41072
|
+
| undefined
|
|
41073
|
+
key_id?: string | undefined
|
|
41074
|
+
key_issuing_request_id?: string | undefined
|
|
41075
|
+
door_names?: string[] | undefined
|
|
41076
|
+
endpoint_id?: string | undefined
|
|
41077
|
+
}
|
|
41078
|
+
| undefined
|
|
40175
41079
|
is_managed: true
|
|
40176
41080
|
}
|
|
40177
41081
|
| {
|
|
@@ -40296,6 +41200,18 @@ export interface Routes {
|
|
|
40296
41200
|
credential_id?: string | undefined
|
|
40297
41201
|
}
|
|
40298
41202
|
| undefined
|
|
41203
|
+
/** Vostio-specific metadata for the credential. */
|
|
41204
|
+
assa_abloy_vostio_metadata?:
|
|
41205
|
+
| {
|
|
41206
|
+
override_guest_acs_entrance_ids?:
|
|
41207
|
+
| string[]
|
|
41208
|
+
| undefined
|
|
41209
|
+
key_id?: string | undefined
|
|
41210
|
+
key_issuing_request_id?: string | undefined
|
|
41211
|
+
door_names?: string[] | undefined
|
|
41212
|
+
endpoint_id?: string | undefined
|
|
41213
|
+
}
|
|
41214
|
+
| undefined
|
|
40299
41215
|
is_managed: false
|
|
40300
41216
|
}
|
|
40301
41217
|
)
|
|
@@ -40467,6 +41383,16 @@ export interface Routes {
|
|
|
40467
41383
|
credential_id?: string | undefined
|
|
40468
41384
|
}
|
|
40469
41385
|
| undefined
|
|
41386
|
+
/** Vostio-specific metadata for the credential. */
|
|
41387
|
+
assa_abloy_vostio_metadata?:
|
|
41388
|
+
| {
|
|
41389
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
41390
|
+
key_id?: string | undefined
|
|
41391
|
+
key_issuing_request_id?: string | undefined
|
|
41392
|
+
door_names?: string[] | undefined
|
|
41393
|
+
endpoint_id?: string | undefined
|
|
41394
|
+
}
|
|
41395
|
+
| undefined
|
|
40470
41396
|
is_managed: true
|
|
40471
41397
|
}
|
|
40472
41398
|
| {
|
|
@@ -40591,6 +41517,16 @@ export interface Routes {
|
|
|
40591
41517
|
credential_id?: string | undefined
|
|
40592
41518
|
}
|
|
40593
41519
|
| undefined
|
|
41520
|
+
/** Vostio-specific metadata for the credential. */
|
|
41521
|
+
assa_abloy_vostio_metadata?:
|
|
41522
|
+
| {
|
|
41523
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
41524
|
+
key_id?: string | undefined
|
|
41525
|
+
key_issuing_request_id?: string | undefined
|
|
41526
|
+
door_names?: string[] | undefined
|
|
41527
|
+
endpoint_id?: string | undefined
|
|
41528
|
+
}
|
|
41529
|
+
| undefined
|
|
40594
41530
|
is_managed: false
|
|
40595
41531
|
}
|
|
40596
41532
|
}
|
|
@@ -41194,6 +42130,18 @@ export interface Routes {
|
|
|
41194
42130
|
credential_id?: string | undefined
|
|
41195
42131
|
}
|
|
41196
42132
|
| undefined
|
|
42133
|
+
/** Vostio-specific metadata for the credential. */
|
|
42134
|
+
assa_abloy_vostio_metadata?:
|
|
42135
|
+
| {
|
|
42136
|
+
override_guest_acs_entrance_ids?:
|
|
42137
|
+
| string[]
|
|
42138
|
+
| undefined
|
|
42139
|
+
key_id?: string | undefined
|
|
42140
|
+
key_issuing_request_id?: string | undefined
|
|
42141
|
+
door_names?: string[] | undefined
|
|
42142
|
+
endpoint_id?: string | undefined
|
|
42143
|
+
}
|
|
42144
|
+
| undefined
|
|
41197
42145
|
is_managed: true
|
|
41198
42146
|
}
|
|
41199
42147
|
| {
|
|
@@ -41318,6 +42266,18 @@ export interface Routes {
|
|
|
41318
42266
|
credential_id?: string | undefined
|
|
41319
42267
|
}
|
|
41320
42268
|
| undefined
|
|
42269
|
+
/** Vostio-specific metadata for the credential. */
|
|
42270
|
+
assa_abloy_vostio_metadata?:
|
|
42271
|
+
| {
|
|
42272
|
+
override_guest_acs_entrance_ids?:
|
|
42273
|
+
| string[]
|
|
42274
|
+
| undefined
|
|
42275
|
+
key_id?: string | undefined
|
|
42276
|
+
key_issuing_request_id?: string | undefined
|
|
42277
|
+
door_names?: string[] | undefined
|
|
42278
|
+
endpoint_id?: string | undefined
|
|
42279
|
+
}
|
|
42280
|
+
| undefined
|
|
41321
42281
|
is_managed: false
|
|
41322
42282
|
}
|
|
41323
42283
|
)
|
|
@@ -41489,6 +42449,16 @@ export interface Routes {
|
|
|
41489
42449
|
credential_id?: string | undefined
|
|
41490
42450
|
}
|
|
41491
42451
|
| undefined
|
|
42452
|
+
/** Vostio-specific metadata for the credential. */
|
|
42453
|
+
assa_abloy_vostio_metadata?:
|
|
42454
|
+
| {
|
|
42455
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
42456
|
+
key_id?: string | undefined
|
|
42457
|
+
key_issuing_request_id?: string | undefined
|
|
42458
|
+
door_names?: string[] | undefined
|
|
42459
|
+
endpoint_id?: string | undefined
|
|
42460
|
+
}
|
|
42461
|
+
| undefined
|
|
41492
42462
|
is_managed: true
|
|
41493
42463
|
}
|
|
41494
42464
|
| {
|
|
@@ -41613,6 +42583,16 @@ export interface Routes {
|
|
|
41613
42583
|
credential_id?: string | undefined
|
|
41614
42584
|
}
|
|
41615
42585
|
| undefined
|
|
42586
|
+
/** Vostio-specific metadata for the credential. */
|
|
42587
|
+
assa_abloy_vostio_metadata?:
|
|
42588
|
+
| {
|
|
42589
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
42590
|
+
key_id?: string | undefined
|
|
42591
|
+
key_issuing_request_id?: string | undefined
|
|
42592
|
+
door_names?: string[] | undefined
|
|
42593
|
+
endpoint_id?: string | undefined
|
|
42594
|
+
}
|
|
42595
|
+
| undefined
|
|
41616
42596
|
is_managed: false
|
|
41617
42597
|
}
|
|
41618
42598
|
}
|
|
@@ -44697,6 +45677,18 @@ export interface Routes {
|
|
|
44697
45677
|
credential_id?: string | undefined
|
|
44698
45678
|
}
|
|
44699
45679
|
| undefined
|
|
45680
|
+
/** Vostio-specific metadata for the credential. */
|
|
45681
|
+
assa_abloy_vostio_metadata?:
|
|
45682
|
+
| {
|
|
45683
|
+
override_guest_acs_entrance_ids?:
|
|
45684
|
+
| string[]
|
|
45685
|
+
| undefined
|
|
45686
|
+
key_id?: string | undefined
|
|
45687
|
+
key_issuing_request_id?: string | undefined
|
|
45688
|
+
door_names?: string[] | undefined
|
|
45689
|
+
endpoint_id?: string | undefined
|
|
45690
|
+
}
|
|
45691
|
+
| undefined
|
|
44700
45692
|
is_managed: true
|
|
44701
45693
|
}
|
|
44702
45694
|
| {
|
|
@@ -44821,6 +45813,18 @@ export interface Routes {
|
|
|
44821
45813
|
credential_id?: string | undefined
|
|
44822
45814
|
}
|
|
44823
45815
|
| undefined
|
|
45816
|
+
/** Vostio-specific metadata for the credential. */
|
|
45817
|
+
assa_abloy_vostio_metadata?:
|
|
45818
|
+
| {
|
|
45819
|
+
override_guest_acs_entrance_ids?:
|
|
45820
|
+
| string[]
|
|
45821
|
+
| undefined
|
|
45822
|
+
key_id?: string | undefined
|
|
45823
|
+
key_issuing_request_id?: string | undefined
|
|
45824
|
+
door_names?: string[] | undefined
|
|
45825
|
+
endpoint_id?: string | undefined
|
|
45826
|
+
}
|
|
45827
|
+
| undefined
|
|
44824
45828
|
is_managed: false
|
|
44825
45829
|
}
|
|
44826
45830
|
)
|
|
@@ -44992,6 +45996,16 @@ export interface Routes {
|
|
|
44992
45996
|
credential_id?: string | undefined
|
|
44993
45997
|
}
|
|
44994
45998
|
| undefined
|
|
45999
|
+
/** Vostio-specific metadata for the credential. */
|
|
46000
|
+
assa_abloy_vostio_metadata?:
|
|
46001
|
+
| {
|
|
46002
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
46003
|
+
key_id?: string | undefined
|
|
46004
|
+
key_issuing_request_id?: string | undefined
|
|
46005
|
+
door_names?: string[] | undefined
|
|
46006
|
+
endpoint_id?: string | undefined
|
|
46007
|
+
}
|
|
46008
|
+
| undefined
|
|
44995
46009
|
is_managed: true
|
|
44996
46010
|
}
|
|
44997
46011
|
| {
|
|
@@ -45116,6 +46130,16 @@ export interface Routes {
|
|
|
45116
46130
|
credential_id?: string | undefined
|
|
45117
46131
|
}
|
|
45118
46132
|
| undefined
|
|
46133
|
+
/** Vostio-specific metadata for the credential. */
|
|
46134
|
+
assa_abloy_vostio_metadata?:
|
|
46135
|
+
| {
|
|
46136
|
+
override_guest_acs_entrance_ids?: string[] | undefined
|
|
46137
|
+
key_id?: string | undefined
|
|
46138
|
+
key_issuing_request_id?: string | undefined
|
|
46139
|
+
door_names?: string[] | undefined
|
|
46140
|
+
endpoint_id?: string | undefined
|
|
46141
|
+
}
|
|
46142
|
+
| undefined
|
|
45119
46143
|
is_managed: false
|
|
45120
46144
|
}
|
|
45121
46145
|
}
|