@seamapi/types 1.336.0 → 1.337.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 +33 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +202 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +2 -4
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +39 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +25 -10
- package/lib/seam/connect/models/action-attempts/encode-credential.js +5 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/openapi.js +25 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +157 -94
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -4
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +25 -28
- package/src/lib/seam/connect/route-types.ts +272 -376
|
@@ -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' | '
|
|
141
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_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. */
|
|
@@ -246,7 +246,7 @@ export interface Routes {
|
|
|
246
246
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
247
247
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
248
248
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
249
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
249
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
250
250
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
251
251
|
external_type_display_name?: string | undefined;
|
|
252
252
|
/** Date and time at which the credential was created. */
|
|
@@ -391,7 +391,7 @@ export interface Routes {
|
|
|
391
391
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
392
392
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
393
393
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
394
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
394
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
395
395
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
396
396
|
external_type_display_name?: string | undefined;
|
|
397
397
|
/** Date and time at which the credential was created. */
|
|
@@ -499,7 +499,7 @@ export interface Routes {
|
|
|
499
499
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
500
500
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
501
501
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
502
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
502
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
503
503
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
504
504
|
external_type_display_name?: string | undefined;
|
|
505
505
|
/** Date and time at which the credential was created. */
|
|
@@ -604,6 +604,9 @@ export interface Routes {
|
|
|
604
604
|
} | {
|
|
605
605
|
type: 'incompatible_card_format';
|
|
606
606
|
message: string;
|
|
607
|
+
} | {
|
|
608
|
+
type: 'credential_cannot_be_reissued';
|
|
609
|
+
message: string;
|
|
607
610
|
};
|
|
608
611
|
} | {
|
|
609
612
|
/** The ID of the action attempt. */
|
|
@@ -1545,7 +1548,7 @@ export interface Routes {
|
|
|
1545
1548
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1546
1549
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1547
1550
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1548
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
1551
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
1549
1552
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1550
1553
|
external_type_display_name?: string | undefined;
|
|
1551
1554
|
/** Date and time at which the credential was created. */
|
|
@@ -1653,7 +1656,7 @@ export interface Routes {
|
|
|
1653
1656
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1654
1657
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1655
1658
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1656
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
1659
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
1657
1660
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1658
1661
|
external_type_display_name?: string | undefined;
|
|
1659
1662
|
/** Date and time at which the credential was created. */
|
|
@@ -1798,7 +1801,7 @@ export interface Routes {
|
|
|
1798
1801
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1799
1802
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1800
1803
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1801
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
1804
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
1802
1805
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1803
1806
|
external_type_display_name?: string | undefined;
|
|
1804
1807
|
/** Date and time at which the credential was created. */
|
|
@@ -1906,7 +1909,7 @@ export interface Routes {
|
|
|
1906
1909
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1907
1910
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1908
1911
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1909
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
1912
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
1910
1913
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1911
1914
|
external_type_display_name?: string | undefined;
|
|
1912
1915
|
/** Date and time at which the credential was created. */
|
|
@@ -2011,6 +2014,9 @@ export interface Routes {
|
|
|
2011
2014
|
} | {
|
|
2012
2015
|
type: 'incompatible_card_format';
|
|
2013
2016
|
message: string;
|
|
2017
|
+
} | {
|
|
2018
|
+
type: 'credential_cannot_be_reissued';
|
|
2019
|
+
message: string;
|
|
2014
2020
|
};
|
|
2015
2021
|
} | {
|
|
2016
2022
|
/** The ID of the action attempt. */
|
|
@@ -3758,7 +3764,7 @@ export interface Routes {
|
|
|
3758
3764
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3759
3765
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3760
3766
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3761
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
3767
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
3762
3768
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3763
3769
|
external_type_display_name?: string | undefined;
|
|
3764
3770
|
/** Date and time at which the credential was created. */
|
|
@@ -3866,7 +3872,7 @@ export interface Routes {
|
|
|
3866
3872
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3867
3873
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3868
3874
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3869
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
3875
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
3870
3876
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3871
3877
|
external_type_display_name?: string | undefined;
|
|
3872
3878
|
/** Date and time at which the credential was created. */
|
|
@@ -4011,7 +4017,7 @@ export interface Routes {
|
|
|
4011
4017
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
4012
4018
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
4013
4019
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
4014
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
4020
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
4015
4021
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
4016
4022
|
external_type_display_name?: string | undefined;
|
|
4017
4023
|
/** Date and time at which the credential was created. */
|
|
@@ -4119,7 +4125,7 @@ export interface Routes {
|
|
|
4119
4125
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
4120
4126
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
4121
4127
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
4122
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
4128
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
4123
4129
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
4124
4130
|
external_type_display_name?: string | undefined;
|
|
4125
4131
|
/** Date and time at which the credential was created. */
|
|
@@ -4224,6 +4230,9 @@ export interface Routes {
|
|
|
4224
4230
|
} | {
|
|
4225
4231
|
type: 'incompatible_card_format';
|
|
4226
4232
|
message: string;
|
|
4233
|
+
} | {
|
|
4234
|
+
type: 'credential_cannot_be_reissued';
|
|
4235
|
+
message: string;
|
|
4227
4236
|
};
|
|
4228
4237
|
} | {
|
|
4229
4238
|
/** The ID of the action attempt. */
|
|
@@ -5152,7 +5161,7 @@ export interface Routes {
|
|
|
5152
5161
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5153
5162
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5154
5163
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5155
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
5164
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
5156
5165
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5157
5166
|
external_type_display_name?: string | undefined;
|
|
5158
5167
|
/** Date and time at which the credential was created. */
|
|
@@ -5260,7 +5269,7 @@ export interface Routes {
|
|
|
5260
5269
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5261
5270
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5262
5271
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5263
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
5272
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
5264
5273
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5265
5274
|
external_type_display_name?: string | undefined;
|
|
5266
5275
|
/** Date and time at which the credential was created. */
|
|
@@ -5405,7 +5414,7 @@ export interface Routes {
|
|
|
5405
5414
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5406
5415
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5407
5416
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5408
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
5417
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
5409
5418
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5410
5419
|
external_type_display_name?: string | undefined;
|
|
5411
5420
|
/** Date and time at which the credential was created. */
|
|
@@ -5513,7 +5522,7 @@ export interface Routes {
|
|
|
5513
5522
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5514
5523
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5515
5524
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5516
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
5525
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
5517
5526
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5518
5527
|
external_type_display_name?: string | undefined;
|
|
5519
5528
|
/** Date and time at which the credential was created. */
|
|
@@ -5618,6 +5627,9 @@ export interface Routes {
|
|
|
5618
5627
|
} | {
|
|
5619
5628
|
type: 'incompatible_card_format';
|
|
5620
5629
|
message: string;
|
|
5630
|
+
} | {
|
|
5631
|
+
type: 'credential_cannot_be_reissued';
|
|
5632
|
+
message: string;
|
|
5621
5633
|
};
|
|
5622
5634
|
} | {
|
|
5623
5635
|
/** The ID of the action attempt. */
|
|
@@ -6381,7 +6393,7 @@ export interface Routes {
|
|
|
6381
6393
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6382
6394
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6383
6395
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6384
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
6396
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
6385
6397
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6386
6398
|
external_type_display_name?: string | undefined;
|
|
6387
6399
|
/** Date and time at which the credential was created. */
|
|
@@ -6544,7 +6556,7 @@ export interface Routes {
|
|
|
6544
6556
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6545
6557
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6546
6558
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6547
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
6559
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
6548
6560
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6549
6561
|
external_type_display_name?: string | undefined;
|
|
6550
6562
|
/** Date and time at which the credential was created. */
|
|
@@ -6676,7 +6688,7 @@ export interface Routes {
|
|
|
6676
6688
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6677
6689
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6678
6690
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6679
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
6691
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
6680
6692
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6681
6693
|
external_type_display_name?: string | undefined;
|
|
6682
6694
|
/** Date and time at which the credential was created. */
|
|
@@ -6812,7 +6824,7 @@ export interface Routes {
|
|
|
6812
6824
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6813
6825
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6814
6826
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6815
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
6827
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
6816
6828
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6817
6829
|
external_type_display_name?: string | undefined;
|
|
6818
6830
|
/** Date and time at which the credential was created. */
|
|
@@ -6952,7 +6964,7 @@ export interface Routes {
|
|
|
6952
6964
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6953
6965
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6954
6966
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6955
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
6967
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
6956
6968
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6957
6969
|
external_type_display_name?: string | undefined;
|
|
6958
6970
|
/** Date and time at which the credential was created. */
|
|
@@ -7144,7 +7156,7 @@ export interface Routes {
|
|
|
7144
7156
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7145
7157
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7146
7158
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7147
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
7159
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
7148
7160
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7149
7161
|
external_type_display_name?: string | undefined;
|
|
7150
7162
|
/** Date and time at which the credential was created. */
|
|
@@ -7268,7 +7280,7 @@ export interface Routes {
|
|
|
7268
7280
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7269
7281
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7270
7282
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7271
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
7283
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
7272
7284
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7273
7285
|
external_type_display_name?: string | undefined;
|
|
7274
7286
|
/** Date and time at which the credential was created. */
|
|
@@ -7401,7 +7413,7 @@ export interface Routes {
|
|
|
7401
7413
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7402
7414
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7403
7415
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7404
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
7416
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
7405
7417
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7406
7418
|
external_type_display_name?: string | undefined;
|
|
7407
7419
|
/** Date and time at which the credential was created. */
|
|
@@ -7529,7 +7541,7 @@ export interface Routes {
|
|
|
7529
7541
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7530
7542
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7531
7543
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7532
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
7544
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
7533
7545
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7534
7546
|
external_type_display_name?: string | undefined;
|
|
7535
7547
|
/** Date and time at which the credential was created. */
|
|
@@ -7744,7 +7756,7 @@ export interface Routes {
|
|
|
7744
7756
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7745
7757
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7746
7758
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7747
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
7759
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
7748
7760
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7749
7761
|
external_type_display_name?: string | undefined;
|
|
7750
7762
|
/** Date and time at which the credential was created. */
|
|
@@ -7852,7 +7864,7 @@ export interface Routes {
|
|
|
7852
7864
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7853
7865
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7854
7866
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7855
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
7867
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
7856
7868
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7857
7869
|
external_type_display_name?: string | undefined;
|
|
7858
7870
|
/** Date and time at which the credential was created. */
|
|
@@ -7997,7 +8009,7 @@ export interface Routes {
|
|
|
7997
8009
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7998
8010
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7999
8011
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8000
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
8012
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
8001
8013
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8002
8014
|
external_type_display_name?: string | undefined;
|
|
8003
8015
|
/** Date and time at which the credential was created. */
|
|
@@ -8105,7 +8117,7 @@ export interface Routes {
|
|
|
8105
8117
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8106
8118
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8107
8119
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8108
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
8120
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
8109
8121
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8110
8122
|
external_type_display_name?: string | undefined;
|
|
8111
8123
|
/** Date and time at which the credential was created. */
|
|
@@ -8210,6 +8222,9 @@ export interface Routes {
|
|
|
8210
8222
|
} | {
|
|
8211
8223
|
type: 'incompatible_card_format';
|
|
8212
8224
|
message: string;
|
|
8225
|
+
} | {
|
|
8226
|
+
type: 'credential_cannot_be_reissued';
|
|
8227
|
+
message: string;
|
|
8213
8228
|
};
|
|
8214
8229
|
} | {
|
|
8215
8230
|
/** The ID of the action attempt. */
|
|
@@ -8656,7 +8671,7 @@ export interface Routes {
|
|
|
8656
8671
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8657
8672
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8658
8673
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8659
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
8674
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
8660
8675
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8661
8676
|
external_type_display_name?: string | undefined;
|
|
8662
8677
|
/** Date and time at which the credential was created. */
|
|
@@ -8764,7 +8779,7 @@ export interface Routes {
|
|
|
8764
8779
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8765
8780
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8766
8781
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8767
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
8782
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
8768
8783
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8769
8784
|
external_type_display_name?: string | undefined;
|
|
8770
8785
|
/** Date and time at which the credential was created. */
|
|
@@ -8909,7 +8924,7 @@ export interface Routes {
|
|
|
8909
8924
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8910
8925
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8911
8926
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8912
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
8927
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
8913
8928
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8914
8929
|
external_type_display_name?: string | undefined;
|
|
8915
8930
|
/** Date and time at which the credential was created. */
|
|
@@ -9017,7 +9032,7 @@ export interface Routes {
|
|
|
9017
9032
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9018
9033
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9019
9034
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9020
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
9035
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
9021
9036
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9022
9037
|
external_type_display_name?: string | undefined;
|
|
9023
9038
|
/** Date and time at which the credential was created. */
|
|
@@ -9122,6 +9137,9 @@ export interface Routes {
|
|
|
9122
9137
|
} | {
|
|
9123
9138
|
type: 'incompatible_card_format';
|
|
9124
9139
|
message: string;
|
|
9140
|
+
} | {
|
|
9141
|
+
type: 'credential_cannot_be_reissued';
|
|
9142
|
+
message: string;
|
|
9125
9143
|
};
|
|
9126
9144
|
} | {
|
|
9127
9145
|
/** The ID of the action attempt. */
|
|
@@ -9654,7 +9672,7 @@ export interface Routes {
|
|
|
9654
9672
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9655
9673
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9656
9674
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9657
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
9675
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
9658
9676
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9659
9677
|
external_type_display_name?: string | undefined;
|
|
9660
9678
|
/** Date and time at which the credential was created. */
|
|
@@ -10983,7 +11001,7 @@ export interface Routes {
|
|
|
10983
11001
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10984
11002
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10985
11003
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10986
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
11004
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
10987
11005
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10988
11006
|
external_type_display_name?: string | undefined;
|
|
10989
11007
|
/** Date and time at which the credential was created. */
|
|
@@ -11091,7 +11109,7 @@ export interface Routes {
|
|
|
11091
11109
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11092
11110
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11093
11111
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11094
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
11112
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
11095
11113
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11096
11114
|
external_type_display_name?: string | undefined;
|
|
11097
11115
|
/** Date and time at which the credential was created. */
|
|
@@ -11236,7 +11254,7 @@ export interface Routes {
|
|
|
11236
11254
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11237
11255
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11238
11256
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11239
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
11257
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
11240
11258
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11241
11259
|
external_type_display_name?: string | undefined;
|
|
11242
11260
|
/** Date and time at which the credential was created. */
|
|
@@ -11344,7 +11362,7 @@ export interface Routes {
|
|
|
11344
11362
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11345
11363
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11346
11364
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11347
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
11365
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
11348
11366
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11349
11367
|
external_type_display_name?: string | undefined;
|
|
11350
11368
|
/** Date and time at which the credential was created. */
|
|
@@ -11449,6 +11467,9 @@ export interface Routes {
|
|
|
11449
11467
|
} | {
|
|
11450
11468
|
type: 'incompatible_card_format';
|
|
11451
11469
|
message: string;
|
|
11470
|
+
} | {
|
|
11471
|
+
type: 'credential_cannot_be_reissued';
|
|
11472
|
+
message: string;
|
|
11452
11473
|
};
|
|
11453
11474
|
} | {
|
|
11454
11475
|
/** The ID of the action attempt. */
|
|
@@ -11847,7 +11868,7 @@ export interface Routes {
|
|
|
11847
11868
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11848
11869
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11849
11870
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11850
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
11871
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
11851
11872
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11852
11873
|
external_type_display_name?: string | undefined;
|
|
11853
11874
|
/** Date and time at which the credential was created. */
|
|
@@ -11955,7 +11976,7 @@ export interface Routes {
|
|
|
11955
11976
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
11956
11977
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
11957
11978
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
11958
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
11979
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
11959
11980
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
11960
11981
|
external_type_display_name?: string | undefined;
|
|
11961
11982
|
/** Date and time at which the credential was created. */
|
|
@@ -12100,7 +12121,7 @@ export interface Routes {
|
|
|
12100
12121
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
12101
12122
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
12102
12123
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
12103
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
12124
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
12104
12125
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
12105
12126
|
external_type_display_name?: string | undefined;
|
|
12106
12127
|
/** Date and time at which the credential was created. */
|
|
@@ -12208,7 +12229,7 @@ export interface Routes {
|
|
|
12208
12229
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
12209
12230
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
12210
12231
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
12211
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
12232
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
12212
12233
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
12213
12234
|
external_type_display_name?: string | undefined;
|
|
12214
12235
|
/** Date and time at which the credential was created. */
|
|
@@ -12313,6 +12334,9 @@ export interface Routes {
|
|
|
12313
12334
|
} | {
|
|
12314
12335
|
type: 'incompatible_card_format';
|
|
12315
12336
|
message: string;
|
|
12337
|
+
} | {
|
|
12338
|
+
type: 'credential_cannot_be_reissued';
|
|
12339
|
+
message: string;
|
|
12316
12340
|
};
|
|
12317
12341
|
} | {
|
|
12318
12342
|
/** The ID of the action attempt. */
|
|
@@ -20112,7 +20136,7 @@ export interface Routes {
|
|
|
20112
20136
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20113
20137
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20114
20138
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20115
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
20139
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
20116
20140
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20117
20141
|
external_type_display_name?: string | undefined;
|
|
20118
20142
|
/** Date and time at which the credential was created. */
|
|
@@ -20220,7 +20244,7 @@ export interface Routes {
|
|
|
20220
20244
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20221
20245
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20222
20246
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20223
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
20247
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
20224
20248
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20225
20249
|
external_type_display_name?: string | undefined;
|
|
20226
20250
|
/** Date and time at which the credential was created. */
|
|
@@ -20365,7 +20389,7 @@ export interface Routes {
|
|
|
20365
20389
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20366
20390
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20367
20391
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20368
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
20392
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
20369
20393
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20370
20394
|
external_type_display_name?: string | undefined;
|
|
20371
20395
|
/** Date and time at which the credential was created. */
|
|
@@ -20473,7 +20497,7 @@ export interface Routes {
|
|
|
20473
20497
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20474
20498
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20475
20499
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20476
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
20500
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
20477
20501
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20478
20502
|
external_type_display_name?: string | undefined;
|
|
20479
20503
|
/** Date and time at which the credential was created. */
|
|
@@ -20578,6 +20602,9 @@ export interface Routes {
|
|
|
20578
20602
|
} | {
|
|
20579
20603
|
type: 'incompatible_card_format';
|
|
20580
20604
|
message: string;
|
|
20605
|
+
} | {
|
|
20606
|
+
type: 'credential_cannot_be_reissued';
|
|
20607
|
+
message: string;
|
|
20581
20608
|
};
|
|
20582
20609
|
} | {
|
|
20583
20610
|
/** The ID of the action attempt. */
|
|
@@ -20978,7 +21005,7 @@ export interface Routes {
|
|
|
20978
21005
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20979
21006
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20980
21007
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20981
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
21008
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
20982
21009
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20983
21010
|
external_type_display_name?: string | undefined;
|
|
20984
21011
|
/** Date and time at which the credential was created. */
|
|
@@ -21086,7 +21113,7 @@ export interface Routes {
|
|
|
21086
21113
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21087
21114
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21088
21115
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21089
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
21116
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
21090
21117
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21091
21118
|
external_type_display_name?: string | undefined;
|
|
21092
21119
|
/** Date and time at which the credential was created. */
|
|
@@ -21231,7 +21258,7 @@ export interface Routes {
|
|
|
21231
21258
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21232
21259
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21233
21260
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21234
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
21261
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
21235
21262
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21236
21263
|
external_type_display_name?: string | undefined;
|
|
21237
21264
|
/** Date and time at which the credential was created. */
|
|
@@ -21339,7 +21366,7 @@ export interface Routes {
|
|
|
21339
21366
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21340
21367
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21341
21368
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21342
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
21369
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
21343
21370
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21344
21371
|
external_type_display_name?: string | undefined;
|
|
21345
21372
|
/** Date and time at which the credential was created. */
|
|
@@ -21444,6 +21471,9 @@ export interface Routes {
|
|
|
21444
21471
|
} | {
|
|
21445
21472
|
type: 'incompatible_card_format';
|
|
21446
21473
|
message: string;
|
|
21474
|
+
} | {
|
|
21475
|
+
type: 'credential_cannot_be_reissued';
|
|
21476
|
+
message: string;
|
|
21447
21477
|
};
|
|
21448
21478
|
} | {
|
|
21449
21479
|
/** The ID of the action attempt. */
|
|
@@ -23209,7 +23239,7 @@ export interface Routes {
|
|
|
23209
23239
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23210
23240
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23211
23241
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23212
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
23242
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
23213
23243
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23214
23244
|
external_type_display_name?: string | undefined;
|
|
23215
23245
|
/** Date and time at which the credential was created. */
|
|
@@ -23317,7 +23347,7 @@ export interface Routes {
|
|
|
23317
23347
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23318
23348
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23319
23349
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23320
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
23350
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
23321
23351
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23322
23352
|
external_type_display_name?: string | undefined;
|
|
23323
23353
|
/** Date and time at which the credential was created. */
|
|
@@ -23462,7 +23492,7 @@ export interface Routes {
|
|
|
23462
23492
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23463
23493
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23464
23494
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23465
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
23495
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
23466
23496
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23467
23497
|
external_type_display_name?: string | undefined;
|
|
23468
23498
|
/** Date and time at which the credential was created. */
|
|
@@ -23570,7 +23600,7 @@ export interface Routes {
|
|
|
23570
23600
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23571
23601
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23572
23602
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23573
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
23603
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
23574
23604
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23575
23605
|
external_type_display_name?: string | undefined;
|
|
23576
23606
|
/** Date and time at which the credential was created. */
|
|
@@ -23675,6 +23705,9 @@ export interface Routes {
|
|
|
23675
23705
|
} | {
|
|
23676
23706
|
type: 'incompatible_card_format';
|
|
23677
23707
|
message: string;
|
|
23708
|
+
} | {
|
|
23709
|
+
type: 'credential_cannot_be_reissued';
|
|
23710
|
+
message: string;
|
|
23678
23711
|
};
|
|
23679
23712
|
} | {
|
|
23680
23713
|
/** The ID of the action attempt. */
|
|
@@ -24086,7 +24119,7 @@ export interface Routes {
|
|
|
24086
24119
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24087
24120
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24088
24121
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24089
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
24122
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
24090
24123
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24091
24124
|
external_type_display_name?: string | undefined;
|
|
24092
24125
|
/** Date and time at which the credential was created. */
|
|
@@ -24194,7 +24227,7 @@ export interface Routes {
|
|
|
24194
24227
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24195
24228
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24196
24229
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24197
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
24230
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
24198
24231
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24199
24232
|
external_type_display_name?: string | undefined;
|
|
24200
24233
|
/** Date and time at which the credential was created. */
|
|
@@ -24339,7 +24372,7 @@ export interface Routes {
|
|
|
24339
24372
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24340
24373
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24341
24374
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24342
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
24375
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
24343
24376
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24344
24377
|
external_type_display_name?: string | undefined;
|
|
24345
24378
|
/** Date and time at which the credential was created. */
|
|
@@ -24447,7 +24480,7 @@ export interface Routes {
|
|
|
24447
24480
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24448
24481
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24449
24482
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24450
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
24483
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
24451
24484
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24452
24485
|
external_type_display_name?: string | undefined;
|
|
24453
24486
|
/** Date and time at which the credential was created. */
|
|
@@ -24552,6 +24585,9 @@ export interface Routes {
|
|
|
24552
24585
|
} | {
|
|
24553
24586
|
type: 'incompatible_card_format';
|
|
24554
24587
|
message: string;
|
|
24588
|
+
} | {
|
|
24589
|
+
type: 'credential_cannot_be_reissued';
|
|
24590
|
+
message: string;
|
|
24555
24591
|
};
|
|
24556
24592
|
} | {
|
|
24557
24593
|
/** The ID of the action attempt. */
|
|
@@ -25002,7 +25038,7 @@ export interface Routes {
|
|
|
25002
25038
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
25003
25039
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
25004
25040
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25005
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
25041
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
25006
25042
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
25007
25043
|
external_type_display_name?: string | undefined;
|
|
25008
25044
|
/** Date and time at which the credential was created. */
|
|
@@ -25110,7 +25146,7 @@ export interface Routes {
|
|
|
25110
25146
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
25111
25147
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
25112
25148
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25113
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
25149
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
25114
25150
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
25115
25151
|
external_type_display_name?: string | undefined;
|
|
25116
25152
|
/** Date and time at which the credential was created. */
|
|
@@ -25255,7 +25291,7 @@ export interface Routes {
|
|
|
25255
25291
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
25256
25292
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
25257
25293
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25258
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
25294
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
25259
25295
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
25260
25296
|
external_type_display_name?: string | undefined;
|
|
25261
25297
|
/** Date and time at which the credential was created. */
|
|
@@ -25363,7 +25399,7 @@ export interface Routes {
|
|
|
25363
25399
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
25364
25400
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
25365
25401
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
25366
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
25402
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
25367
25403
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
25368
25404
|
external_type_display_name?: string | undefined;
|
|
25369
25405
|
/** Date and time at which the credential was created. */
|
|
@@ -25468,6 +25504,9 @@ export interface Routes {
|
|
|
25468
25504
|
} | {
|
|
25469
25505
|
type: 'incompatible_card_format';
|
|
25470
25506
|
message: string;
|
|
25507
|
+
} | {
|
|
25508
|
+
type: 'credential_cannot_be_reissued';
|
|
25509
|
+
message: string;
|
|
25471
25510
|
};
|
|
25472
25511
|
} | {
|
|
25473
25512
|
/** The ID of the action attempt. */
|
|
@@ -26301,7 +26340,7 @@ export interface Routes {
|
|
|
26301
26340
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26302
26341
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26303
26342
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26304
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
26343
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
26305
26344
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26306
26345
|
external_type_display_name?: string | undefined;
|
|
26307
26346
|
/** Date and time at which the credential was created. */
|
|
@@ -26409,7 +26448,7 @@ export interface Routes {
|
|
|
26409
26448
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26410
26449
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26411
26450
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26412
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
26451
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
26413
26452
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26414
26453
|
external_type_display_name?: string | undefined;
|
|
26415
26454
|
/** Date and time at which the credential was created. */
|
|
@@ -26554,7 +26593,7 @@ export interface Routes {
|
|
|
26554
26593
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26555
26594
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26556
26595
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26557
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
26596
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
26558
26597
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26559
26598
|
external_type_display_name?: string | undefined;
|
|
26560
26599
|
/** Date and time at which the credential was created. */
|
|
@@ -26662,7 +26701,7 @@ export interface Routes {
|
|
|
26662
26701
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26663
26702
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26664
26703
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26665
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
26704
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
26666
26705
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26667
26706
|
external_type_display_name?: string | undefined;
|
|
26668
26707
|
/** Date and time at which the credential was created. */
|
|
@@ -26767,6 +26806,9 @@ export interface Routes {
|
|
|
26767
26806
|
} | {
|
|
26768
26807
|
type: 'incompatible_card_format';
|
|
26769
26808
|
message: string;
|
|
26809
|
+
} | {
|
|
26810
|
+
type: 'credential_cannot_be_reissued';
|
|
26811
|
+
message: string;
|
|
26770
26812
|
};
|
|
26771
26813
|
} | {
|
|
26772
26814
|
/** The ID of the action attempt. */
|
|
@@ -27173,7 +27215,7 @@ export interface Routes {
|
|
|
27173
27215
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27174
27216
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27175
27217
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27176
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
27218
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
27177
27219
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27178
27220
|
external_type_display_name?: string | undefined;
|
|
27179
27221
|
/** Date and time at which the credential was created. */
|
|
@@ -27281,7 +27323,7 @@ export interface Routes {
|
|
|
27281
27323
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27282
27324
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27283
27325
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27284
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
27326
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
27285
27327
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27286
27328
|
external_type_display_name?: string | undefined;
|
|
27287
27329
|
/** Date and time at which the credential was created. */
|
|
@@ -27426,7 +27468,7 @@ export interface Routes {
|
|
|
27426
27468
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27427
27469
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27428
27470
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27429
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
27471
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
27430
27472
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27431
27473
|
external_type_display_name?: string | undefined;
|
|
27432
27474
|
/** Date and time at which the credential was created. */
|
|
@@ -27534,7 +27576,7 @@ export interface Routes {
|
|
|
27534
27576
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27535
27577
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27536
27578
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27537
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
27579
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
27538
27580
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27539
27581
|
external_type_display_name?: string | undefined;
|
|
27540
27582
|
/** Date and time at which the credential was created. */
|
|
@@ -27639,6 +27681,9 @@ export interface Routes {
|
|
|
27639
27681
|
} | {
|
|
27640
27682
|
type: 'incompatible_card_format';
|
|
27641
27683
|
message: string;
|
|
27684
|
+
} | {
|
|
27685
|
+
type: 'credential_cannot_be_reissued';
|
|
27686
|
+
message: string;
|
|
27642
27687
|
};
|
|
27643
27688
|
} | {
|
|
27644
27689
|
/** The ID of the action attempt. */
|
|
@@ -28750,7 +28795,7 @@ export interface Routes {
|
|
|
28750
28795
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
28751
28796
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
28752
28797
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
28753
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
28798
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
28754
28799
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
28755
28800
|
external_type_display_name?: string | undefined;
|
|
28756
28801
|
/** Date and time at which the credential was created. */
|
|
@@ -28858,7 +28903,7 @@ export interface Routes {
|
|
|
28858
28903
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
28859
28904
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
28860
28905
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
28861
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
28906
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
28862
28907
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
28863
28908
|
external_type_display_name?: string | undefined;
|
|
28864
28909
|
/** Date and time at which the credential was created. */
|
|
@@ -29003,7 +29048,7 @@ export interface Routes {
|
|
|
29003
29048
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29004
29049
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29005
29050
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29006
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
29051
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
29007
29052
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29008
29053
|
external_type_display_name?: string | undefined;
|
|
29009
29054
|
/** Date and time at which the credential was created. */
|
|
@@ -29111,7 +29156,7 @@ export interface Routes {
|
|
|
29111
29156
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29112
29157
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29113
29158
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29114
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
29159
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
29115
29160
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29116
29161
|
external_type_display_name?: string | undefined;
|
|
29117
29162
|
/** Date and time at which the credential was created. */
|
|
@@ -29216,6 +29261,9 @@ export interface Routes {
|
|
|
29216
29261
|
} | {
|
|
29217
29262
|
type: 'incompatible_card_format';
|
|
29218
29263
|
message: string;
|
|
29264
|
+
} | {
|
|
29265
|
+
type: 'credential_cannot_be_reissued';
|
|
29266
|
+
message: string;
|
|
29219
29267
|
};
|
|
29220
29268
|
} | {
|
|
29221
29269
|
/** The ID of the action attempt. */
|
|
@@ -29626,7 +29674,7 @@ export interface Routes {
|
|
|
29626
29674
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29627
29675
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29628
29676
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29629
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
29677
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
29630
29678
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29631
29679
|
external_type_display_name?: string | undefined;
|
|
29632
29680
|
/** Date and time at which the credential was created. */
|
|
@@ -29734,7 +29782,7 @@ export interface Routes {
|
|
|
29734
29782
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29735
29783
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29736
29784
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29737
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
29785
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
29738
29786
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29739
29787
|
external_type_display_name?: string | undefined;
|
|
29740
29788
|
/** Date and time at which the credential was created. */
|
|
@@ -29879,7 +29927,7 @@ export interface Routes {
|
|
|
29879
29927
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29880
29928
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29881
29929
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29882
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
29930
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
29883
29931
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29884
29932
|
external_type_display_name?: string | undefined;
|
|
29885
29933
|
/** Date and time at which the credential was created. */
|
|
@@ -29987,7 +30035,7 @@ export interface Routes {
|
|
|
29987
30035
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29988
30036
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29989
30037
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29990
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
30038
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
29991
30039
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29992
30040
|
external_type_display_name?: string | undefined;
|
|
29993
30041
|
/** Date and time at which the credential was created. */
|
|
@@ -30092,6 +30140,9 @@ export interface Routes {
|
|
|
30092
30140
|
} | {
|
|
30093
30141
|
type: 'incompatible_card_format';
|
|
30094
30142
|
message: string;
|
|
30143
|
+
} | {
|
|
30144
|
+
type: 'credential_cannot_be_reissued';
|
|
30145
|
+
message: string;
|
|
30095
30146
|
};
|
|
30096
30147
|
} | {
|
|
30097
30148
|
/** The ID of the action attempt. */
|
|
@@ -31819,7 +31870,7 @@ export interface Routes {
|
|
|
31819
31870
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31820
31871
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31821
31872
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31822
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
31873
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
31823
31874
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31824
31875
|
external_type_display_name?: string | undefined;
|
|
31825
31876
|
/** Date and time at which the credential was created. */
|
|
@@ -31927,7 +31978,7 @@ export interface Routes {
|
|
|
31927
31978
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31928
31979
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31929
31980
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31930
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
31981
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
31931
31982
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31932
31983
|
external_type_display_name?: string | undefined;
|
|
31933
31984
|
/** Date and time at which the credential was created. */
|
|
@@ -32072,7 +32123,7 @@ export interface Routes {
|
|
|
32072
32123
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32073
32124
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32074
32125
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32075
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
32126
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
32076
32127
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32077
32128
|
external_type_display_name?: string | undefined;
|
|
32078
32129
|
/** Date and time at which the credential was created. */
|
|
@@ -32180,7 +32231,7 @@ export interface Routes {
|
|
|
32180
32231
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32181
32232
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32182
32233
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32183
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
32234
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
32184
32235
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32185
32236
|
external_type_display_name?: string | undefined;
|
|
32186
32237
|
/** Date and time at which the credential was created. */
|
|
@@ -32285,6 +32336,9 @@ export interface Routes {
|
|
|
32285
32336
|
} | {
|
|
32286
32337
|
type: 'incompatible_card_format';
|
|
32287
32338
|
message: string;
|
|
32339
|
+
} | {
|
|
32340
|
+
type: 'credential_cannot_be_reissued';
|
|
32341
|
+
message: string;
|
|
32288
32342
|
};
|
|
32289
32343
|
} | {
|
|
32290
32344
|
/** The ID of the action attempt. */
|
|
@@ -32871,7 +32925,7 @@ export interface Routes {
|
|
|
32871
32925
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32872
32926
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32873
32927
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32874
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
32928
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
32875
32929
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32876
32930
|
external_type_display_name?: string | undefined;
|
|
32877
32931
|
/** Date and time at which the credential was created. */
|
|
@@ -32979,7 +33033,7 @@ export interface Routes {
|
|
|
32979
33033
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
32980
33034
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
32981
33035
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
32982
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
33036
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
32983
33037
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
32984
33038
|
external_type_display_name?: string | undefined;
|
|
32985
33039
|
/** Date and time at which the credential was created. */
|
|
@@ -33124,7 +33178,7 @@ export interface Routes {
|
|
|
33124
33178
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33125
33179
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33126
33180
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33127
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
33181
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
33128
33182
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33129
33183
|
external_type_display_name?: string | undefined;
|
|
33130
33184
|
/** Date and time at which the credential was created. */
|
|
@@ -33232,7 +33286,7 @@ export interface Routes {
|
|
|
33232
33286
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33233
33287
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33234
33288
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33235
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
33289
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
33236
33290
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33237
33291
|
external_type_display_name?: string | undefined;
|
|
33238
33292
|
/** Date and time at which the credential was created. */
|
|
@@ -33337,6 +33391,9 @@ export interface Routes {
|
|
|
33337
33391
|
} | {
|
|
33338
33392
|
type: 'incompatible_card_format';
|
|
33339
33393
|
message: string;
|
|
33394
|
+
} | {
|
|
33395
|
+
type: 'credential_cannot_be_reissued';
|
|
33396
|
+
message: string;
|
|
33340
33397
|
};
|
|
33341
33398
|
} | {
|
|
33342
33399
|
/** The ID of the action attempt. */
|
|
@@ -33766,7 +33823,7 @@ export interface Routes {
|
|
|
33766
33823
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33767
33824
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33768
33825
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33769
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
33826
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
33770
33827
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33771
33828
|
external_type_display_name?: string | undefined;
|
|
33772
33829
|
/** Date and time at which the credential was created. */
|
|
@@ -33874,7 +33931,7 @@ export interface Routes {
|
|
|
33874
33931
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33875
33932
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33876
33933
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33877
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
33934
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
33878
33935
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33879
33936
|
external_type_display_name?: string | undefined;
|
|
33880
33937
|
/** Date and time at which the credential was created. */
|
|
@@ -34019,7 +34076,7 @@ export interface Routes {
|
|
|
34019
34076
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
34020
34077
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
34021
34078
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
34022
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
34079
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
34023
34080
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
34024
34081
|
external_type_display_name?: string | undefined;
|
|
34025
34082
|
/** Date and time at which the credential was created. */
|
|
@@ -34127,7 +34184,7 @@ export interface Routes {
|
|
|
34127
34184
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
34128
34185
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
34129
34186
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
34130
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
34187
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
34131
34188
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
34132
34189
|
external_type_display_name?: string | undefined;
|
|
34133
34190
|
/** Date and time at which the credential was created. */
|
|
@@ -34232,6 +34289,9 @@ export interface Routes {
|
|
|
34232
34289
|
} | {
|
|
34233
34290
|
type: 'incompatible_card_format';
|
|
34234
34291
|
message: string;
|
|
34292
|
+
} | {
|
|
34293
|
+
type: 'credential_cannot_be_reissued';
|
|
34294
|
+
message: string;
|
|
34235
34295
|
};
|
|
34236
34296
|
} | {
|
|
34237
34297
|
/** The ID of the action attempt. */
|
|
@@ -36639,7 +36699,7 @@ export interface Routes {
|
|
|
36639
36699
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
36640
36700
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
36641
36701
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
36642
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
36702
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
36643
36703
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
36644
36704
|
external_type_display_name?: string | undefined;
|
|
36645
36705
|
/** Date and time at which the credential was created. */
|
|
@@ -36747,7 +36807,7 @@ export interface Routes {
|
|
|
36747
36807
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
36748
36808
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
36749
36809
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
36750
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
36810
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
36751
36811
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
36752
36812
|
external_type_display_name?: string | undefined;
|
|
36753
36813
|
/** Date and time at which the credential was created. */
|
|
@@ -36892,7 +36952,7 @@ export interface Routes {
|
|
|
36892
36952
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
36893
36953
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
36894
36954
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
36895
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
36955
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
36896
36956
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
36897
36957
|
external_type_display_name?: string | undefined;
|
|
36898
36958
|
/** Date and time at which the credential was created. */
|
|
@@ -37000,7 +37060,7 @@ export interface Routes {
|
|
|
37000
37060
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
37001
37061
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
37002
37062
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
37003
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | '
|
|
37063
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_key' | 'salto_space_key') | undefined;
|
|
37004
37064
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
37005
37065
|
external_type_display_name?: string | undefined;
|
|
37006
37066
|
/** Date and time at which the credential was created. */
|
|
@@ -37105,6 +37165,9 @@ export interface Routes {
|
|
|
37105
37165
|
} | {
|
|
37106
37166
|
type: 'incompatible_card_format';
|
|
37107
37167
|
message: string;
|
|
37168
|
+
} | {
|
|
37169
|
+
type: 'credential_cannot_be_reissued';
|
|
37170
|
+
message: string;
|
|
37108
37171
|
};
|
|
37109
37172
|
} | {
|
|
37110
37173
|
/** The ID of the action attempt. */
|