@seamapi/types 1.333.0 → 1.335.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 +149 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1293 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +73 -7
- package/lib/seam/connect/models/acs/acs-credential.js +6 -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 +240 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +104 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +136 -14
- package/lib/seam/connect/openapi.d.ts +135 -0
- package/lib/seam/connect/openapi.js +130 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +846 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +9 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +136 -0
- package/src/lib/seam/connect/route-types.ts +1212 -0
|
@@ -138,7 +138,7 @@ export interface Routes {
|
|
|
138
138
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
139
139
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
140
140
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
141
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
142
142
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
143
143
|
external_type_display_name?: string | undefined;
|
|
144
144
|
/** Date and time at which the credential was created. */
|
|
@@ -215,6 +215,14 @@ export interface Routes {
|
|
|
215
215
|
card_id?: string | undefined;
|
|
216
216
|
credential_id?: string | undefined;
|
|
217
217
|
} | undefined;
|
|
218
|
+
/** Vostio-specific metadata for the credential. */
|
|
219
|
+
assa_abloy_vostio_metadata?: {
|
|
220
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
221
|
+
key_id?: string | undefined;
|
|
222
|
+
key_issuing_request_id?: string | undefined;
|
|
223
|
+
door_names?: string[] | undefined;
|
|
224
|
+
endpoint_id?: string | undefined;
|
|
225
|
+
} | undefined;
|
|
218
226
|
is_managed: true;
|
|
219
227
|
} | {
|
|
220
228
|
/** ID of the credential. */
|
|
@@ -238,7 +246,7 @@ export interface Routes {
|
|
|
238
246
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
239
247
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
240
248
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
241
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
249
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
242
250
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
243
251
|
external_type_display_name?: string | undefined;
|
|
244
252
|
/** Date and time at which the credential was created. */
|
|
@@ -315,6 +323,14 @@ export interface Routes {
|
|
|
315
323
|
card_id?: string | undefined;
|
|
316
324
|
credential_id?: string | undefined;
|
|
317
325
|
} | undefined;
|
|
326
|
+
/** Vostio-specific metadata for the credential. */
|
|
327
|
+
assa_abloy_vostio_metadata?: {
|
|
328
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
329
|
+
key_id?: string | undefined;
|
|
330
|
+
key_issuing_request_id?: string | undefined;
|
|
331
|
+
door_names?: string[] | undefined;
|
|
332
|
+
endpoint_id?: string | undefined;
|
|
333
|
+
} | undefined;
|
|
318
334
|
is_managed: false;
|
|
319
335
|
}) | null;
|
|
320
336
|
warnings: Array<{
|
|
@@ -375,7 +391,7 @@ export interface Routes {
|
|
|
375
391
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
376
392
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
377
393
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
378
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
394
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
379
395
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
380
396
|
external_type_display_name?: string | undefined;
|
|
381
397
|
/** Date and time at which the credential was created. */
|
|
@@ -452,6 +468,14 @@ export interface Routes {
|
|
|
452
468
|
card_id?: string | undefined;
|
|
453
469
|
credential_id?: string | undefined;
|
|
454
470
|
} | undefined;
|
|
471
|
+
/** Vostio-specific metadata for the credential. */
|
|
472
|
+
assa_abloy_vostio_metadata?: {
|
|
473
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
474
|
+
key_id?: string | undefined;
|
|
475
|
+
key_issuing_request_id?: string | undefined;
|
|
476
|
+
door_names?: string[] | undefined;
|
|
477
|
+
endpoint_id?: string | undefined;
|
|
478
|
+
} | undefined;
|
|
455
479
|
is_managed: true;
|
|
456
480
|
} | {
|
|
457
481
|
/** ID of the credential. */
|
|
@@ -475,7 +499,7 @@ export interface Routes {
|
|
|
475
499
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
476
500
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
477
501
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
478
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
502
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
479
503
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
480
504
|
external_type_display_name?: string | undefined;
|
|
481
505
|
/** Date and time at which the credential was created. */
|
|
@@ -552,6 +576,14 @@ export interface Routes {
|
|
|
552
576
|
card_id?: string | undefined;
|
|
553
577
|
credential_id?: string | undefined;
|
|
554
578
|
} | undefined;
|
|
579
|
+
/** Vostio-specific metadata for the credential. */
|
|
580
|
+
assa_abloy_vostio_metadata?: {
|
|
581
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
582
|
+
key_id?: string | undefined;
|
|
583
|
+
key_issuing_request_id?: string | undefined;
|
|
584
|
+
door_names?: string[] | undefined;
|
|
585
|
+
endpoint_id?: string | undefined;
|
|
586
|
+
} | undefined;
|
|
555
587
|
is_managed: false;
|
|
556
588
|
};
|
|
557
589
|
} | {
|
|
@@ -1513,7 +1545,7 @@ export interface Routes {
|
|
|
1513
1545
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1514
1546
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1515
1547
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1516
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1548
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
1517
1549
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1518
1550
|
external_type_display_name?: string | undefined;
|
|
1519
1551
|
/** Date and time at which the credential was created. */
|
|
@@ -1590,6 +1622,14 @@ export interface Routes {
|
|
|
1590
1622
|
card_id?: string | undefined;
|
|
1591
1623
|
credential_id?: string | undefined;
|
|
1592
1624
|
} | undefined;
|
|
1625
|
+
/** Vostio-specific metadata for the credential. */
|
|
1626
|
+
assa_abloy_vostio_metadata?: {
|
|
1627
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1628
|
+
key_id?: string | undefined;
|
|
1629
|
+
key_issuing_request_id?: string | undefined;
|
|
1630
|
+
door_names?: string[] | undefined;
|
|
1631
|
+
endpoint_id?: string | undefined;
|
|
1632
|
+
} | undefined;
|
|
1593
1633
|
is_managed: true;
|
|
1594
1634
|
} | {
|
|
1595
1635
|
/** ID of the credential. */
|
|
@@ -1613,7 +1653,7 @@ export interface Routes {
|
|
|
1613
1653
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1614
1654
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1615
1655
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1616
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1656
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
1617
1657
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1618
1658
|
external_type_display_name?: string | undefined;
|
|
1619
1659
|
/** Date and time at which the credential was created. */
|
|
@@ -1690,6 +1730,14 @@ export interface Routes {
|
|
|
1690
1730
|
card_id?: string | undefined;
|
|
1691
1731
|
credential_id?: string | undefined;
|
|
1692
1732
|
} | undefined;
|
|
1733
|
+
/** Vostio-specific metadata for the credential. */
|
|
1734
|
+
assa_abloy_vostio_metadata?: {
|
|
1735
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1736
|
+
key_id?: string | undefined;
|
|
1737
|
+
key_issuing_request_id?: string | undefined;
|
|
1738
|
+
door_names?: string[] | undefined;
|
|
1739
|
+
endpoint_id?: string | undefined;
|
|
1740
|
+
} | undefined;
|
|
1693
1741
|
is_managed: false;
|
|
1694
1742
|
}) | null;
|
|
1695
1743
|
warnings: Array<{
|
|
@@ -1750,7 +1798,7 @@ export interface Routes {
|
|
|
1750
1798
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1751
1799
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1752
1800
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1753
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1801
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
1754
1802
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1755
1803
|
external_type_display_name?: string | undefined;
|
|
1756
1804
|
/** Date and time at which the credential was created. */
|
|
@@ -1827,6 +1875,14 @@ export interface Routes {
|
|
|
1827
1875
|
card_id?: string | undefined;
|
|
1828
1876
|
credential_id?: string | undefined;
|
|
1829
1877
|
} | undefined;
|
|
1878
|
+
/** Vostio-specific metadata for the credential. */
|
|
1879
|
+
assa_abloy_vostio_metadata?: {
|
|
1880
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1881
|
+
key_id?: string | undefined;
|
|
1882
|
+
key_issuing_request_id?: string | undefined;
|
|
1883
|
+
door_names?: string[] | undefined;
|
|
1884
|
+
endpoint_id?: string | undefined;
|
|
1885
|
+
} | undefined;
|
|
1830
1886
|
is_managed: true;
|
|
1831
1887
|
} | {
|
|
1832
1888
|
/** ID of the credential. */
|
|
@@ -1850,7 +1906,7 @@ export interface Routes {
|
|
|
1850
1906
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1851
1907
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1852
1908
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1853
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1909
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
1854
1910
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1855
1911
|
external_type_display_name?: string | undefined;
|
|
1856
1912
|
/** Date and time at which the credential was created. */
|
|
@@ -1927,6 +1983,14 @@ export interface Routes {
|
|
|
1927
1983
|
card_id?: string | undefined;
|
|
1928
1984
|
credential_id?: string | undefined;
|
|
1929
1985
|
} | undefined;
|
|
1986
|
+
/** Vostio-specific metadata for the credential. */
|
|
1987
|
+
assa_abloy_vostio_metadata?: {
|
|
1988
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1989
|
+
key_id?: string | undefined;
|
|
1990
|
+
key_issuing_request_id?: string | undefined;
|
|
1991
|
+
door_names?: string[] | undefined;
|
|
1992
|
+
endpoint_id?: string | undefined;
|
|
1993
|
+
} | undefined;
|
|
1930
1994
|
is_managed: false;
|
|
1931
1995
|
};
|
|
1932
1996
|
} | {
|
|
@@ -3694,7 +3758,7 @@ export interface Routes {
|
|
|
3694
3758
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3695
3759
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3696
3760
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3697
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
3761
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
3698
3762
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3699
3763
|
external_type_display_name?: string | undefined;
|
|
3700
3764
|
/** Date and time at which the credential was created. */
|
|
@@ -3771,6 +3835,14 @@ export interface Routes {
|
|
|
3771
3835
|
card_id?: string | undefined;
|
|
3772
3836
|
credential_id?: string | undefined;
|
|
3773
3837
|
} | undefined;
|
|
3838
|
+
/** Vostio-specific metadata for the credential. */
|
|
3839
|
+
assa_abloy_vostio_metadata?: {
|
|
3840
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
3841
|
+
key_id?: string | undefined;
|
|
3842
|
+
key_issuing_request_id?: string | undefined;
|
|
3843
|
+
door_names?: string[] | undefined;
|
|
3844
|
+
endpoint_id?: string | undefined;
|
|
3845
|
+
} | undefined;
|
|
3774
3846
|
is_managed: true;
|
|
3775
3847
|
} | {
|
|
3776
3848
|
/** ID of the credential. */
|
|
@@ -3794,7 +3866,7 @@ export interface Routes {
|
|
|
3794
3866
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3795
3867
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3796
3868
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3797
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
3869
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
3798
3870
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3799
3871
|
external_type_display_name?: string | undefined;
|
|
3800
3872
|
/** Date and time at which the credential was created. */
|
|
@@ -3871,6 +3943,14 @@ export interface Routes {
|
|
|
3871
3943
|
card_id?: string | undefined;
|
|
3872
3944
|
credential_id?: string | undefined;
|
|
3873
3945
|
} | undefined;
|
|
3946
|
+
/** Vostio-specific metadata for the credential. */
|
|
3947
|
+
assa_abloy_vostio_metadata?: {
|
|
3948
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
3949
|
+
key_id?: string | undefined;
|
|
3950
|
+
key_issuing_request_id?: string | undefined;
|
|
3951
|
+
door_names?: string[] | undefined;
|
|
3952
|
+
endpoint_id?: string | undefined;
|
|
3953
|
+
} | undefined;
|
|
3874
3954
|
is_managed: false;
|
|
3875
3955
|
}) | null;
|
|
3876
3956
|
warnings: Array<{
|
|
@@ -3931,7 +4011,7 @@ export interface Routes {
|
|
|
3931
4011
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3932
4012
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3933
4013
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3934
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
4014
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
3935
4015
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3936
4016
|
external_type_display_name?: string | undefined;
|
|
3937
4017
|
/** Date and time at which the credential was created. */
|
|
@@ -4008,6 +4088,14 @@ export interface Routes {
|
|
|
4008
4088
|
card_id?: string | undefined;
|
|
4009
4089
|
credential_id?: string | undefined;
|
|
4010
4090
|
} | undefined;
|
|
4091
|
+
/** Vostio-specific metadata for the credential. */
|
|
4092
|
+
assa_abloy_vostio_metadata?: {
|
|
4093
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4094
|
+
key_id?: string | undefined;
|
|
4095
|
+
key_issuing_request_id?: string | undefined;
|
|
4096
|
+
door_names?: string[] | undefined;
|
|
4097
|
+
endpoint_id?: string | undefined;
|
|
4098
|
+
} | undefined;
|
|
4011
4099
|
is_managed: true;
|
|
4012
4100
|
} | {
|
|
4013
4101
|
/** ID of the credential. */
|
|
@@ -4031,7 +4119,7 @@ export interface Routes {
|
|
|
4031
4119
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
4032
4120
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
4033
4121
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
4034
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
4122
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
4035
4123
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
4036
4124
|
external_type_display_name?: string | undefined;
|
|
4037
4125
|
/** Date and time at which the credential was created. */
|
|
@@ -4108,6 +4196,14 @@ export interface Routes {
|
|
|
4108
4196
|
card_id?: string | undefined;
|
|
4109
4197
|
credential_id?: string | undefined;
|
|
4110
4198
|
} | undefined;
|
|
4199
|
+
/** Vostio-specific metadata for the credential. */
|
|
4200
|
+
assa_abloy_vostio_metadata?: {
|
|
4201
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4202
|
+
key_id?: string | undefined;
|
|
4203
|
+
key_issuing_request_id?: string | undefined;
|
|
4204
|
+
door_names?: string[] | undefined;
|
|
4205
|
+
endpoint_id?: string | undefined;
|
|
4206
|
+
} | undefined;
|
|
4111
4207
|
is_managed: false;
|
|
4112
4208
|
};
|
|
4113
4209
|
} | {
|
|
@@ -5056,7 +5152,7 @@ export interface Routes {
|
|
|
5056
5152
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5057
5153
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5058
5154
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5059
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5155
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
5060
5156
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5061
5157
|
external_type_display_name?: string | undefined;
|
|
5062
5158
|
/** Date and time at which the credential was created. */
|
|
@@ -5133,6 +5229,14 @@ export interface Routes {
|
|
|
5133
5229
|
card_id?: string | undefined;
|
|
5134
5230
|
credential_id?: string | undefined;
|
|
5135
5231
|
} | undefined;
|
|
5232
|
+
/** Vostio-specific metadata for the credential. */
|
|
5233
|
+
assa_abloy_vostio_metadata?: {
|
|
5234
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5235
|
+
key_id?: string | undefined;
|
|
5236
|
+
key_issuing_request_id?: string | undefined;
|
|
5237
|
+
door_names?: string[] | undefined;
|
|
5238
|
+
endpoint_id?: string | undefined;
|
|
5239
|
+
} | undefined;
|
|
5136
5240
|
is_managed: true;
|
|
5137
5241
|
} | {
|
|
5138
5242
|
/** ID of the credential. */
|
|
@@ -5156,7 +5260,7 @@ export interface Routes {
|
|
|
5156
5260
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5157
5261
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5158
5262
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5159
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5263
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
5160
5264
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5161
5265
|
external_type_display_name?: string | undefined;
|
|
5162
5266
|
/** Date and time at which the credential was created. */
|
|
@@ -5233,6 +5337,14 @@ export interface Routes {
|
|
|
5233
5337
|
card_id?: string | undefined;
|
|
5234
5338
|
credential_id?: string | undefined;
|
|
5235
5339
|
} | undefined;
|
|
5340
|
+
/** Vostio-specific metadata for the credential. */
|
|
5341
|
+
assa_abloy_vostio_metadata?: {
|
|
5342
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5343
|
+
key_id?: string | undefined;
|
|
5344
|
+
key_issuing_request_id?: string | undefined;
|
|
5345
|
+
door_names?: string[] | undefined;
|
|
5346
|
+
endpoint_id?: string | undefined;
|
|
5347
|
+
} | undefined;
|
|
5236
5348
|
is_managed: false;
|
|
5237
5349
|
}) | null;
|
|
5238
5350
|
warnings: Array<{
|
|
@@ -5293,7 +5405,7 @@ export interface Routes {
|
|
|
5293
5405
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5294
5406
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5295
5407
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5296
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5408
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
5297
5409
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5298
5410
|
external_type_display_name?: string | undefined;
|
|
5299
5411
|
/** Date and time at which the credential was created. */
|
|
@@ -5370,6 +5482,14 @@ export interface Routes {
|
|
|
5370
5482
|
card_id?: string | undefined;
|
|
5371
5483
|
credential_id?: string | undefined;
|
|
5372
5484
|
} | undefined;
|
|
5485
|
+
/** Vostio-specific metadata for the credential. */
|
|
5486
|
+
assa_abloy_vostio_metadata?: {
|
|
5487
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5488
|
+
key_id?: string | undefined;
|
|
5489
|
+
key_issuing_request_id?: string | undefined;
|
|
5490
|
+
door_names?: string[] | undefined;
|
|
5491
|
+
endpoint_id?: string | undefined;
|
|
5492
|
+
} | undefined;
|
|
5373
5493
|
is_managed: true;
|
|
5374
5494
|
} | {
|
|
5375
5495
|
/** ID of the credential. */
|
|
@@ -5393,7 +5513,7 @@ export interface Routes {
|
|
|
5393
5513
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5394
5514
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5395
5515
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5396
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5516
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
5397
5517
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5398
5518
|
external_type_display_name?: string | undefined;
|
|
5399
5519
|
/** Date and time at which the credential was created. */
|
|
@@ -5470,6 +5590,14 @@ export interface Routes {
|
|
|
5470
5590
|
card_id?: string | undefined;
|
|
5471
5591
|
credential_id?: string | undefined;
|
|
5472
5592
|
} | undefined;
|
|
5593
|
+
/** Vostio-specific metadata for the credential. */
|
|
5594
|
+
assa_abloy_vostio_metadata?: {
|
|
5595
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
5596
|
+
key_id?: string | undefined;
|
|
5597
|
+
key_issuing_request_id?: string | undefined;
|
|
5598
|
+
door_names?: string[] | undefined;
|
|
5599
|
+
endpoint_id?: string | undefined;
|
|
5600
|
+
} | undefined;
|
|
5473
5601
|
is_managed: false;
|
|
5474
5602
|
};
|
|
5475
5603
|
} | {
|
|
@@ -6253,7 +6381,7 @@ export interface Routes {
|
|
|
6253
6381
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6254
6382
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6255
6383
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6256
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6384
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
6257
6385
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6258
6386
|
external_type_display_name?: string | undefined;
|
|
6259
6387
|
/** Date and time at which the credential was created. */
|
|
@@ -6330,6 +6458,14 @@ export interface Routes {
|
|
|
6330
6458
|
card_id?: string | undefined;
|
|
6331
6459
|
credential_id?: string | undefined;
|
|
6332
6460
|
} | undefined;
|
|
6461
|
+
/** Vostio-specific metadata for the credential. */
|
|
6462
|
+
assa_abloy_vostio_metadata?: {
|
|
6463
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6464
|
+
key_id?: string | undefined;
|
|
6465
|
+
key_issuing_request_id?: string | undefined;
|
|
6466
|
+
door_names?: string[] | undefined;
|
|
6467
|
+
endpoint_id?: string | undefined;
|
|
6468
|
+
} | undefined;
|
|
6333
6469
|
is_managed: true;
|
|
6334
6470
|
};
|
|
6335
6471
|
};
|
|
@@ -6408,7 +6544,7 @@ export interface Routes {
|
|
|
6408
6544
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6409
6545
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6410
6546
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6411
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6547
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
6412
6548
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6413
6549
|
external_type_display_name?: string | undefined;
|
|
6414
6550
|
/** Date and time at which the credential was created. */
|
|
@@ -6485,6 +6621,14 @@ export interface Routes {
|
|
|
6485
6621
|
card_id?: string | undefined;
|
|
6486
6622
|
credential_id?: string | undefined;
|
|
6487
6623
|
} | undefined;
|
|
6624
|
+
/** Vostio-specific metadata for the credential. */
|
|
6625
|
+
assa_abloy_vostio_metadata?: {
|
|
6626
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6627
|
+
key_id?: string | undefined;
|
|
6628
|
+
key_issuing_request_id?: string | undefined;
|
|
6629
|
+
door_names?: string[] | undefined;
|
|
6630
|
+
endpoint_id?: string | undefined;
|
|
6631
|
+
} | undefined;
|
|
6488
6632
|
is_managed: true;
|
|
6489
6633
|
};
|
|
6490
6634
|
};
|
|
@@ -6532,7 +6676,7 @@ export interface Routes {
|
|
|
6532
6676
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6533
6677
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6534
6678
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6535
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6679
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
6536
6680
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6537
6681
|
external_type_display_name?: string | undefined;
|
|
6538
6682
|
/** Date and time at which the credential was created. */
|
|
@@ -6609,6 +6753,14 @@ export interface Routes {
|
|
|
6609
6753
|
card_id?: string | undefined;
|
|
6610
6754
|
credential_id?: string | undefined;
|
|
6611
6755
|
} | undefined;
|
|
6756
|
+
/** Vostio-specific metadata for the credential. */
|
|
6757
|
+
assa_abloy_vostio_metadata?: {
|
|
6758
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6759
|
+
key_id?: string | undefined;
|
|
6760
|
+
key_issuing_request_id?: string | undefined;
|
|
6761
|
+
door_names?: string[] | undefined;
|
|
6762
|
+
endpoint_id?: string | undefined;
|
|
6763
|
+
} | undefined;
|
|
6612
6764
|
is_managed: true;
|
|
6613
6765
|
};
|
|
6614
6766
|
};
|
|
@@ -6660,7 +6812,7 @@ export interface Routes {
|
|
|
6660
6812
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6661
6813
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6662
6814
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6663
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6815
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
6664
6816
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6665
6817
|
external_type_display_name?: string | undefined;
|
|
6666
6818
|
/** Date and time at which the credential was created. */
|
|
@@ -6737,6 +6889,14 @@ export interface Routes {
|
|
|
6737
6889
|
card_id?: string | undefined;
|
|
6738
6890
|
credential_id?: string | undefined;
|
|
6739
6891
|
} | undefined;
|
|
6892
|
+
/** Vostio-specific metadata for the credential. */
|
|
6893
|
+
assa_abloy_vostio_metadata?: {
|
|
6894
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6895
|
+
key_id?: string | undefined;
|
|
6896
|
+
key_issuing_request_id?: string | undefined;
|
|
6897
|
+
door_names?: string[] | undefined;
|
|
6898
|
+
endpoint_id?: string | undefined;
|
|
6899
|
+
} | undefined;
|
|
6740
6900
|
is_managed: true;
|
|
6741
6901
|
};
|
|
6742
6902
|
};
|
|
@@ -6792,7 +6952,7 @@ export interface Routes {
|
|
|
6792
6952
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6793
6953
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6794
6954
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6795
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6955
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
6796
6956
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6797
6957
|
external_type_display_name?: string | undefined;
|
|
6798
6958
|
/** Date and time at which the credential was created. */
|
|
@@ -6869,6 +7029,14 @@ export interface Routes {
|
|
|
6869
7029
|
card_id?: string | undefined;
|
|
6870
7030
|
credential_id?: string | undefined;
|
|
6871
7031
|
} | undefined;
|
|
7032
|
+
/** Vostio-specific metadata for the credential. */
|
|
7033
|
+
assa_abloy_vostio_metadata?: {
|
|
7034
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7035
|
+
key_id?: string | undefined;
|
|
7036
|
+
key_issuing_request_id?: string | undefined;
|
|
7037
|
+
door_names?: string[] | undefined;
|
|
7038
|
+
endpoint_id?: string | undefined;
|
|
7039
|
+
} | undefined;
|
|
6872
7040
|
is_managed: true;
|
|
6873
7041
|
}>;
|
|
6874
7042
|
};
|
|
@@ -6976,7 +7144,7 @@ export interface Routes {
|
|
|
6976
7144
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6977
7145
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6978
7146
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6979
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7147
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
6980
7148
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6981
7149
|
external_type_display_name?: string | undefined;
|
|
6982
7150
|
/** Date and time at which the credential was created. */
|
|
@@ -7053,6 +7221,14 @@ export interface Routes {
|
|
|
7053
7221
|
card_id?: string | undefined;
|
|
7054
7222
|
credential_id?: string | undefined;
|
|
7055
7223
|
} | undefined;
|
|
7224
|
+
/** Vostio-specific metadata for the credential. */
|
|
7225
|
+
assa_abloy_vostio_metadata?: {
|
|
7226
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7227
|
+
key_id?: string | undefined;
|
|
7228
|
+
key_issuing_request_id?: string | undefined;
|
|
7229
|
+
door_names?: string[] | undefined;
|
|
7230
|
+
endpoint_id?: string | undefined;
|
|
7231
|
+
} | undefined;
|
|
7056
7232
|
is_managed: true;
|
|
7057
7233
|
};
|
|
7058
7234
|
};
|
|
@@ -7092,7 +7268,7 @@ export interface Routes {
|
|
|
7092
7268
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7093
7269
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7094
7270
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7095
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7271
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7096
7272
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7097
7273
|
external_type_display_name?: string | undefined;
|
|
7098
7274
|
/** Date and time at which the credential was created. */
|
|
@@ -7169,6 +7345,14 @@ export interface Routes {
|
|
|
7169
7345
|
card_id?: string | undefined;
|
|
7170
7346
|
credential_id?: string | undefined;
|
|
7171
7347
|
} | undefined;
|
|
7348
|
+
/** Vostio-specific metadata for the credential. */
|
|
7349
|
+
assa_abloy_vostio_metadata?: {
|
|
7350
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7351
|
+
key_id?: string | undefined;
|
|
7352
|
+
key_issuing_request_id?: string | undefined;
|
|
7353
|
+
door_names?: string[] | undefined;
|
|
7354
|
+
endpoint_id?: string | undefined;
|
|
7355
|
+
} | undefined;
|
|
7172
7356
|
is_managed: false;
|
|
7173
7357
|
};
|
|
7174
7358
|
};
|
|
@@ -7217,7 +7401,7 @@ export interface Routes {
|
|
|
7217
7401
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7218
7402
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7219
7403
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7220
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7404
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7221
7405
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7222
7406
|
external_type_display_name?: string | undefined;
|
|
7223
7407
|
/** Date and time at which the credential was created. */
|
|
@@ -7294,6 +7478,14 @@ export interface Routes {
|
|
|
7294
7478
|
card_id?: string | undefined;
|
|
7295
7479
|
credential_id?: string | undefined;
|
|
7296
7480
|
} | undefined;
|
|
7481
|
+
/** Vostio-specific metadata for the credential. */
|
|
7482
|
+
assa_abloy_vostio_metadata?: {
|
|
7483
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7484
|
+
key_id?: string | undefined;
|
|
7485
|
+
key_issuing_request_id?: string | undefined;
|
|
7486
|
+
door_names?: string[] | undefined;
|
|
7487
|
+
endpoint_id?: string | undefined;
|
|
7488
|
+
} | undefined;
|
|
7297
7489
|
is_managed: false;
|
|
7298
7490
|
}>;
|
|
7299
7491
|
};
|
|
@@ -7337,7 +7529,7 @@ export interface Routes {
|
|
|
7337
7529
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7338
7530
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7339
7531
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7340
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7532
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7341
7533
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7342
7534
|
external_type_display_name?: string | undefined;
|
|
7343
7535
|
/** Date and time at which the credential was created. */
|
|
@@ -7414,6 +7606,14 @@ export interface Routes {
|
|
|
7414
7606
|
card_id?: string | undefined;
|
|
7415
7607
|
credential_id?: string | undefined;
|
|
7416
7608
|
} | undefined;
|
|
7609
|
+
/** Vostio-specific metadata for the credential. */
|
|
7610
|
+
assa_abloy_vostio_metadata?: {
|
|
7611
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7612
|
+
key_id?: string | undefined;
|
|
7613
|
+
key_issuing_request_id?: string | undefined;
|
|
7614
|
+
door_names?: string[] | undefined;
|
|
7615
|
+
endpoint_id?: string | undefined;
|
|
7616
|
+
} | undefined;
|
|
7417
7617
|
is_managed: true;
|
|
7418
7618
|
};
|
|
7419
7619
|
};
|
|
@@ -7544,7 +7744,7 @@ export interface Routes {
|
|
|
7544
7744
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7545
7745
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7546
7746
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7547
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7747
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7548
7748
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7549
7749
|
external_type_display_name?: string | undefined;
|
|
7550
7750
|
/** Date and time at which the credential was created. */
|
|
@@ -7621,6 +7821,14 @@ export interface Routes {
|
|
|
7621
7821
|
card_id?: string | undefined;
|
|
7622
7822
|
credential_id?: string | undefined;
|
|
7623
7823
|
} | undefined;
|
|
7824
|
+
/** Vostio-specific metadata for the credential. */
|
|
7825
|
+
assa_abloy_vostio_metadata?: {
|
|
7826
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7827
|
+
key_id?: string | undefined;
|
|
7828
|
+
key_issuing_request_id?: string | undefined;
|
|
7829
|
+
door_names?: string[] | undefined;
|
|
7830
|
+
endpoint_id?: string | undefined;
|
|
7831
|
+
} | undefined;
|
|
7624
7832
|
is_managed: true;
|
|
7625
7833
|
} | {
|
|
7626
7834
|
/** ID of the credential. */
|
|
@@ -7644,7 +7852,7 @@ export interface Routes {
|
|
|
7644
7852
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7645
7853
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7646
7854
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7647
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7855
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7648
7856
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7649
7857
|
external_type_display_name?: string | undefined;
|
|
7650
7858
|
/** Date and time at which the credential was created. */
|
|
@@ -7721,6 +7929,14 @@ export interface Routes {
|
|
|
7721
7929
|
card_id?: string | undefined;
|
|
7722
7930
|
credential_id?: string | undefined;
|
|
7723
7931
|
} | undefined;
|
|
7932
|
+
/** Vostio-specific metadata for the credential. */
|
|
7933
|
+
assa_abloy_vostio_metadata?: {
|
|
7934
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7935
|
+
key_id?: string | undefined;
|
|
7936
|
+
key_issuing_request_id?: string | undefined;
|
|
7937
|
+
door_names?: string[] | undefined;
|
|
7938
|
+
endpoint_id?: string | undefined;
|
|
7939
|
+
} | undefined;
|
|
7724
7940
|
is_managed: false;
|
|
7725
7941
|
}) | null;
|
|
7726
7942
|
warnings: Array<{
|
|
@@ -7781,7 +7997,7 @@ export interface Routes {
|
|
|
7781
7997
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7782
7998
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7783
7999
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7784
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
8000
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7785
8001
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7786
8002
|
external_type_display_name?: string | undefined;
|
|
7787
8003
|
/** Date and time at which the credential was created. */
|
|
@@ -7858,6 +8074,14 @@ export interface Routes {
|
|
|
7858
8074
|
card_id?: string | undefined;
|
|
7859
8075
|
credential_id?: string | undefined;
|
|
7860
8076
|
} | undefined;
|
|
8077
|
+
/** Vostio-specific metadata for the credential. */
|
|
8078
|
+
assa_abloy_vostio_metadata?: {
|
|
8079
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8080
|
+
key_id?: string | undefined;
|
|
8081
|
+
key_issuing_request_id?: string | undefined;
|
|
8082
|
+
door_names?: string[] | undefined;
|
|
8083
|
+
endpoint_id?: string | undefined;
|
|
8084
|
+
} | undefined;
|
|
7861
8085
|
is_managed: true;
|
|
7862
8086
|
} | {
|
|
7863
8087
|
/** ID of the credential. */
|
|
@@ -7881,7 +8105,7 @@ export interface Routes {
|
|
|
7881
8105
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7882
8106
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7883
8107
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7884
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
8108
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
7885
8109
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7886
8110
|
external_type_display_name?: string | undefined;
|
|
7887
8111
|
/** Date and time at which the credential was created. */
|
|
@@ -7958,6 +8182,14 @@ export interface Routes {
|
|
|
7958
8182
|
card_id?: string | undefined;
|
|
7959
8183
|
credential_id?: string | undefined;
|
|
7960
8184
|
} | undefined;
|
|
8185
|
+
/** Vostio-specific metadata for the credential. */
|
|
8186
|
+
assa_abloy_vostio_metadata?: {
|
|
8187
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8188
|
+
key_id?: string | undefined;
|
|
8189
|
+
key_issuing_request_id?: string | undefined;
|
|
8190
|
+
door_names?: string[] | undefined;
|
|
8191
|
+
endpoint_id?: string | undefined;
|
|
8192
|
+
} | undefined;
|
|
7961
8193
|
is_managed: false;
|
|
7962
8194
|
};
|
|
7963
8195
|
} | {
|
|
@@ -8424,7 +8656,7 @@ export interface Routes {
|
|
|
8424
8656
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8425
8657
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8426
8658
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8427
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
8659
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
8428
8660
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8429
8661
|
external_type_display_name?: string | undefined;
|
|
8430
8662
|
/** Date and time at which the credential was created. */
|
|
@@ -8501,6 +8733,14 @@ export interface Routes {
|
|
|
8501
8733
|
card_id?: string | undefined;
|
|
8502
8734
|
credential_id?: string | undefined;
|
|
8503
8735
|
} | undefined;
|
|
8736
|
+
/** Vostio-specific metadata for the credential. */
|
|
8737
|
+
assa_abloy_vostio_metadata?: {
|
|
8738
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8739
|
+
key_id?: string | undefined;
|
|
8740
|
+
key_issuing_request_id?: string | undefined;
|
|
8741
|
+
door_names?: string[] | undefined;
|
|
8742
|
+
endpoint_id?: string | undefined;
|
|
8743
|
+
} | undefined;
|
|
8504
8744
|
is_managed: true;
|
|
8505
8745
|
} | {
|
|
8506
8746
|
/** ID of the credential. */
|
|
@@ -8524,7 +8764,7 @@ export interface Routes {
|
|
|
8524
8764
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8525
8765
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8526
8766
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8527
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
8767
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
8528
8768
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8529
8769
|
external_type_display_name?: string | undefined;
|
|
8530
8770
|
/** Date and time at which the credential was created. */
|
|
@@ -8601,6 +8841,14 @@ export interface Routes {
|
|
|
8601
8841
|
card_id?: string | undefined;
|
|
8602
8842
|
credential_id?: string | undefined;
|
|
8603
8843
|
} | undefined;
|
|
8844
|
+
/** Vostio-specific metadata for the credential. */
|
|
8845
|
+
assa_abloy_vostio_metadata?: {
|
|
8846
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8847
|
+
key_id?: string | undefined;
|
|
8848
|
+
key_issuing_request_id?: string | undefined;
|
|
8849
|
+
door_names?: string[] | undefined;
|
|
8850
|
+
endpoint_id?: string | undefined;
|
|
8851
|
+
} | undefined;
|
|
8604
8852
|
is_managed: false;
|
|
8605
8853
|
}) | null;
|
|
8606
8854
|
warnings: Array<{
|
|
@@ -8661,7 +8909,7 @@ export interface Routes {
|
|
|
8661
8909
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8662
8910
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8663
8911
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8664
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
8912
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
8665
8913
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8666
8914
|
external_type_display_name?: string | undefined;
|
|
8667
8915
|
/** Date and time at which the credential was created. */
|
|
@@ -8738,6 +8986,14 @@ export interface Routes {
|
|
|
8738
8986
|
card_id?: string | undefined;
|
|
8739
8987
|
credential_id?: string | undefined;
|
|
8740
8988
|
} | undefined;
|
|
8989
|
+
/** Vostio-specific metadata for the credential. */
|
|
8990
|
+
assa_abloy_vostio_metadata?: {
|
|
8991
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8992
|
+
key_id?: string | undefined;
|
|
8993
|
+
key_issuing_request_id?: string | undefined;
|
|
8994
|
+
door_names?: string[] | undefined;
|
|
8995
|
+
endpoint_id?: string | undefined;
|
|
8996
|
+
} | undefined;
|
|
8741
8997
|
is_managed: true;
|
|
8742
8998
|
} | {
|
|
8743
8999
|
/** ID of the credential. */
|
|
@@ -8761,7 +9017,7 @@ export interface Routes {
|
|
|
8761
9017
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8762
9018
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8763
9019
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8764
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
9020
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
8765
9021
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8766
9022
|
external_type_display_name?: string | undefined;
|
|
8767
9023
|
/** Date and time at which the credential was created. */
|
|
@@ -8838,6 +9094,14 @@ export interface Routes {
|
|
|
8838
9094
|
card_id?: string | undefined;
|
|
8839
9095
|
credential_id?: string | undefined;
|
|
8840
9096
|
} | undefined;
|
|
9097
|
+
/** Vostio-specific metadata for the credential. */
|
|
9098
|
+
assa_abloy_vostio_metadata?: {
|
|
9099
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
9100
|
+
key_id?: string | undefined;
|
|
9101
|
+
key_issuing_request_id?: string | undefined;
|
|
9102
|
+
door_names?: string[] | undefined;
|
|
9103
|
+
endpoint_id?: string | undefined;
|
|
9104
|
+
} | undefined;
|
|
8841
9105
|
is_managed: false;
|
|
8842
9106
|
};
|
|
8843
9107
|
} | {
|
|
@@ -9390,7 +9654,7 @@ export interface Routes {
|
|
|
9390
9654
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9391
9655
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9392
9656
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9393
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
9657
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
9394
9658
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9395
9659
|
external_type_display_name?: string | undefined;
|
|
9396
9660
|
/** Date and time at which the credential was created. */
|
|
@@ -9467,6 +9731,14 @@ export interface Routes {
|
|
|
9467
9731
|
card_id?: string | undefined;
|
|
9468
9732
|
credential_id?: string | undefined;
|
|
9469
9733
|
} | undefined;
|
|
9734
|
+
/** Vostio-specific metadata for the credential. */
|
|
9735
|
+
assa_abloy_vostio_metadata?: {
|
|
9736
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
9737
|
+
key_id?: string | undefined;
|
|
9738
|
+
key_issuing_request_id?: string | undefined;
|
|
9739
|
+
door_names?: string[] | undefined;
|
|
9740
|
+
endpoint_id?: string | undefined;
|
|
9741
|
+
} | undefined;
|
|
9470
9742
|
is_managed: true;
|
|
9471
9743
|
}>;
|
|
9472
9744
|
};
|
|
@@ -10711,7 +10983,7 @@ export interface Routes {
|
|
|
10711
10983
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10712
10984
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10713
10985
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10714
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
10986
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
10715
10987
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10716
10988
|
external_type_display_name?: string | undefined;
|
|
10717
10989
|
/** Date and time at which the credential was created. */
|
|
@@ -10788,6 +11060,14 @@ export interface Routes {
|
|
|
10788
11060
|
card_id?: string | undefined;
|
|
10789
11061
|
credential_id?: string | undefined;
|
|
10790
11062
|
} | undefined;
|
|
11063
|
+
/** Vostio-specific metadata for the credential. */
|
|
11064
|
+
assa_abloy_vostio_metadata?: {
|
|
11065
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11066
|
+
key_id?: string | undefined;
|
|
11067
|
+
key_issuing_request_id?: string | undefined;
|
|
11068
|
+
door_names?: string[] | undefined;
|
|
11069
|
+
endpoint_id?: string | undefined;
|
|
11070
|
+
} | undefined;
|
|
10791
11071
|
is_managed: true;
|
|
10792
11072
|
} | {
|
|
10793
11073
|
/** ID of the credential. */
|
|
@@ -10811,7 +11091,7 @@ export interface Routes {
|
|
|
10811
11091
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10812
11092
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10813
11093
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10814
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
11094
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
10815
11095
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10816
11096
|
external_type_display_name?: string | undefined;
|
|
10817
11097
|
/** Date and time at which the credential was created. */
|
|
@@ -10888,6 +11168,14 @@ export interface Routes {
|
|
|
10888
11168
|
card_id?: string | undefined;
|
|
10889
11169
|
credential_id?: string | undefined;
|
|
10890
11170
|
} | undefined;
|
|
11171
|
+
/** Vostio-specific metadata for the credential. */
|
|
11172
|
+
assa_abloy_vostio_metadata?: {
|
|
11173
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11174
|
+
key_id?: string | undefined;
|
|
11175
|
+
key_issuing_request_id?: string | undefined;
|
|
11176
|
+
door_names?: string[] | undefined;
|
|
11177
|
+
endpoint_id?: string | undefined;
|
|
11178
|
+
} | undefined;
|
|
10891
11179
|
is_managed: false;
|
|
10892
11180
|
}) | null;
|
|
10893
11181
|
warnings: Array<{
|
|
@@ -10948,7 +11236,7 @@ export interface Routes {
|
|
|
10948
11236
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10949
11237
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10950
11238
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10951
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
11239
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
10952
11240
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10953
11241
|
external_type_display_name?: string | undefined;
|
|
10954
11242
|
/** Date and time at which the credential was created. */
|
|
@@ -11025,6 +11313,14 @@ export interface Routes {
|
|
|
11025
11313
|
card_id?: string | undefined;
|
|
11026
11314
|
credential_id?: string | undefined;
|
|
11027
11315
|
} | undefined;
|
|
11316
|
+
/** Vostio-specific metadata for the credential. */
|
|
11317
|
+
assa_abloy_vostio_metadata?: {
|
|
11318
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11319
|
+
key_id?: string | undefined;
|
|
11320
|
+
key_issuing_request_id?: string | undefined;
|
|
11321
|
+
door_names?: string[] | undefined;
|
|
11322
|
+
endpoint_id?: string | undefined;
|
|
11323
|
+
} | undefined;
|
|
11028
11324
|
is_managed: true;
|
|
11029
11325
|
} | {
|
|
11030
11326
|
/** ID of the credential. */
|
|
@@ -11048,7 +11344,7 @@ export interface Routes {
|
|
|
11048
11344
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11049
11345
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11050
11346
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11051
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
11347
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
11052
11348
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11053
11349
|
external_type_display_name?: string | undefined;
|
|
11054
11350
|
/** Date and time at which the credential was created. */
|
|
@@ -11125,6 +11421,14 @@ export interface Routes {
|
|
|
11125
11421
|
card_id?: string | undefined;
|
|
11126
11422
|
credential_id?: string | undefined;
|
|
11127
11423
|
} | undefined;
|
|
11424
|
+
/** Vostio-specific metadata for the credential. */
|
|
11425
|
+
assa_abloy_vostio_metadata?: {
|
|
11426
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11427
|
+
key_id?: string | undefined;
|
|
11428
|
+
key_issuing_request_id?: string | undefined;
|
|
11429
|
+
door_names?: string[] | undefined;
|
|
11430
|
+
endpoint_id?: string | undefined;
|
|
11431
|
+
} | undefined;
|
|
11128
11432
|
is_managed: false;
|
|
11129
11433
|
};
|
|
11130
11434
|
} | {
|
|
@@ -11543,7 +11847,7 @@ export interface Routes {
|
|
|
11543
11847
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11544
11848
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11545
11849
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11546
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
11850
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
11547
11851
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11548
11852
|
external_type_display_name?: string | undefined;
|
|
11549
11853
|
/** Date and time at which the credential was created. */
|
|
@@ -11620,6 +11924,14 @@ export interface Routes {
|
|
|
11620
11924
|
card_id?: string | undefined;
|
|
11621
11925
|
credential_id?: string | undefined;
|
|
11622
11926
|
} | undefined;
|
|
11927
|
+
/** Vostio-specific metadata for the credential. */
|
|
11928
|
+
assa_abloy_vostio_metadata?: {
|
|
11929
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
11930
|
+
key_id?: string | undefined;
|
|
11931
|
+
key_issuing_request_id?: string | undefined;
|
|
11932
|
+
door_names?: string[] | undefined;
|
|
11933
|
+
endpoint_id?: string | undefined;
|
|
11934
|
+
} | undefined;
|
|
11623
11935
|
is_managed: true;
|
|
11624
11936
|
} | {
|
|
11625
11937
|
/** ID of the credential. */
|
|
@@ -11643,7 +11955,7 @@ export interface Routes {
|
|
|
11643
11955
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11644
11956
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11645
11957
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11646
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
11958
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
11647
11959
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11648
11960
|
external_type_display_name?: string | undefined;
|
|
11649
11961
|
/** Date and time at which the credential was created. */
|
|
@@ -11720,6 +12032,14 @@ export interface Routes {
|
|
|
11720
12032
|
card_id?: string | undefined;
|
|
11721
12033
|
credential_id?: string | undefined;
|
|
11722
12034
|
} | undefined;
|
|
12035
|
+
/** Vostio-specific metadata for the credential. */
|
|
12036
|
+
assa_abloy_vostio_metadata?: {
|
|
12037
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
12038
|
+
key_id?: string | undefined;
|
|
12039
|
+
key_issuing_request_id?: string | undefined;
|
|
12040
|
+
door_names?: string[] | undefined;
|
|
12041
|
+
endpoint_id?: string | undefined;
|
|
12042
|
+
} | undefined;
|
|
11723
12043
|
is_managed: false;
|
|
11724
12044
|
}) | null;
|
|
11725
12045
|
warnings: Array<{
|
|
@@ -11780,7 +12100,7 @@ export interface Routes {
|
|
|
11780
12100
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11781
12101
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11782
12102
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11783
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
12103
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
11784
12104
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11785
12105
|
external_type_display_name?: string | undefined;
|
|
11786
12106
|
/** Date and time at which the credential was created. */
|
|
@@ -11857,6 +12177,14 @@ export interface Routes {
|
|
|
11857
12177
|
card_id?: string | undefined;
|
|
11858
12178
|
credential_id?: string | undefined;
|
|
11859
12179
|
} | undefined;
|
|
12180
|
+
/** Vostio-specific metadata for the credential. */
|
|
12181
|
+
assa_abloy_vostio_metadata?: {
|
|
12182
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
12183
|
+
key_id?: string | undefined;
|
|
12184
|
+
key_issuing_request_id?: string | undefined;
|
|
12185
|
+
door_names?: string[] | undefined;
|
|
12186
|
+
endpoint_id?: string | undefined;
|
|
12187
|
+
} | undefined;
|
|
11860
12188
|
is_managed: true;
|
|
11861
12189
|
} | {
|
|
11862
12190
|
/** ID of the credential. */
|
|
@@ -11880,7 +12208,7 @@ export interface Routes {
|
|
|
11880
12208
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11881
12209
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11882
12210
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11883
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
12211
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
11884
12212
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11885
12213
|
external_type_display_name?: string | undefined;
|
|
11886
12214
|
/** Date and time at which the credential was created. */
|
|
@@ -11957,6 +12285,14 @@ export interface Routes {
|
|
|
11957
12285
|
card_id?: string | undefined;
|
|
11958
12286
|
credential_id?: string | undefined;
|
|
11959
12287
|
} | undefined;
|
|
12288
|
+
/** Vostio-specific metadata for the credential. */
|
|
12289
|
+
assa_abloy_vostio_metadata?: {
|
|
12290
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
12291
|
+
key_id?: string | undefined;
|
|
12292
|
+
key_issuing_request_id?: string | undefined;
|
|
12293
|
+
door_names?: string[] | undefined;
|
|
12294
|
+
endpoint_id?: string | undefined;
|
|
12295
|
+
} | undefined;
|
|
11960
12296
|
is_managed: false;
|
|
11961
12297
|
};
|
|
11962
12298
|
} | {
|
|
@@ -19776,7 +20112,7 @@ export interface Routes {
|
|
|
19776
20112
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
19777
20113
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
19778
20114
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
19779
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
20115
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
19780
20116
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
19781
20117
|
external_type_display_name?: string | undefined;
|
|
19782
20118
|
/** Date and time at which the credential was created. */
|
|
@@ -19853,6 +20189,14 @@ export interface Routes {
|
|
|
19853
20189
|
card_id?: string | undefined;
|
|
19854
20190
|
credential_id?: string | undefined;
|
|
19855
20191
|
} | undefined;
|
|
20192
|
+
/** Vostio-specific metadata for the credential. */
|
|
20193
|
+
assa_abloy_vostio_metadata?: {
|
|
20194
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
20195
|
+
key_id?: string | undefined;
|
|
20196
|
+
key_issuing_request_id?: string | undefined;
|
|
20197
|
+
door_names?: string[] | undefined;
|
|
20198
|
+
endpoint_id?: string | undefined;
|
|
20199
|
+
} | undefined;
|
|
19856
20200
|
is_managed: true;
|
|
19857
20201
|
} | {
|
|
19858
20202
|
/** ID of the credential. */
|
|
@@ -19876,7 +20220,7 @@ export interface Routes {
|
|
|
19876
20220
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
19877
20221
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
19878
20222
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
19879
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
20223
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
19880
20224
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
19881
20225
|
external_type_display_name?: string | undefined;
|
|
19882
20226
|
/** Date and time at which the credential was created. */
|
|
@@ -19953,6 +20297,14 @@ export interface Routes {
|
|
|
19953
20297
|
card_id?: string | undefined;
|
|
19954
20298
|
credential_id?: string | undefined;
|
|
19955
20299
|
} | undefined;
|
|
20300
|
+
/** Vostio-specific metadata for the credential. */
|
|
20301
|
+
assa_abloy_vostio_metadata?: {
|
|
20302
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
20303
|
+
key_id?: string | undefined;
|
|
20304
|
+
key_issuing_request_id?: string | undefined;
|
|
20305
|
+
door_names?: string[] | undefined;
|
|
20306
|
+
endpoint_id?: string | undefined;
|
|
20307
|
+
} | undefined;
|
|
19956
20308
|
is_managed: false;
|
|
19957
20309
|
}) | null;
|
|
19958
20310
|
warnings: Array<{
|
|
@@ -20013,7 +20365,7 @@ export interface Routes {
|
|
|
20013
20365
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20014
20366
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20015
20367
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20016
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
20368
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
20017
20369
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20018
20370
|
external_type_display_name?: string | undefined;
|
|
20019
20371
|
/** Date and time at which the credential was created. */
|
|
@@ -20090,6 +20442,14 @@ export interface Routes {
|
|
|
20090
20442
|
card_id?: string | undefined;
|
|
20091
20443
|
credential_id?: string | undefined;
|
|
20092
20444
|
} | undefined;
|
|
20445
|
+
/** Vostio-specific metadata for the credential. */
|
|
20446
|
+
assa_abloy_vostio_metadata?: {
|
|
20447
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
20448
|
+
key_id?: string | undefined;
|
|
20449
|
+
key_issuing_request_id?: string | undefined;
|
|
20450
|
+
door_names?: string[] | undefined;
|
|
20451
|
+
endpoint_id?: string | undefined;
|
|
20452
|
+
} | undefined;
|
|
20093
20453
|
is_managed: true;
|
|
20094
20454
|
} | {
|
|
20095
20455
|
/** ID of the credential. */
|
|
@@ -20113,7 +20473,7 @@ export interface Routes {
|
|
|
20113
20473
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20114
20474
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20115
20475
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20116
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
20476
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
20117
20477
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20118
20478
|
external_type_display_name?: string | undefined;
|
|
20119
20479
|
/** Date and time at which the credential was created. */
|
|
@@ -20190,6 +20550,14 @@ export interface Routes {
|
|
|
20190
20550
|
card_id?: string | undefined;
|
|
20191
20551
|
credential_id?: string | undefined;
|
|
20192
20552
|
} | undefined;
|
|
20553
|
+
/** Vostio-specific metadata for the credential. */
|
|
20554
|
+
assa_abloy_vostio_metadata?: {
|
|
20555
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
20556
|
+
key_id?: string | undefined;
|
|
20557
|
+
key_issuing_request_id?: string | undefined;
|
|
20558
|
+
door_names?: string[] | undefined;
|
|
20559
|
+
endpoint_id?: string | undefined;
|
|
20560
|
+
} | undefined;
|
|
20193
20561
|
is_managed: false;
|
|
20194
20562
|
};
|
|
20195
20563
|
} | {
|
|
@@ -20610,7 +20978,7 @@ export interface Routes {
|
|
|
20610
20978
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20611
20979
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20612
20980
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20613
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
20981
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
20614
20982
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20615
20983
|
external_type_display_name?: string | undefined;
|
|
20616
20984
|
/** Date and time at which the credential was created. */
|
|
@@ -20687,6 +21055,14 @@ export interface Routes {
|
|
|
20687
21055
|
card_id?: string | undefined;
|
|
20688
21056
|
credential_id?: string | undefined;
|
|
20689
21057
|
} | undefined;
|
|
21058
|
+
/** Vostio-specific metadata for the credential. */
|
|
21059
|
+
assa_abloy_vostio_metadata?: {
|
|
21060
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
21061
|
+
key_id?: string | undefined;
|
|
21062
|
+
key_issuing_request_id?: string | undefined;
|
|
21063
|
+
door_names?: string[] | undefined;
|
|
21064
|
+
endpoint_id?: string | undefined;
|
|
21065
|
+
} | undefined;
|
|
20690
21066
|
is_managed: true;
|
|
20691
21067
|
} | {
|
|
20692
21068
|
/** ID of the credential. */
|
|
@@ -20710,7 +21086,7 @@ export interface Routes {
|
|
|
20710
21086
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20711
21087
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20712
21088
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20713
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21089
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
20714
21090
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20715
21091
|
external_type_display_name?: string | undefined;
|
|
20716
21092
|
/** Date and time at which the credential was created. */
|
|
@@ -20787,6 +21163,14 @@ export interface Routes {
|
|
|
20787
21163
|
card_id?: string | undefined;
|
|
20788
21164
|
credential_id?: string | undefined;
|
|
20789
21165
|
} | undefined;
|
|
21166
|
+
/** Vostio-specific metadata for the credential. */
|
|
21167
|
+
assa_abloy_vostio_metadata?: {
|
|
21168
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
21169
|
+
key_id?: string | undefined;
|
|
21170
|
+
key_issuing_request_id?: string | undefined;
|
|
21171
|
+
door_names?: string[] | undefined;
|
|
21172
|
+
endpoint_id?: string | undefined;
|
|
21173
|
+
} | undefined;
|
|
20790
21174
|
is_managed: false;
|
|
20791
21175
|
}) | null;
|
|
20792
21176
|
warnings: Array<{
|
|
@@ -20847,7 +21231,7 @@ export interface Routes {
|
|
|
20847
21231
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20848
21232
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20849
21233
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20850
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21234
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
20851
21235
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20852
21236
|
external_type_display_name?: string | undefined;
|
|
20853
21237
|
/** Date and time at which the credential was created. */
|
|
@@ -20924,6 +21308,14 @@ export interface Routes {
|
|
|
20924
21308
|
card_id?: string | undefined;
|
|
20925
21309
|
credential_id?: string | undefined;
|
|
20926
21310
|
} | undefined;
|
|
21311
|
+
/** Vostio-specific metadata for the credential. */
|
|
21312
|
+
assa_abloy_vostio_metadata?: {
|
|
21313
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
21314
|
+
key_id?: string | undefined;
|
|
21315
|
+
key_issuing_request_id?: string | undefined;
|
|
21316
|
+
door_names?: string[] | undefined;
|
|
21317
|
+
endpoint_id?: string | undefined;
|
|
21318
|
+
} | undefined;
|
|
20927
21319
|
is_managed: true;
|
|
20928
21320
|
} | {
|
|
20929
21321
|
/** ID of the credential. */
|
|
@@ -20947,7 +21339,7 @@ export interface Routes {
|
|
|
20947
21339
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20948
21340
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20949
21341
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20950
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21342
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
20951
21343
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20952
21344
|
external_type_display_name?: string | undefined;
|
|
20953
21345
|
/** Date and time at which the credential was created. */
|
|
@@ -21024,6 +21416,14 @@ export interface Routes {
|
|
|
21024
21416
|
card_id?: string | undefined;
|
|
21025
21417
|
credential_id?: string | undefined;
|
|
21026
21418
|
} | undefined;
|
|
21419
|
+
/** Vostio-specific metadata for the credential. */
|
|
21420
|
+
assa_abloy_vostio_metadata?: {
|
|
21421
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
21422
|
+
key_id?: string | undefined;
|
|
21423
|
+
key_issuing_request_id?: string | undefined;
|
|
21424
|
+
door_names?: string[] | undefined;
|
|
21425
|
+
endpoint_id?: string | undefined;
|
|
21426
|
+
} | undefined;
|
|
21027
21427
|
is_managed: false;
|
|
21028
21428
|
};
|
|
21029
21429
|
} | {
|
|
@@ -22809,7 +23209,7 @@ export interface Routes {
|
|
|
22809
23209
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22810
23210
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22811
23211
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22812
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
23212
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
22813
23213
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22814
23214
|
external_type_display_name?: string | undefined;
|
|
22815
23215
|
/** Date and time at which the credential was created. */
|
|
@@ -22886,6 +23286,14 @@ export interface Routes {
|
|
|
22886
23286
|
card_id?: string | undefined;
|
|
22887
23287
|
credential_id?: string | undefined;
|
|
22888
23288
|
} | undefined;
|
|
23289
|
+
/** Vostio-specific metadata for the credential. */
|
|
23290
|
+
assa_abloy_vostio_metadata?: {
|
|
23291
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
23292
|
+
key_id?: string | undefined;
|
|
23293
|
+
key_issuing_request_id?: string | undefined;
|
|
23294
|
+
door_names?: string[] | undefined;
|
|
23295
|
+
endpoint_id?: string | undefined;
|
|
23296
|
+
} | undefined;
|
|
22889
23297
|
is_managed: true;
|
|
22890
23298
|
} | {
|
|
22891
23299
|
/** ID of the credential. */
|
|
@@ -22909,7 +23317,7 @@ export interface Routes {
|
|
|
22909
23317
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22910
23318
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22911
23319
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22912
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
23320
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
22913
23321
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22914
23322
|
external_type_display_name?: string | undefined;
|
|
22915
23323
|
/** Date and time at which the credential was created. */
|
|
@@ -22986,6 +23394,14 @@ export interface Routes {
|
|
|
22986
23394
|
card_id?: string | undefined;
|
|
22987
23395
|
credential_id?: string | undefined;
|
|
22988
23396
|
} | undefined;
|
|
23397
|
+
/** Vostio-specific metadata for the credential. */
|
|
23398
|
+
assa_abloy_vostio_metadata?: {
|
|
23399
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
23400
|
+
key_id?: string | undefined;
|
|
23401
|
+
key_issuing_request_id?: string | undefined;
|
|
23402
|
+
door_names?: string[] | undefined;
|
|
23403
|
+
endpoint_id?: string | undefined;
|
|
23404
|
+
} | undefined;
|
|
22989
23405
|
is_managed: false;
|
|
22990
23406
|
}) | null;
|
|
22991
23407
|
warnings: Array<{
|
|
@@ -23046,7 +23462,7 @@ export interface Routes {
|
|
|
23046
23462
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23047
23463
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23048
23464
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23049
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
23465
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
23050
23466
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23051
23467
|
external_type_display_name?: string | undefined;
|
|
23052
23468
|
/** Date and time at which the credential was created. */
|
|
@@ -23123,6 +23539,14 @@ export interface Routes {
|
|
|
23123
23539
|
card_id?: string | undefined;
|
|
23124
23540
|
credential_id?: string | undefined;
|
|
23125
23541
|
} | undefined;
|
|
23542
|
+
/** Vostio-specific metadata for the credential. */
|
|
23543
|
+
assa_abloy_vostio_metadata?: {
|
|
23544
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
23545
|
+
key_id?: string | undefined;
|
|
23546
|
+
key_issuing_request_id?: string | undefined;
|
|
23547
|
+
door_names?: string[] | undefined;
|
|
23548
|
+
endpoint_id?: string | undefined;
|
|
23549
|
+
} | undefined;
|
|
23126
23550
|
is_managed: true;
|
|
23127
23551
|
} | {
|
|
23128
23552
|
/** ID of the credential. */
|
|
@@ -23146,7 +23570,7 @@ export interface Routes {
|
|
|
23146
23570
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23147
23571
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23148
23572
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23149
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
23573
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
23150
23574
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23151
23575
|
external_type_display_name?: string | undefined;
|
|
23152
23576
|
/** Date and time at which the credential was created. */
|
|
@@ -23223,6 +23647,14 @@ export interface Routes {
|
|
|
23223
23647
|
card_id?: string | undefined;
|
|
23224
23648
|
credential_id?: string | undefined;
|
|
23225
23649
|
} | undefined;
|
|
23650
|
+
/** Vostio-specific metadata for the credential. */
|
|
23651
|
+
assa_abloy_vostio_metadata?: {
|
|
23652
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
23653
|
+
key_id?: string | undefined;
|
|
23654
|
+
key_issuing_request_id?: string | undefined;
|
|
23655
|
+
door_names?: string[] | undefined;
|
|
23656
|
+
endpoint_id?: string | undefined;
|
|
23657
|
+
} | undefined;
|
|
23226
23658
|
is_managed: false;
|
|
23227
23659
|
};
|
|
23228
23660
|
} | {
|
|
@@ -23654,7 +24086,7 @@ export interface Routes {
|
|
|
23654
24086
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23655
24087
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23656
24088
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23657
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24089
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
23658
24090
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23659
24091
|
external_type_display_name?: string | undefined;
|
|
23660
24092
|
/** Date and time at which the credential was created. */
|
|
@@ -23731,6 +24163,14 @@ export interface Routes {
|
|
|
23731
24163
|
card_id?: string | undefined;
|
|
23732
24164
|
credential_id?: string | undefined;
|
|
23733
24165
|
} | undefined;
|
|
24166
|
+
/** Vostio-specific metadata for the credential. */
|
|
24167
|
+
assa_abloy_vostio_metadata?: {
|
|
24168
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
24169
|
+
key_id?: string | undefined;
|
|
24170
|
+
key_issuing_request_id?: string | undefined;
|
|
24171
|
+
door_names?: string[] | undefined;
|
|
24172
|
+
endpoint_id?: string | undefined;
|
|
24173
|
+
} | undefined;
|
|
23734
24174
|
is_managed: true;
|
|
23735
24175
|
} | {
|
|
23736
24176
|
/** ID of the credential. */
|
|
@@ -23754,7 +24194,7 @@ export interface Routes {
|
|
|
23754
24194
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23755
24195
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23756
24196
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23757
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24197
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
23758
24198
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23759
24199
|
external_type_display_name?: string | undefined;
|
|
23760
24200
|
/** Date and time at which the credential was created. */
|
|
@@ -23831,6 +24271,14 @@ export interface Routes {
|
|
|
23831
24271
|
card_id?: string | undefined;
|
|
23832
24272
|
credential_id?: string | undefined;
|
|
23833
24273
|
} | undefined;
|
|
24274
|
+
/** Vostio-specific metadata for the credential. */
|
|
24275
|
+
assa_abloy_vostio_metadata?: {
|
|
24276
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
24277
|
+
key_id?: string | undefined;
|
|
24278
|
+
key_issuing_request_id?: string | undefined;
|
|
24279
|
+
door_names?: string[] | undefined;
|
|
24280
|
+
endpoint_id?: string | undefined;
|
|
24281
|
+
} | undefined;
|
|
23834
24282
|
is_managed: false;
|
|
23835
24283
|
}) | null;
|
|
23836
24284
|
warnings: Array<{
|
|
@@ -23891,7 +24339,7 @@ export interface Routes {
|
|
|
23891
24339
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23892
24340
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23893
24341
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23894
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24342
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
23895
24343
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23896
24344
|
external_type_display_name?: string | undefined;
|
|
23897
24345
|
/** Date and time at which the credential was created. */
|
|
@@ -23968,6 +24416,14 @@ export interface Routes {
|
|
|
23968
24416
|
card_id?: string | undefined;
|
|
23969
24417
|
credential_id?: string | undefined;
|
|
23970
24418
|
} | undefined;
|
|
24419
|
+
/** Vostio-specific metadata for the credential. */
|
|
24420
|
+
assa_abloy_vostio_metadata?: {
|
|
24421
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
24422
|
+
key_id?: string | undefined;
|
|
24423
|
+
key_issuing_request_id?: string | undefined;
|
|
24424
|
+
door_names?: string[] | undefined;
|
|
24425
|
+
endpoint_id?: string | undefined;
|
|
24426
|
+
} | undefined;
|
|
23971
24427
|
is_managed: true;
|
|
23972
24428
|
} | {
|
|
23973
24429
|
/** ID of the credential. */
|
|
@@ -23991,7 +24447,7 @@ export interface Routes {
|
|
|
23991
24447
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23992
24448
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23993
24449
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23994
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24450
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
23995
24451
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23996
24452
|
external_type_display_name?: string | undefined;
|
|
23997
24453
|
/** Date and time at which the credential was created. */
|
|
@@ -24068,6 +24524,14 @@ export interface Routes {
|
|
|
24068
24524
|
card_id?: string | undefined;
|
|
24069
24525
|
credential_id?: string | undefined;
|
|
24070
24526
|
} | undefined;
|
|
24527
|
+
/** Vostio-specific metadata for the credential. */
|
|
24528
|
+
assa_abloy_vostio_metadata?: {
|
|
24529
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
24530
|
+
key_id?: string | undefined;
|
|
24531
|
+
key_issuing_request_id?: string | undefined;
|
|
24532
|
+
door_names?: string[] | undefined;
|
|
24533
|
+
endpoint_id?: string | undefined;
|
|
24534
|
+
} | undefined;
|
|
24071
24535
|
is_managed: false;
|
|
24072
24536
|
};
|
|
24073
24537
|
} | {
|
|
@@ -24538,7 +25002,7 @@ export interface Routes {
|
|
|
24538
25002
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24539
25003
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24540
25004
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24541
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
25005
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
24542
25006
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24543
25007
|
external_type_display_name?: string | undefined;
|
|
24544
25008
|
/** Date and time at which the credential was created. */
|
|
@@ -24615,6 +25079,14 @@ export interface Routes {
|
|
|
24615
25079
|
card_id?: string | undefined;
|
|
24616
25080
|
credential_id?: string | undefined;
|
|
24617
25081
|
} | undefined;
|
|
25082
|
+
/** Vostio-specific metadata for the credential. */
|
|
25083
|
+
assa_abloy_vostio_metadata?: {
|
|
25084
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25085
|
+
key_id?: string | undefined;
|
|
25086
|
+
key_issuing_request_id?: string | undefined;
|
|
25087
|
+
door_names?: string[] | undefined;
|
|
25088
|
+
endpoint_id?: string | undefined;
|
|
25089
|
+
} | undefined;
|
|
24618
25090
|
is_managed: true;
|
|
24619
25091
|
} | {
|
|
24620
25092
|
/** ID of the credential. */
|
|
@@ -24638,7 +25110,7 @@ export interface Routes {
|
|
|
24638
25110
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24639
25111
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24640
25112
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24641
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
25113
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
24642
25114
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24643
25115
|
external_type_display_name?: string | undefined;
|
|
24644
25116
|
/** Date and time at which the credential was created. */
|
|
@@ -24715,6 +25187,14 @@ export interface Routes {
|
|
|
24715
25187
|
card_id?: string | undefined;
|
|
24716
25188
|
credential_id?: string | undefined;
|
|
24717
25189
|
} | undefined;
|
|
25190
|
+
/** Vostio-specific metadata for the credential. */
|
|
25191
|
+
assa_abloy_vostio_metadata?: {
|
|
25192
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25193
|
+
key_id?: string | undefined;
|
|
25194
|
+
key_issuing_request_id?: string | undefined;
|
|
25195
|
+
door_names?: string[] | undefined;
|
|
25196
|
+
endpoint_id?: string | undefined;
|
|
25197
|
+
} | undefined;
|
|
24718
25198
|
is_managed: false;
|
|
24719
25199
|
}) | null;
|
|
24720
25200
|
warnings: Array<{
|
|
@@ -24775,7 +25255,7 @@ export interface Routes {
|
|
|
24775
25255
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24776
25256
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24777
25257
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24778
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
25258
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
24779
25259
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24780
25260
|
external_type_display_name?: string | undefined;
|
|
24781
25261
|
/** Date and time at which the credential was created. */
|
|
@@ -24852,6 +25332,14 @@ export interface Routes {
|
|
|
24852
25332
|
card_id?: string | undefined;
|
|
24853
25333
|
credential_id?: string | undefined;
|
|
24854
25334
|
} | undefined;
|
|
25335
|
+
/** Vostio-specific metadata for the credential. */
|
|
25336
|
+
assa_abloy_vostio_metadata?: {
|
|
25337
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25338
|
+
key_id?: string | undefined;
|
|
25339
|
+
key_issuing_request_id?: string | undefined;
|
|
25340
|
+
door_names?: string[] | undefined;
|
|
25341
|
+
endpoint_id?: string | undefined;
|
|
25342
|
+
} | undefined;
|
|
24855
25343
|
is_managed: true;
|
|
24856
25344
|
} | {
|
|
24857
25345
|
/** ID of the credential. */
|
|
@@ -24875,7 +25363,7 @@ export interface Routes {
|
|
|
24875
25363
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24876
25364
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24877
25365
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24878
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
25366
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
24879
25367
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24880
25368
|
external_type_display_name?: string | undefined;
|
|
24881
25369
|
/** Date and time at which the credential was created. */
|
|
@@ -24952,6 +25440,14 @@ export interface Routes {
|
|
|
24952
25440
|
card_id?: string | undefined;
|
|
24953
25441
|
credential_id?: string | undefined;
|
|
24954
25442
|
} | undefined;
|
|
25443
|
+
/** Vostio-specific metadata for the credential. */
|
|
25444
|
+
assa_abloy_vostio_metadata?: {
|
|
25445
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25446
|
+
key_id?: string | undefined;
|
|
25447
|
+
key_issuing_request_id?: string | undefined;
|
|
25448
|
+
door_names?: string[] | undefined;
|
|
25449
|
+
endpoint_id?: string | undefined;
|
|
25450
|
+
} | undefined;
|
|
24955
25451
|
is_managed: false;
|
|
24956
25452
|
};
|
|
24957
25453
|
} | {
|
|
@@ -25805,7 +26301,7 @@ export interface Routes {
|
|
|
25805
26301
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
25806
26302
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
25807
26303
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25808
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26304
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
25809
26305
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
25810
26306
|
external_type_display_name?: string | undefined;
|
|
25811
26307
|
/** Date and time at which the credential was created. */
|
|
@@ -25882,6 +26378,14 @@ export interface Routes {
|
|
|
25882
26378
|
card_id?: string | undefined;
|
|
25883
26379
|
credential_id?: string | undefined;
|
|
25884
26380
|
} | undefined;
|
|
26381
|
+
/** Vostio-specific metadata for the credential. */
|
|
26382
|
+
assa_abloy_vostio_metadata?: {
|
|
26383
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26384
|
+
key_id?: string | undefined;
|
|
26385
|
+
key_issuing_request_id?: string | undefined;
|
|
26386
|
+
door_names?: string[] | undefined;
|
|
26387
|
+
endpoint_id?: string | undefined;
|
|
26388
|
+
} | undefined;
|
|
25885
26389
|
is_managed: true;
|
|
25886
26390
|
} | {
|
|
25887
26391
|
/** ID of the credential. */
|
|
@@ -25905,7 +26409,7 @@ export interface Routes {
|
|
|
25905
26409
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
25906
26410
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
25907
26411
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25908
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26412
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
25909
26413
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
25910
26414
|
external_type_display_name?: string | undefined;
|
|
25911
26415
|
/** Date and time at which the credential was created. */
|
|
@@ -25982,6 +26486,14 @@ export interface Routes {
|
|
|
25982
26486
|
card_id?: string | undefined;
|
|
25983
26487
|
credential_id?: string | undefined;
|
|
25984
26488
|
} | undefined;
|
|
26489
|
+
/** Vostio-specific metadata for the credential. */
|
|
26490
|
+
assa_abloy_vostio_metadata?: {
|
|
26491
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26492
|
+
key_id?: string | undefined;
|
|
26493
|
+
key_issuing_request_id?: string | undefined;
|
|
26494
|
+
door_names?: string[] | undefined;
|
|
26495
|
+
endpoint_id?: string | undefined;
|
|
26496
|
+
} | undefined;
|
|
25985
26497
|
is_managed: false;
|
|
25986
26498
|
}) | null;
|
|
25987
26499
|
warnings: Array<{
|
|
@@ -26042,7 +26554,7 @@ export interface Routes {
|
|
|
26042
26554
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26043
26555
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26044
26556
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26045
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26557
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
26046
26558
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26047
26559
|
external_type_display_name?: string | undefined;
|
|
26048
26560
|
/** Date and time at which the credential was created. */
|
|
@@ -26119,6 +26631,14 @@ export interface Routes {
|
|
|
26119
26631
|
card_id?: string | undefined;
|
|
26120
26632
|
credential_id?: string | undefined;
|
|
26121
26633
|
} | undefined;
|
|
26634
|
+
/** Vostio-specific metadata for the credential. */
|
|
26635
|
+
assa_abloy_vostio_metadata?: {
|
|
26636
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26637
|
+
key_id?: string | undefined;
|
|
26638
|
+
key_issuing_request_id?: string | undefined;
|
|
26639
|
+
door_names?: string[] | undefined;
|
|
26640
|
+
endpoint_id?: string | undefined;
|
|
26641
|
+
} | undefined;
|
|
26122
26642
|
is_managed: true;
|
|
26123
26643
|
} | {
|
|
26124
26644
|
/** ID of the credential. */
|
|
@@ -26142,7 +26662,7 @@ export interface Routes {
|
|
|
26142
26662
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26143
26663
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26144
26664
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26145
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26665
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
26146
26666
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26147
26667
|
external_type_display_name?: string | undefined;
|
|
26148
26668
|
/** Date and time at which the credential was created. */
|
|
@@ -26219,6 +26739,14 @@ export interface Routes {
|
|
|
26219
26739
|
card_id?: string | undefined;
|
|
26220
26740
|
credential_id?: string | undefined;
|
|
26221
26741
|
} | undefined;
|
|
26742
|
+
/** Vostio-specific metadata for the credential. */
|
|
26743
|
+
assa_abloy_vostio_metadata?: {
|
|
26744
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26745
|
+
key_id?: string | undefined;
|
|
26746
|
+
key_issuing_request_id?: string | undefined;
|
|
26747
|
+
door_names?: string[] | undefined;
|
|
26748
|
+
endpoint_id?: string | undefined;
|
|
26749
|
+
} | undefined;
|
|
26222
26750
|
is_managed: false;
|
|
26223
26751
|
};
|
|
26224
26752
|
} | {
|
|
@@ -26645,7 +27173,7 @@ export interface Routes {
|
|
|
26645
27173
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26646
27174
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26647
27175
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26648
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27176
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
26649
27177
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26650
27178
|
external_type_display_name?: string | undefined;
|
|
26651
27179
|
/** Date and time at which the credential was created. */
|
|
@@ -26722,6 +27250,14 @@ export interface Routes {
|
|
|
26722
27250
|
card_id?: string | undefined;
|
|
26723
27251
|
credential_id?: string | undefined;
|
|
26724
27252
|
} | undefined;
|
|
27253
|
+
/** Vostio-specific metadata for the credential. */
|
|
27254
|
+
assa_abloy_vostio_metadata?: {
|
|
27255
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27256
|
+
key_id?: string | undefined;
|
|
27257
|
+
key_issuing_request_id?: string | undefined;
|
|
27258
|
+
door_names?: string[] | undefined;
|
|
27259
|
+
endpoint_id?: string | undefined;
|
|
27260
|
+
} | undefined;
|
|
26725
27261
|
is_managed: true;
|
|
26726
27262
|
} | {
|
|
26727
27263
|
/** ID of the credential. */
|
|
@@ -26745,7 +27281,7 @@ export interface Routes {
|
|
|
26745
27281
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26746
27282
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26747
27283
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26748
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27284
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
26749
27285
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26750
27286
|
external_type_display_name?: string | undefined;
|
|
26751
27287
|
/** Date and time at which the credential was created. */
|
|
@@ -26822,6 +27358,14 @@ export interface Routes {
|
|
|
26822
27358
|
card_id?: string | undefined;
|
|
26823
27359
|
credential_id?: string | undefined;
|
|
26824
27360
|
} | undefined;
|
|
27361
|
+
/** Vostio-specific metadata for the credential. */
|
|
27362
|
+
assa_abloy_vostio_metadata?: {
|
|
27363
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27364
|
+
key_id?: string | undefined;
|
|
27365
|
+
key_issuing_request_id?: string | undefined;
|
|
27366
|
+
door_names?: string[] | undefined;
|
|
27367
|
+
endpoint_id?: string | undefined;
|
|
27368
|
+
} | undefined;
|
|
26825
27369
|
is_managed: false;
|
|
26826
27370
|
}) | null;
|
|
26827
27371
|
warnings: Array<{
|
|
@@ -26882,7 +27426,7 @@ export interface Routes {
|
|
|
26882
27426
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26883
27427
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26884
27428
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26885
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27429
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
26886
27430
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26887
27431
|
external_type_display_name?: string | undefined;
|
|
26888
27432
|
/** Date and time at which the credential was created. */
|
|
@@ -26959,6 +27503,14 @@ export interface Routes {
|
|
|
26959
27503
|
card_id?: string | undefined;
|
|
26960
27504
|
credential_id?: string | undefined;
|
|
26961
27505
|
} | undefined;
|
|
27506
|
+
/** Vostio-specific metadata for the credential. */
|
|
27507
|
+
assa_abloy_vostio_metadata?: {
|
|
27508
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27509
|
+
key_id?: string | undefined;
|
|
27510
|
+
key_issuing_request_id?: string | undefined;
|
|
27511
|
+
door_names?: string[] | undefined;
|
|
27512
|
+
endpoint_id?: string | undefined;
|
|
27513
|
+
} | undefined;
|
|
26962
27514
|
is_managed: true;
|
|
26963
27515
|
} | {
|
|
26964
27516
|
/** ID of the credential. */
|
|
@@ -26982,7 +27534,7 @@ export interface Routes {
|
|
|
26982
27534
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26983
27535
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26984
27536
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26985
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27537
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
26986
27538
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26987
27539
|
external_type_display_name?: string | undefined;
|
|
26988
27540
|
/** Date and time at which the credential was created. */
|
|
@@ -27059,6 +27611,14 @@ export interface Routes {
|
|
|
27059
27611
|
card_id?: string | undefined;
|
|
27060
27612
|
credential_id?: string | undefined;
|
|
27061
27613
|
} | undefined;
|
|
27614
|
+
/** Vostio-specific metadata for the credential. */
|
|
27615
|
+
assa_abloy_vostio_metadata?: {
|
|
27616
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27617
|
+
key_id?: string | undefined;
|
|
27618
|
+
key_issuing_request_id?: string | undefined;
|
|
27619
|
+
door_names?: string[] | undefined;
|
|
27620
|
+
endpoint_id?: string | undefined;
|
|
27621
|
+
} | undefined;
|
|
27062
27622
|
is_managed: false;
|
|
27063
27623
|
};
|
|
27064
27624
|
} | {
|
|
@@ -28190,7 +28750,7 @@ export interface Routes {
|
|
|
28190
28750
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
28191
28751
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
28192
28752
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
28193
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
28753
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
28194
28754
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
28195
28755
|
external_type_display_name?: string | undefined;
|
|
28196
28756
|
/** Date and time at which the credential was created. */
|
|
@@ -28267,6 +28827,14 @@ export interface Routes {
|
|
|
28267
28827
|
card_id?: string | undefined;
|
|
28268
28828
|
credential_id?: string | undefined;
|
|
28269
28829
|
} | undefined;
|
|
28830
|
+
/** Vostio-specific metadata for the credential. */
|
|
28831
|
+
assa_abloy_vostio_metadata?: {
|
|
28832
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28833
|
+
key_id?: string | undefined;
|
|
28834
|
+
key_issuing_request_id?: string | undefined;
|
|
28835
|
+
door_names?: string[] | undefined;
|
|
28836
|
+
endpoint_id?: string | undefined;
|
|
28837
|
+
} | undefined;
|
|
28270
28838
|
is_managed: true;
|
|
28271
28839
|
} | {
|
|
28272
28840
|
/** ID of the credential. */
|
|
@@ -28290,7 +28858,7 @@ export interface Routes {
|
|
|
28290
28858
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
28291
28859
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
28292
28860
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
28293
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
28861
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
28294
28862
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
28295
28863
|
external_type_display_name?: string | undefined;
|
|
28296
28864
|
/** Date and time at which the credential was created. */
|
|
@@ -28367,6 +28935,14 @@ export interface Routes {
|
|
|
28367
28935
|
card_id?: string | undefined;
|
|
28368
28936
|
credential_id?: string | undefined;
|
|
28369
28937
|
} | undefined;
|
|
28938
|
+
/** Vostio-specific metadata for the credential. */
|
|
28939
|
+
assa_abloy_vostio_metadata?: {
|
|
28940
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28941
|
+
key_id?: string | undefined;
|
|
28942
|
+
key_issuing_request_id?: string | undefined;
|
|
28943
|
+
door_names?: string[] | undefined;
|
|
28944
|
+
endpoint_id?: string | undefined;
|
|
28945
|
+
} | undefined;
|
|
28370
28946
|
is_managed: false;
|
|
28371
28947
|
}) | null;
|
|
28372
28948
|
warnings: Array<{
|
|
@@ -28427,7 +29003,7 @@ export interface Routes {
|
|
|
28427
29003
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
28428
29004
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
28429
29005
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
28430
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29006
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
28431
29007
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
28432
29008
|
external_type_display_name?: string | undefined;
|
|
28433
29009
|
/** Date and time at which the credential was created. */
|
|
@@ -28504,6 +29080,14 @@ export interface Routes {
|
|
|
28504
29080
|
card_id?: string | undefined;
|
|
28505
29081
|
credential_id?: string | undefined;
|
|
28506
29082
|
} | undefined;
|
|
29083
|
+
/** Vostio-specific metadata for the credential. */
|
|
29084
|
+
assa_abloy_vostio_metadata?: {
|
|
29085
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29086
|
+
key_id?: string | undefined;
|
|
29087
|
+
key_issuing_request_id?: string | undefined;
|
|
29088
|
+
door_names?: string[] | undefined;
|
|
29089
|
+
endpoint_id?: string | undefined;
|
|
29090
|
+
} | undefined;
|
|
28507
29091
|
is_managed: true;
|
|
28508
29092
|
} | {
|
|
28509
29093
|
/** ID of the credential. */
|
|
@@ -28527,7 +29111,7 @@ export interface Routes {
|
|
|
28527
29111
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
28528
29112
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
28529
29113
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
28530
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29114
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
28531
29115
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
28532
29116
|
external_type_display_name?: string | undefined;
|
|
28533
29117
|
/** Date and time at which the credential was created. */
|
|
@@ -28604,6 +29188,14 @@ export interface Routes {
|
|
|
28604
29188
|
card_id?: string | undefined;
|
|
28605
29189
|
credential_id?: string | undefined;
|
|
28606
29190
|
} | undefined;
|
|
29191
|
+
/** Vostio-specific metadata for the credential. */
|
|
29192
|
+
assa_abloy_vostio_metadata?: {
|
|
29193
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29194
|
+
key_id?: string | undefined;
|
|
29195
|
+
key_issuing_request_id?: string | undefined;
|
|
29196
|
+
door_names?: string[] | undefined;
|
|
29197
|
+
endpoint_id?: string | undefined;
|
|
29198
|
+
} | undefined;
|
|
28607
29199
|
is_managed: false;
|
|
28608
29200
|
};
|
|
28609
29201
|
} | {
|
|
@@ -29034,7 +29626,7 @@ export interface Routes {
|
|
|
29034
29626
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29035
29627
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29036
29628
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29037
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29629
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
29038
29630
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29039
29631
|
external_type_display_name?: string | undefined;
|
|
29040
29632
|
/** Date and time at which the credential was created. */
|
|
@@ -29111,6 +29703,14 @@ export interface Routes {
|
|
|
29111
29703
|
card_id?: string | undefined;
|
|
29112
29704
|
credential_id?: string | undefined;
|
|
29113
29705
|
} | undefined;
|
|
29706
|
+
/** Vostio-specific metadata for the credential. */
|
|
29707
|
+
assa_abloy_vostio_metadata?: {
|
|
29708
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29709
|
+
key_id?: string | undefined;
|
|
29710
|
+
key_issuing_request_id?: string | undefined;
|
|
29711
|
+
door_names?: string[] | undefined;
|
|
29712
|
+
endpoint_id?: string | undefined;
|
|
29713
|
+
} | undefined;
|
|
29114
29714
|
is_managed: true;
|
|
29115
29715
|
} | {
|
|
29116
29716
|
/** ID of the credential. */
|
|
@@ -29134,7 +29734,7 @@ export interface Routes {
|
|
|
29134
29734
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29135
29735
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29136
29736
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29137
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29737
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
29138
29738
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29139
29739
|
external_type_display_name?: string | undefined;
|
|
29140
29740
|
/** Date and time at which the credential was created. */
|
|
@@ -29211,6 +29811,14 @@ export interface Routes {
|
|
|
29211
29811
|
card_id?: string | undefined;
|
|
29212
29812
|
credential_id?: string | undefined;
|
|
29213
29813
|
} | undefined;
|
|
29814
|
+
/** Vostio-specific metadata for the credential. */
|
|
29815
|
+
assa_abloy_vostio_metadata?: {
|
|
29816
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29817
|
+
key_id?: string | undefined;
|
|
29818
|
+
key_issuing_request_id?: string | undefined;
|
|
29819
|
+
door_names?: string[] | undefined;
|
|
29820
|
+
endpoint_id?: string | undefined;
|
|
29821
|
+
} | undefined;
|
|
29214
29822
|
is_managed: false;
|
|
29215
29823
|
}) | null;
|
|
29216
29824
|
warnings: Array<{
|
|
@@ -29271,7 +29879,7 @@ export interface Routes {
|
|
|
29271
29879
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29272
29880
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29273
29881
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29274
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29882
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
29275
29883
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29276
29884
|
external_type_display_name?: string | undefined;
|
|
29277
29885
|
/** Date and time at which the credential was created. */
|
|
@@ -29348,6 +29956,14 @@ export interface Routes {
|
|
|
29348
29956
|
card_id?: string | undefined;
|
|
29349
29957
|
credential_id?: string | undefined;
|
|
29350
29958
|
} | undefined;
|
|
29959
|
+
/** Vostio-specific metadata for the credential. */
|
|
29960
|
+
assa_abloy_vostio_metadata?: {
|
|
29961
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
29962
|
+
key_id?: string | undefined;
|
|
29963
|
+
key_issuing_request_id?: string | undefined;
|
|
29964
|
+
door_names?: string[] | undefined;
|
|
29965
|
+
endpoint_id?: string | undefined;
|
|
29966
|
+
} | undefined;
|
|
29351
29967
|
is_managed: true;
|
|
29352
29968
|
} | {
|
|
29353
29969
|
/** ID of the credential. */
|
|
@@ -29371,7 +29987,7 @@ export interface Routes {
|
|
|
29371
29987
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29372
29988
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29373
29989
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29374
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29990
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
29375
29991
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29376
29992
|
external_type_display_name?: string | undefined;
|
|
29377
29993
|
/** Date and time at which the credential was created. */
|
|
@@ -29448,6 +30064,14 @@ export interface Routes {
|
|
|
29448
30064
|
card_id?: string | undefined;
|
|
29449
30065
|
credential_id?: string | undefined;
|
|
29450
30066
|
} | undefined;
|
|
30067
|
+
/** Vostio-specific metadata for the credential. */
|
|
30068
|
+
assa_abloy_vostio_metadata?: {
|
|
30069
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
30070
|
+
key_id?: string | undefined;
|
|
30071
|
+
key_issuing_request_id?: string | undefined;
|
|
30072
|
+
door_names?: string[] | undefined;
|
|
30073
|
+
endpoint_id?: string | undefined;
|
|
30074
|
+
} | undefined;
|
|
29451
30075
|
is_managed: false;
|
|
29452
30076
|
};
|
|
29453
30077
|
} | {
|
|
@@ -31195,7 +31819,7 @@ export interface Routes {
|
|
|
31195
31819
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31196
31820
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31197
31821
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31198
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
31822
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
31199
31823
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31200
31824
|
external_type_display_name?: string | undefined;
|
|
31201
31825
|
/** Date and time at which the credential was created. */
|
|
@@ -31272,6 +31896,14 @@ export interface Routes {
|
|
|
31272
31896
|
card_id?: string | undefined;
|
|
31273
31897
|
credential_id?: string | undefined;
|
|
31274
31898
|
} | undefined;
|
|
31899
|
+
/** Vostio-specific metadata for the credential. */
|
|
31900
|
+
assa_abloy_vostio_metadata?: {
|
|
31901
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31902
|
+
key_id?: string | undefined;
|
|
31903
|
+
key_issuing_request_id?: string | undefined;
|
|
31904
|
+
door_names?: string[] | undefined;
|
|
31905
|
+
endpoint_id?: string | undefined;
|
|
31906
|
+
} | undefined;
|
|
31275
31907
|
is_managed: true;
|
|
31276
31908
|
} | {
|
|
31277
31909
|
/** ID of the credential. */
|
|
@@ -31295,7 +31927,7 @@ export interface Routes {
|
|
|
31295
31927
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31296
31928
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31297
31929
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31298
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
31930
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
31299
31931
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31300
31932
|
external_type_display_name?: string | undefined;
|
|
31301
31933
|
/** Date and time at which the credential was created. */
|
|
@@ -31372,6 +32004,14 @@ export interface Routes {
|
|
|
31372
32004
|
card_id?: string | undefined;
|
|
31373
32005
|
credential_id?: string | undefined;
|
|
31374
32006
|
} | undefined;
|
|
32007
|
+
/** Vostio-specific metadata for the credential. */
|
|
32008
|
+
assa_abloy_vostio_metadata?: {
|
|
32009
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32010
|
+
key_id?: string | undefined;
|
|
32011
|
+
key_issuing_request_id?: string | undefined;
|
|
32012
|
+
door_names?: string[] | undefined;
|
|
32013
|
+
endpoint_id?: string | undefined;
|
|
32014
|
+
} | undefined;
|
|
31375
32015
|
is_managed: false;
|
|
31376
32016
|
}) | null;
|
|
31377
32017
|
warnings: Array<{
|
|
@@ -31432,7 +32072,7 @@ export interface Routes {
|
|
|
31432
32072
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31433
32073
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31434
32074
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31435
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
32075
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
31436
32076
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31437
32077
|
external_type_display_name?: string | undefined;
|
|
31438
32078
|
/** Date and time at which the credential was created. */
|
|
@@ -31509,6 +32149,14 @@ export interface Routes {
|
|
|
31509
32149
|
card_id?: string | undefined;
|
|
31510
32150
|
credential_id?: string | undefined;
|
|
31511
32151
|
} | undefined;
|
|
32152
|
+
/** Vostio-specific metadata for the credential. */
|
|
32153
|
+
assa_abloy_vostio_metadata?: {
|
|
32154
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32155
|
+
key_id?: string | undefined;
|
|
32156
|
+
key_issuing_request_id?: string | undefined;
|
|
32157
|
+
door_names?: string[] | undefined;
|
|
32158
|
+
endpoint_id?: string | undefined;
|
|
32159
|
+
} | undefined;
|
|
31512
32160
|
is_managed: true;
|
|
31513
32161
|
} | {
|
|
31514
32162
|
/** ID of the credential. */
|
|
@@ -31532,7 +32180,7 @@ export interface Routes {
|
|
|
31532
32180
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31533
32181
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31534
32182
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31535
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
32183
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
31536
32184
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31537
32185
|
external_type_display_name?: string | undefined;
|
|
31538
32186
|
/** Date and time at which the credential was created. */
|
|
@@ -31609,6 +32257,14 @@ export interface Routes {
|
|
|
31609
32257
|
card_id?: string | undefined;
|
|
31610
32258
|
credential_id?: string | undefined;
|
|
31611
32259
|
} | undefined;
|
|
32260
|
+
/** Vostio-specific metadata for the credential. */
|
|
32261
|
+
assa_abloy_vostio_metadata?: {
|
|
32262
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32263
|
+
key_id?: string | undefined;
|
|
32264
|
+
key_issuing_request_id?: string | undefined;
|
|
32265
|
+
door_names?: string[] | undefined;
|
|
32266
|
+
endpoint_id?: string | undefined;
|
|
32267
|
+
} | undefined;
|
|
31612
32268
|
is_managed: false;
|
|
31613
32269
|
};
|
|
31614
32270
|
} | {
|
|
@@ -32215,7 +32871,7 @@ export interface Routes {
|
|
|
32215
32871
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32216
32872
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32217
32873
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32218
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
32874
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
32219
32875
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32220
32876
|
external_type_display_name?: string | undefined;
|
|
32221
32877
|
/** Date and time at which the credential was created. */
|
|
@@ -32292,6 +32948,14 @@ export interface Routes {
|
|
|
32292
32948
|
card_id?: string | undefined;
|
|
32293
32949
|
credential_id?: string | undefined;
|
|
32294
32950
|
} | undefined;
|
|
32951
|
+
/** Vostio-specific metadata for the credential. */
|
|
32952
|
+
assa_abloy_vostio_metadata?: {
|
|
32953
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32954
|
+
key_id?: string | undefined;
|
|
32955
|
+
key_issuing_request_id?: string | undefined;
|
|
32956
|
+
door_names?: string[] | undefined;
|
|
32957
|
+
endpoint_id?: string | undefined;
|
|
32958
|
+
} | undefined;
|
|
32295
32959
|
is_managed: true;
|
|
32296
32960
|
} | {
|
|
32297
32961
|
/** ID of the credential. */
|
|
@@ -32315,7 +32979,7 @@ export interface Routes {
|
|
|
32315
32979
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32316
32980
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32317
32981
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32318
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
32982
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
32319
32983
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32320
32984
|
external_type_display_name?: string | undefined;
|
|
32321
32985
|
/** Date and time at which the credential was created. */
|
|
@@ -32392,6 +33056,14 @@ export interface Routes {
|
|
|
32392
33056
|
card_id?: string | undefined;
|
|
32393
33057
|
credential_id?: string | undefined;
|
|
32394
33058
|
} | undefined;
|
|
33059
|
+
/** Vostio-specific metadata for the credential. */
|
|
33060
|
+
assa_abloy_vostio_metadata?: {
|
|
33061
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33062
|
+
key_id?: string | undefined;
|
|
33063
|
+
key_issuing_request_id?: string | undefined;
|
|
33064
|
+
door_names?: string[] | undefined;
|
|
33065
|
+
endpoint_id?: string | undefined;
|
|
33066
|
+
} | undefined;
|
|
32395
33067
|
is_managed: false;
|
|
32396
33068
|
}) | null;
|
|
32397
33069
|
warnings: Array<{
|
|
@@ -32452,7 +33124,7 @@ export interface Routes {
|
|
|
32452
33124
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32453
33125
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32454
33126
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32455
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33127
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
32456
33128
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32457
33129
|
external_type_display_name?: string | undefined;
|
|
32458
33130
|
/** Date and time at which the credential was created. */
|
|
@@ -32529,6 +33201,14 @@ export interface Routes {
|
|
|
32529
33201
|
card_id?: string | undefined;
|
|
32530
33202
|
credential_id?: string | undefined;
|
|
32531
33203
|
} | undefined;
|
|
33204
|
+
/** Vostio-specific metadata for the credential. */
|
|
33205
|
+
assa_abloy_vostio_metadata?: {
|
|
33206
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33207
|
+
key_id?: string | undefined;
|
|
33208
|
+
key_issuing_request_id?: string | undefined;
|
|
33209
|
+
door_names?: string[] | undefined;
|
|
33210
|
+
endpoint_id?: string | undefined;
|
|
33211
|
+
} | undefined;
|
|
32532
33212
|
is_managed: true;
|
|
32533
33213
|
} | {
|
|
32534
33214
|
/** ID of the credential. */
|
|
@@ -32552,7 +33232,7 @@ export interface Routes {
|
|
|
32552
33232
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32553
33233
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32554
33234
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32555
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33235
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
32556
33236
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32557
33237
|
external_type_display_name?: string | undefined;
|
|
32558
33238
|
/** Date and time at which the credential was created. */
|
|
@@ -32629,6 +33309,14 @@ export interface Routes {
|
|
|
32629
33309
|
card_id?: string | undefined;
|
|
32630
33310
|
credential_id?: string | undefined;
|
|
32631
33311
|
} | undefined;
|
|
33312
|
+
/** Vostio-specific metadata for the credential. */
|
|
33313
|
+
assa_abloy_vostio_metadata?: {
|
|
33314
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33315
|
+
key_id?: string | undefined;
|
|
33316
|
+
key_issuing_request_id?: string | undefined;
|
|
33317
|
+
door_names?: string[] | undefined;
|
|
33318
|
+
endpoint_id?: string | undefined;
|
|
33319
|
+
} | undefined;
|
|
32632
33320
|
is_managed: false;
|
|
32633
33321
|
};
|
|
32634
33322
|
} | {
|
|
@@ -33078,7 +33766,7 @@ export interface Routes {
|
|
|
33078
33766
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33079
33767
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33080
33768
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33081
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33769
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
33082
33770
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33083
33771
|
external_type_display_name?: string | undefined;
|
|
33084
33772
|
/** Date and time at which the credential was created. */
|
|
@@ -33155,6 +33843,14 @@ export interface Routes {
|
|
|
33155
33843
|
card_id?: string | undefined;
|
|
33156
33844
|
credential_id?: string | undefined;
|
|
33157
33845
|
} | undefined;
|
|
33846
|
+
/** Vostio-specific metadata for the credential. */
|
|
33847
|
+
assa_abloy_vostio_metadata?: {
|
|
33848
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33849
|
+
key_id?: string | undefined;
|
|
33850
|
+
key_issuing_request_id?: string | undefined;
|
|
33851
|
+
door_names?: string[] | undefined;
|
|
33852
|
+
endpoint_id?: string | undefined;
|
|
33853
|
+
} | undefined;
|
|
33158
33854
|
is_managed: true;
|
|
33159
33855
|
} | {
|
|
33160
33856
|
/** ID of the credential. */
|
|
@@ -33178,7 +33874,7 @@ export interface Routes {
|
|
|
33178
33874
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33179
33875
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33180
33876
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33181
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33877
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
33182
33878
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33183
33879
|
external_type_display_name?: string | undefined;
|
|
33184
33880
|
/** Date and time at which the credential was created. */
|
|
@@ -33255,6 +33951,14 @@ export interface Routes {
|
|
|
33255
33951
|
card_id?: string | undefined;
|
|
33256
33952
|
credential_id?: string | undefined;
|
|
33257
33953
|
} | undefined;
|
|
33954
|
+
/** Vostio-specific metadata for the credential. */
|
|
33955
|
+
assa_abloy_vostio_metadata?: {
|
|
33956
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33957
|
+
key_id?: string | undefined;
|
|
33958
|
+
key_issuing_request_id?: string | undefined;
|
|
33959
|
+
door_names?: string[] | undefined;
|
|
33960
|
+
endpoint_id?: string | undefined;
|
|
33961
|
+
} | undefined;
|
|
33258
33962
|
is_managed: false;
|
|
33259
33963
|
}) | null;
|
|
33260
33964
|
warnings: Array<{
|
|
@@ -33315,7 +34019,7 @@ export interface Routes {
|
|
|
33315
34019
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33316
34020
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33317
34021
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33318
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
34022
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
33319
34023
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33320
34024
|
external_type_display_name?: string | undefined;
|
|
33321
34025
|
/** Date and time at which the credential was created. */
|
|
@@ -33392,6 +34096,14 @@ export interface Routes {
|
|
|
33392
34096
|
card_id?: string | undefined;
|
|
33393
34097
|
credential_id?: string | undefined;
|
|
33394
34098
|
} | undefined;
|
|
34099
|
+
/** Vostio-specific metadata for the credential. */
|
|
34100
|
+
assa_abloy_vostio_metadata?: {
|
|
34101
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
34102
|
+
key_id?: string | undefined;
|
|
34103
|
+
key_issuing_request_id?: string | undefined;
|
|
34104
|
+
door_names?: string[] | undefined;
|
|
34105
|
+
endpoint_id?: string | undefined;
|
|
34106
|
+
} | undefined;
|
|
33395
34107
|
is_managed: true;
|
|
33396
34108
|
} | {
|
|
33397
34109
|
/** ID of the credential. */
|
|
@@ -33415,7 +34127,7 @@ export interface Routes {
|
|
|
33415
34127
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33416
34128
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33417
34129
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33418
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
34130
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
33419
34131
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33420
34132
|
external_type_display_name?: string | undefined;
|
|
33421
34133
|
/** Date and time at which the credential was created. */
|
|
@@ -33492,6 +34204,14 @@ export interface Routes {
|
|
|
33492
34204
|
card_id?: string | undefined;
|
|
33493
34205
|
credential_id?: string | undefined;
|
|
33494
34206
|
} | undefined;
|
|
34207
|
+
/** Vostio-specific metadata for the credential. */
|
|
34208
|
+
assa_abloy_vostio_metadata?: {
|
|
34209
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
34210
|
+
key_id?: string | undefined;
|
|
34211
|
+
key_issuing_request_id?: string | undefined;
|
|
34212
|
+
door_names?: string[] | undefined;
|
|
34213
|
+
endpoint_id?: string | undefined;
|
|
34214
|
+
} | undefined;
|
|
33495
34215
|
is_managed: false;
|
|
33496
34216
|
};
|
|
33497
34217
|
} | {
|
|
@@ -35919,7 +36639,7 @@ export interface Routes {
|
|
|
35919
36639
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
35920
36640
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
35921
36641
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
35922
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
36642
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
35923
36643
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
35924
36644
|
external_type_display_name?: string | undefined;
|
|
35925
36645
|
/** Date and time at which the credential was created. */
|
|
@@ -35996,6 +36716,14 @@ export interface Routes {
|
|
|
35996
36716
|
card_id?: string | undefined;
|
|
35997
36717
|
credential_id?: string | undefined;
|
|
35998
36718
|
} | undefined;
|
|
36719
|
+
/** Vostio-specific metadata for the credential. */
|
|
36720
|
+
assa_abloy_vostio_metadata?: {
|
|
36721
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
36722
|
+
key_id?: string | undefined;
|
|
36723
|
+
key_issuing_request_id?: string | undefined;
|
|
36724
|
+
door_names?: string[] | undefined;
|
|
36725
|
+
endpoint_id?: string | undefined;
|
|
36726
|
+
} | undefined;
|
|
35999
36727
|
is_managed: true;
|
|
36000
36728
|
} | {
|
|
36001
36729
|
/** ID of the credential. */
|
|
@@ -36019,7 +36747,7 @@ export interface Routes {
|
|
|
36019
36747
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
36020
36748
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
36021
36749
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
36022
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
36750
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
36023
36751
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
36024
36752
|
external_type_display_name?: string | undefined;
|
|
36025
36753
|
/** Date and time at which the credential was created. */
|
|
@@ -36096,6 +36824,14 @@ export interface Routes {
|
|
|
36096
36824
|
card_id?: string | undefined;
|
|
36097
36825
|
credential_id?: string | undefined;
|
|
36098
36826
|
} | undefined;
|
|
36827
|
+
/** Vostio-specific metadata for the credential. */
|
|
36828
|
+
assa_abloy_vostio_metadata?: {
|
|
36829
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
36830
|
+
key_id?: string | undefined;
|
|
36831
|
+
key_issuing_request_id?: string | undefined;
|
|
36832
|
+
door_names?: string[] | undefined;
|
|
36833
|
+
endpoint_id?: string | undefined;
|
|
36834
|
+
} | undefined;
|
|
36099
36835
|
is_managed: false;
|
|
36100
36836
|
}) | null;
|
|
36101
36837
|
warnings: Array<{
|
|
@@ -36156,7 +36892,7 @@ export interface Routes {
|
|
|
36156
36892
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
36157
36893
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
36158
36894
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
36159
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
36895
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
36160
36896
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
36161
36897
|
external_type_display_name?: string | undefined;
|
|
36162
36898
|
/** Date and time at which the credential was created. */
|
|
@@ -36233,6 +36969,14 @@ export interface Routes {
|
|
|
36233
36969
|
card_id?: string | undefined;
|
|
36234
36970
|
credential_id?: string | undefined;
|
|
36235
36971
|
} | undefined;
|
|
36972
|
+
/** Vostio-specific metadata for the credential. */
|
|
36973
|
+
assa_abloy_vostio_metadata?: {
|
|
36974
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
36975
|
+
key_id?: string | undefined;
|
|
36976
|
+
key_issuing_request_id?: string | undefined;
|
|
36977
|
+
door_names?: string[] | undefined;
|
|
36978
|
+
endpoint_id?: string | undefined;
|
|
36979
|
+
} | undefined;
|
|
36236
36980
|
is_managed: true;
|
|
36237
36981
|
} | {
|
|
36238
36982
|
/** ID of the credential. */
|
|
@@ -36256,7 +37000,7 @@ export interface Routes {
|
|
|
36256
37000
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
36257
37001
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
36258
37002
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
36259
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
37003
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key' | 'salto_space_card' | 'salto_space_mobile_key') | undefined;
|
|
36260
37004
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
36261
37005
|
external_type_display_name?: string | undefined;
|
|
36262
37006
|
/** Date and time at which the credential was created. */
|
|
@@ -36333,6 +37077,14 @@ export interface Routes {
|
|
|
36333
37077
|
card_id?: string | undefined;
|
|
36334
37078
|
credential_id?: string | undefined;
|
|
36335
37079
|
} | undefined;
|
|
37080
|
+
/** Vostio-specific metadata for the credential. */
|
|
37081
|
+
assa_abloy_vostio_metadata?: {
|
|
37082
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
37083
|
+
key_id?: string | undefined;
|
|
37084
|
+
key_issuing_request_id?: string | undefined;
|
|
37085
|
+
door_names?: string[] | undefined;
|
|
37086
|
+
endpoint_id?: string | undefined;
|
|
37087
|
+
} | undefined;
|
|
36336
37088
|
is_managed: false;
|
|
36337
37089
|
};
|
|
36338
37090
|
} | {
|