@seamapi/types 1.329.1 → 1.331.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 +89 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +194 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +93 -0
- package/lib/seam/connect/models/acs/acs-user.js +14 -1
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/openapi.js +67 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +17 -1
- package/src/lib/seam/connect/openapi.ts +70 -0
- package/src/lib/seam/connect/route-types.ts +223 -0
|
@@ -138,7 +138,7 @@ export interface Routes {
|
|
|
138
138
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
139
139
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
140
140
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
141
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
141
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
142
142
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
143
143
|
external_type_display_name?: string | undefined;
|
|
144
144
|
/** Date and time at which the credential was created. */
|
|
@@ -238,7 +238,7 @@ export interface Routes {
|
|
|
238
238
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
239
239
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
240
240
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
241
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
241
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
242
242
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
243
243
|
external_type_display_name?: string | undefined;
|
|
244
244
|
/** Date and time at which the credential was created. */
|
|
@@ -375,7 +375,7 @@ export interface Routes {
|
|
|
375
375
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
376
376
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
377
377
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
378
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
378
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
379
379
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
380
380
|
external_type_display_name?: string | undefined;
|
|
381
381
|
/** Date and time at which the credential was created. */
|
|
@@ -475,7 +475,7 @@ export interface Routes {
|
|
|
475
475
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
476
476
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
477
477
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
478
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
478
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
479
479
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
480
480
|
external_type_display_name?: string | undefined;
|
|
481
481
|
/** Date and time at which the credential was created. */
|
|
@@ -1245,7 +1245,7 @@ export interface Routes {
|
|
|
1245
1245
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1246
1246
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1247
1247
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1248
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
1248
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1249
1249
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1250
1250
|
external_type_display_name?: string | undefined;
|
|
1251
1251
|
/** Date and time at which the credential was created. */
|
|
@@ -1345,7 +1345,7 @@ export interface Routes {
|
|
|
1345
1345
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1346
1346
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1347
1347
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1348
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
1348
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1349
1349
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1350
1350
|
external_type_display_name?: string | undefined;
|
|
1351
1351
|
/** Date and time at which the credential was created. */
|
|
@@ -1482,7 +1482,7 @@ export interface Routes {
|
|
|
1482
1482
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1483
1483
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1484
1484
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1485
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
1485
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1486
1486
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1487
1487
|
external_type_display_name?: string | undefined;
|
|
1488
1488
|
/** Date and time at which the credential was created. */
|
|
@@ -1582,7 +1582,7 @@ export interface Routes {
|
|
|
1582
1582
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
1583
1583
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
1584
1584
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
1585
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
1585
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
1586
1586
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
1587
1587
|
external_type_display_name?: string | undefined;
|
|
1588
1588
|
/** Date and time at which the credential was created. */
|
|
@@ -2756,7 +2756,7 @@ export interface Routes {
|
|
|
2756
2756
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
2757
2757
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2758
2758
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
2759
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2759
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
2760
2760
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
2761
2761
|
external_type_display_name?: string | undefined;
|
|
2762
2762
|
/** Date and time at which the credential was created. */
|
|
@@ -2856,7 +2856,7 @@ export interface Routes {
|
|
|
2856
2856
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
2857
2857
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2858
2858
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
2859
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2859
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
2860
2860
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
2861
2861
|
external_type_display_name?: string | undefined;
|
|
2862
2862
|
/** Date and time at which the credential was created. */
|
|
@@ -2993,7 +2993,7 @@ export interface Routes {
|
|
|
2993
2993
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
2994
2994
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
2995
2995
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
2996
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
2996
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
2997
2997
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
2998
2998
|
external_type_display_name?: string | undefined;
|
|
2999
2999
|
/** Date and time at which the credential was created. */
|
|
@@ -3093,7 +3093,7 @@ export interface Routes {
|
|
|
3093
3093
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3094
3094
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3095
3095
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3096
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3096
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
3097
3097
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3098
3098
|
external_type_display_name?: string | undefined;
|
|
3099
3099
|
/** Date and time at which the credential was created. */
|
|
@@ -3850,7 +3850,7 @@ export interface Routes {
|
|
|
3850
3850
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3851
3851
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3852
3852
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3853
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3853
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
3854
3854
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3855
3855
|
external_type_display_name?: string | undefined;
|
|
3856
3856
|
/** Date and time at which the credential was created. */
|
|
@@ -3950,7 +3950,7 @@ export interface Routes {
|
|
|
3950
3950
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
3951
3951
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
3952
3952
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
3953
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
3953
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
3954
3954
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
3955
3955
|
external_type_display_name?: string | undefined;
|
|
3956
3956
|
/** Date and time at which the credential was created. */
|
|
@@ -4087,7 +4087,7 @@ export interface Routes {
|
|
|
4087
4087
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
4088
4088
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
4089
4089
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
4090
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
4090
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
4091
4091
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
4092
4092
|
external_type_display_name?: string | undefined;
|
|
4093
4093
|
/** Date and time at which the credential was created. */
|
|
@@ -4187,7 +4187,7 @@ export interface Routes {
|
|
|
4187
4187
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
4188
4188
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
4189
4189
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
4190
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
4190
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
4191
4191
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
4192
4192
|
external_type_display_name?: string | undefined;
|
|
4193
4193
|
/** Date and time at which the credential was created. */
|
|
@@ -4807,6 +4807,10 @@ export interface Routes {
|
|
|
4807
4807
|
created_at: string;
|
|
4808
4808
|
message: string;
|
|
4809
4809
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
4810
|
+
} | {
|
|
4811
|
+
created_at: string;
|
|
4812
|
+
message: string;
|
|
4813
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
4810
4814
|
}>;
|
|
4811
4815
|
/** Errors associated with the `acs_user`. */
|
|
4812
4816
|
errors: Array<{
|
|
@@ -5043,7 +5047,7 @@ export interface Routes {
|
|
|
5043
5047
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5044
5048
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5045
5049
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5046
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5050
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5047
5051
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5048
5052
|
external_type_display_name?: string | undefined;
|
|
5049
5053
|
/** Date and time at which the credential was created. */
|
|
@@ -5198,7 +5202,7 @@ export interface Routes {
|
|
|
5198
5202
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5199
5203
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5200
5204
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5201
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5205
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5202
5206
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5203
5207
|
external_type_display_name?: string | undefined;
|
|
5204
5208
|
/** Date and time at which the credential was created. */
|
|
@@ -5322,7 +5326,7 @@ export interface Routes {
|
|
|
5322
5326
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5323
5327
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5324
5328
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5325
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5329
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5326
5330
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5327
5331
|
external_type_display_name?: string | undefined;
|
|
5328
5332
|
/** Date and time at which the credential was created. */
|
|
@@ -5450,7 +5454,7 @@ export interface Routes {
|
|
|
5450
5454
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5451
5455
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5452
5456
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5453
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5457
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5454
5458
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5455
5459
|
external_type_display_name?: string | undefined;
|
|
5456
5460
|
/** Date and time at which the credential was created. */
|
|
@@ -5582,7 +5586,7 @@ export interface Routes {
|
|
|
5582
5586
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5583
5587
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5584
5588
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5585
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5589
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5586
5590
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5587
5591
|
external_type_display_name?: string | undefined;
|
|
5588
5592
|
/** Date and time at which the credential was created. */
|
|
@@ -5766,7 +5770,7 @@ export interface Routes {
|
|
|
5766
5770
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5767
5771
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5768
5772
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5769
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5773
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5770
5774
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5771
5775
|
external_type_display_name?: string | undefined;
|
|
5772
5776
|
/** Date and time at which the credential was created. */
|
|
@@ -5882,7 +5886,7 @@ export interface Routes {
|
|
|
5882
5886
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
5883
5887
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
5884
5888
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
5885
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
5889
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
5886
5890
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
5887
5891
|
external_type_display_name?: string | undefined;
|
|
5888
5892
|
/** Date and time at which the credential was created. */
|
|
@@ -6007,7 +6011,7 @@ export interface Routes {
|
|
|
6007
6011
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6008
6012
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6009
6013
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6010
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
6014
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6011
6015
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6012
6016
|
external_type_display_name?: string | undefined;
|
|
6013
6017
|
/** Date and time at which the credential was created. */
|
|
@@ -6127,7 +6131,7 @@ export interface Routes {
|
|
|
6127
6131
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6128
6132
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6129
6133
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6130
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
6134
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6131
6135
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6132
6136
|
external_type_display_name?: string | undefined;
|
|
6133
6137
|
/** Date and time at which the credential was created. */
|
|
@@ -6334,7 +6338,7 @@ export interface Routes {
|
|
|
6334
6338
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6335
6339
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6336
6340
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6337
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
6341
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6338
6342
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6339
6343
|
external_type_display_name?: string | undefined;
|
|
6340
6344
|
/** Date and time at which the credential was created. */
|
|
@@ -6434,7 +6438,7 @@ export interface Routes {
|
|
|
6434
6438
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6435
6439
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6436
6440
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6437
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
6441
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6438
6442
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6439
6443
|
external_type_display_name?: string | undefined;
|
|
6440
6444
|
/** Date and time at which the credential was created. */
|
|
@@ -6571,7 +6575,7 @@ export interface Routes {
|
|
|
6571
6575
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6572
6576
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6573
6577
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6574
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
6578
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6575
6579
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6576
6580
|
external_type_display_name?: string | undefined;
|
|
6577
6581
|
/** Date and time at which the credential was created. */
|
|
@@ -6671,7 +6675,7 @@ export interface Routes {
|
|
|
6671
6675
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
6672
6676
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
6673
6677
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
6674
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
6678
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
6675
6679
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
6676
6680
|
external_type_display_name?: string | undefined;
|
|
6677
6681
|
/** Date and time at which the credential was created. */
|
|
@@ -7214,7 +7218,7 @@ export interface Routes {
|
|
|
7214
7218
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7215
7219
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7216
7220
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7217
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
7221
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7218
7222
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7219
7223
|
external_type_display_name?: string | undefined;
|
|
7220
7224
|
/** Date and time at which the credential was created. */
|
|
@@ -7314,7 +7318,7 @@ export interface Routes {
|
|
|
7314
7318
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7315
7319
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7316
7320
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7317
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
7321
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7318
7322
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7319
7323
|
external_type_display_name?: string | undefined;
|
|
7320
7324
|
/** Date and time at which the credential was created. */
|
|
@@ -7451,7 +7455,7 @@ export interface Routes {
|
|
|
7451
7455
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7452
7456
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7453
7457
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7454
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
7458
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7455
7459
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7456
7460
|
external_type_display_name?: string | undefined;
|
|
7457
7461
|
/** Date and time at which the credential was created. */
|
|
@@ -7551,7 +7555,7 @@ export interface Routes {
|
|
|
7551
7555
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
7552
7556
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
7553
7557
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
7554
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
7558
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
7555
7559
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
7556
7560
|
external_type_display_name?: string | undefined;
|
|
7557
7561
|
/** Date and time at which the credential was created. */
|
|
@@ -8180,7 +8184,7 @@ export interface Routes {
|
|
|
8180
8184
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
8181
8185
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
8182
8186
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
8183
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
8187
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
8184
8188
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
8185
8189
|
external_type_display_name?: string | undefined;
|
|
8186
8190
|
/** Date and time at which the credential was created. */
|
|
@@ -8733,6 +8737,10 @@ export interface Routes {
|
|
|
8733
8737
|
created_at: string;
|
|
8734
8738
|
message: string;
|
|
8735
8739
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
8740
|
+
} | {
|
|
8741
|
+
created_at: string;
|
|
8742
|
+
message: string;
|
|
8743
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
8736
8744
|
}>;
|
|
8737
8745
|
/** Errors associated with the `acs_user`. */
|
|
8738
8746
|
errors: Array<{
|
|
@@ -8849,6 +8857,10 @@ export interface Routes {
|
|
|
8849
8857
|
created_at: string;
|
|
8850
8858
|
message: string;
|
|
8851
8859
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
8860
|
+
} | {
|
|
8861
|
+
created_at: string;
|
|
8862
|
+
message: string;
|
|
8863
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
8852
8864
|
}>;
|
|
8853
8865
|
/** Errors associated with the `acs_user`. */
|
|
8854
8866
|
errors: Array<{
|
|
@@ -8960,6 +8972,10 @@ export interface Routes {
|
|
|
8960
8972
|
created_at: string;
|
|
8961
8973
|
message: string;
|
|
8962
8974
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
8975
|
+
} | {
|
|
8976
|
+
created_at: string;
|
|
8977
|
+
message: string;
|
|
8978
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
8963
8979
|
}>;
|
|
8964
8980
|
/** Errors associated with the `acs_user`. */
|
|
8965
8981
|
errors: Array<{
|
|
@@ -9167,6 +9183,10 @@ export interface Routes {
|
|
|
9167
9183
|
created_at: string;
|
|
9168
9184
|
message: string;
|
|
9169
9185
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
9186
|
+
} | {
|
|
9187
|
+
created_at: string;
|
|
9188
|
+
message: string;
|
|
9189
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
9170
9190
|
}>;
|
|
9171
9191
|
/** Errors associated with the `acs_user`. */
|
|
9172
9192
|
errors: Array<{
|
|
@@ -9273,6 +9293,10 @@ export interface Routes {
|
|
|
9273
9293
|
created_at: string;
|
|
9274
9294
|
message: string;
|
|
9275
9295
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
9296
|
+
} | {
|
|
9297
|
+
created_at: string;
|
|
9298
|
+
message: string;
|
|
9299
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
9276
9300
|
}>;
|
|
9277
9301
|
/** Errors associated with the `acs_user`. */
|
|
9278
9302
|
errors: Array<{
|
|
@@ -9481,7 +9505,7 @@ export interface Routes {
|
|
|
9481
9505
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9482
9506
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9483
9507
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9484
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
9508
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
9485
9509
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9486
9510
|
external_type_display_name?: string | undefined;
|
|
9487
9511
|
/** Date and time at which the credential was created. */
|
|
@@ -9581,7 +9605,7 @@ export interface Routes {
|
|
|
9581
9605
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9582
9606
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9583
9607
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9584
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
9608
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
9585
9609
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9586
9610
|
external_type_display_name?: string | undefined;
|
|
9587
9611
|
/** Date and time at which the credential was created. */
|
|
@@ -9718,7 +9742,7 @@ export interface Routes {
|
|
|
9718
9742
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9719
9743
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9720
9744
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9721
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
9745
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
9722
9746
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9723
9747
|
external_type_display_name?: string | undefined;
|
|
9724
9748
|
/** Date and time at which the credential was created. */
|
|
@@ -9818,7 +9842,7 @@ export interface Routes {
|
|
|
9818
9842
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
9819
9843
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
9820
9844
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
9821
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
9845
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
9822
9846
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
9823
9847
|
external_type_display_name?: string | undefined;
|
|
9824
9848
|
/** Date and time at which the credential was created. */
|
|
@@ -10313,7 +10337,7 @@ export interface Routes {
|
|
|
10313
10337
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10314
10338
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10315
10339
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10316
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
10340
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
10317
10341
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10318
10342
|
external_type_display_name?: string | undefined;
|
|
10319
10343
|
/** Date and time at which the credential was created. */
|
|
@@ -10413,7 +10437,7 @@ export interface Routes {
|
|
|
10413
10437
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10414
10438
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10415
10439
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10416
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
10440
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
10417
10441
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10418
10442
|
external_type_display_name?: string | undefined;
|
|
10419
10443
|
/** Date and time at which the credential was created. */
|
|
@@ -10550,7 +10574,7 @@ export interface Routes {
|
|
|
10550
10574
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10551
10575
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10552
10576
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10553
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
10577
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
10554
10578
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10555
10579
|
external_type_display_name?: string | undefined;
|
|
10556
10580
|
/** Date and time at which the credential was created. */
|
|
@@ -10650,7 +10674,7 @@ export interface Routes {
|
|
|
10650
10674
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
10651
10675
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
10652
10676
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
10653
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
10677
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
10654
10678
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
10655
10679
|
external_type_display_name?: string | undefined;
|
|
10656
10680
|
/** Date and time at which the credential was created. */
|
|
@@ -18021,7 +18045,7 @@ export interface Routes {
|
|
|
18021
18045
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
18022
18046
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18023
18047
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18024
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
18048
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
18025
18049
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
18026
18050
|
external_type_display_name?: string | undefined;
|
|
18027
18051
|
/** Date and time at which the credential was created. */
|
|
@@ -18121,7 +18145,7 @@ export interface Routes {
|
|
|
18121
18145
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
18122
18146
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18123
18147
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18124
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
18148
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
18125
18149
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
18126
18150
|
external_type_display_name?: string | undefined;
|
|
18127
18151
|
/** Date and time at which the credential was created. */
|
|
@@ -18258,7 +18282,7 @@ export interface Routes {
|
|
|
18258
18282
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
18259
18283
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18260
18284
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18261
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
18285
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
18262
18286
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
18263
18287
|
external_type_display_name?: string | undefined;
|
|
18264
18288
|
/** Date and time at which the credential was created. */
|
|
@@ -18358,7 +18382,7 @@ export interface Routes {
|
|
|
18358
18382
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
18359
18383
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18360
18384
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18361
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
18385
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
18362
18386
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
18363
18387
|
external_type_display_name?: string | undefined;
|
|
18364
18388
|
/** Date and time at which the credential was created. */
|
|
@@ -18855,7 +18879,7 @@ export interface Routes {
|
|
|
18855
18879
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
18856
18880
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18857
18881
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18858
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
18882
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
18859
18883
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
18860
18884
|
external_type_display_name?: string | undefined;
|
|
18861
18885
|
/** Date and time at which the credential was created. */
|
|
@@ -18955,7 +18979,7 @@ export interface Routes {
|
|
|
18955
18979
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
18956
18980
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18957
18981
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
18958
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
18982
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
18959
18983
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
18960
18984
|
external_type_display_name?: string | undefined;
|
|
18961
18985
|
/** Date and time at which the credential was created. */
|
|
@@ -19092,7 +19116,7 @@ export interface Routes {
|
|
|
19092
19116
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
19093
19117
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
19094
19118
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
19095
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
19119
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
19096
19120
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
19097
19121
|
external_type_display_name?: string | undefined;
|
|
19098
19122
|
/** Date and time at which the credential was created. */
|
|
@@ -19192,7 +19216,7 @@ export interface Routes {
|
|
|
19192
19216
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
19193
19217
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
19194
19218
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
19195
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
19219
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
19196
19220
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
19197
19221
|
external_type_display_name?: string | undefined;
|
|
19198
19222
|
/** Date and time at which the credential was created. */
|
|
@@ -20928,7 +20952,7 @@ export interface Routes {
|
|
|
20928
20952
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
20929
20953
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
20930
20954
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
20931
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
20955
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
20932
20956
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
20933
20957
|
external_type_display_name?: string | undefined;
|
|
20934
20958
|
/** Date and time at which the credential was created. */
|
|
@@ -21028,7 +21052,7 @@ export interface Routes {
|
|
|
21028
21052
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21029
21053
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21030
21054
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21031
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
21055
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21032
21056
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21033
21057
|
external_type_display_name?: string | undefined;
|
|
21034
21058
|
/** Date and time at which the credential was created. */
|
|
@@ -21165,7 +21189,7 @@ export interface Routes {
|
|
|
21165
21189
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21166
21190
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21167
21191
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21168
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
21192
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21169
21193
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21170
21194
|
external_type_display_name?: string | undefined;
|
|
21171
21195
|
/** Date and time at which the credential was created. */
|
|
@@ -21265,7 +21289,7 @@ export interface Routes {
|
|
|
21265
21289
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21266
21290
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21267
21291
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21268
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
21292
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21269
21293
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21270
21294
|
external_type_display_name?: string | undefined;
|
|
21271
21295
|
/** Date and time at which the credential was created. */
|
|
@@ -21773,7 +21797,7 @@ export interface Routes {
|
|
|
21773
21797
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21774
21798
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21775
21799
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21776
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
21800
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21777
21801
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21778
21802
|
external_type_display_name?: string | undefined;
|
|
21779
21803
|
/** Date and time at which the credential was created. */
|
|
@@ -21873,7 +21897,7 @@ export interface Routes {
|
|
|
21873
21897
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
21874
21898
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
21875
21899
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
21876
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
21900
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
21877
21901
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
21878
21902
|
external_type_display_name?: string | undefined;
|
|
21879
21903
|
/** Date and time at which the credential was created. */
|
|
@@ -22010,7 +22034,7 @@ export interface Routes {
|
|
|
22010
22034
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22011
22035
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22012
22036
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22013
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
22037
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
22014
22038
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22015
22039
|
external_type_display_name?: string | undefined;
|
|
22016
22040
|
/** Date and time at which the credential was created. */
|
|
@@ -22110,7 +22134,7 @@ export interface Routes {
|
|
|
22110
22134
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22111
22135
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22112
22136
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22113
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
22137
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
22114
22138
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22115
22139
|
external_type_display_name?: string | undefined;
|
|
22116
22140
|
/** Date and time at which the credential was created. */
|
|
@@ -22657,7 +22681,7 @@ export interface Routes {
|
|
|
22657
22681
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22658
22682
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22659
22683
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22660
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
22684
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
22661
22685
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22662
22686
|
external_type_display_name?: string | undefined;
|
|
22663
22687
|
/** Date and time at which the credential was created. */
|
|
@@ -22757,7 +22781,7 @@ export interface Routes {
|
|
|
22757
22781
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22758
22782
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22759
22783
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22760
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
22784
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
22761
22785
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22762
22786
|
external_type_display_name?: string | undefined;
|
|
22763
22787
|
/** Date and time at which the credential was created. */
|
|
@@ -22894,7 +22918,7 @@ export interface Routes {
|
|
|
22894
22918
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22895
22919
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22896
22920
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22897
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
22921
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
22898
22922
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22899
22923
|
external_type_display_name?: string | undefined;
|
|
22900
22924
|
/** Date and time at which the credential was created. */
|
|
@@ -22994,7 +23018,7 @@ export interface Routes {
|
|
|
22994
23018
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
22995
23019
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
22996
23020
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
22997
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
23021
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
22998
23022
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
22999
23023
|
external_type_display_name?: string | undefined;
|
|
23000
23024
|
/** Date and time at which the credential was created. */
|
|
@@ -23798,7 +23822,7 @@ export interface Routes {
|
|
|
23798
23822
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23799
23823
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23800
23824
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23801
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
23825
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
23802
23826
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23803
23827
|
external_type_display_name?: string | undefined;
|
|
23804
23828
|
/** Date and time at which the credential was created. */
|
|
@@ -23898,7 +23922,7 @@ export interface Routes {
|
|
|
23898
23922
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
23899
23923
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
23900
23924
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
23901
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
23925
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
23902
23926
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
23903
23927
|
external_type_display_name?: string | undefined;
|
|
23904
23928
|
/** Date and time at which the credential was created. */
|
|
@@ -24035,7 +24059,7 @@ export interface Routes {
|
|
|
24035
24059
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24036
24060
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24037
24061
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24038
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
24062
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24039
24063
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24040
24064
|
external_type_display_name?: string | undefined;
|
|
24041
24065
|
/** Date and time at which the credential was created. */
|
|
@@ -24135,7 +24159,7 @@ export interface Routes {
|
|
|
24135
24159
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24136
24160
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24137
24161
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24138
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
24162
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24139
24163
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24140
24164
|
external_type_display_name?: string | undefined;
|
|
24141
24165
|
/** Date and time at which the credential was created. */
|
|
@@ -24638,7 +24662,7 @@ export interface Routes {
|
|
|
24638
24662
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24639
24663
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24640
24664
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24641
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
24665
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24642
24666
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24643
24667
|
external_type_display_name?: string | undefined;
|
|
24644
24668
|
/** Date and time at which the credential was created. */
|
|
@@ -24738,7 +24762,7 @@ export interface Routes {
|
|
|
24738
24762
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24739
24763
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24740
24764
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24741
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
24765
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24742
24766
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24743
24767
|
external_type_display_name?: string | undefined;
|
|
24744
24768
|
/** Date and time at which the credential was created. */
|
|
@@ -24875,7 +24899,7 @@ export interface Routes {
|
|
|
24875
24899
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24876
24900
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24877
24901
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24878
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
24902
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24879
24903
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24880
24904
|
external_type_display_name?: string | undefined;
|
|
24881
24905
|
/** Date and time at which the credential was created. */
|
|
@@ -24975,7 +24999,7 @@ export interface Routes {
|
|
|
24975
24999
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
24976
25000
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
24977
25001
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
24978
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
25002
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
24979
25003
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
24980
25004
|
external_type_display_name?: string | undefined;
|
|
24981
25005
|
/** Date and time at which the credential was created. */
|
|
@@ -26120,7 +26144,7 @@ export interface Routes {
|
|
|
26120
26144
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26121
26145
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26122
26146
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26123
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
26147
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26124
26148
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26125
26149
|
external_type_display_name?: string | undefined;
|
|
26126
26150
|
/** Date and time at which the credential was created. */
|
|
@@ -26220,7 +26244,7 @@ export interface Routes {
|
|
|
26220
26244
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26221
26245
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26222
26246
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26223
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
26247
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26224
26248
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26225
26249
|
external_type_display_name?: string | undefined;
|
|
26226
26250
|
/** Date and time at which the credential was created. */
|
|
@@ -26357,7 +26381,7 @@ export interface Routes {
|
|
|
26357
26381
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26358
26382
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26359
26383
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26360
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
26384
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26361
26385
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26362
26386
|
external_type_display_name?: string | undefined;
|
|
26363
26387
|
/** Date and time at which the credential was created. */
|
|
@@ -26457,7 +26481,7 @@ export interface Routes {
|
|
|
26457
26481
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26458
26482
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26459
26483
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26460
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
26484
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26461
26485
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26462
26486
|
external_type_display_name?: string | undefined;
|
|
26463
26487
|
/** Date and time at which the credential was created. */
|
|
@@ -26964,7 +26988,7 @@ export interface Routes {
|
|
|
26964
26988
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
26965
26989
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
26966
26990
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
26967
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
26991
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
26968
26992
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
26969
26993
|
external_type_display_name?: string | undefined;
|
|
26970
26994
|
/** Date and time at which the credential was created. */
|
|
@@ -27064,7 +27088,7 @@ export interface Routes {
|
|
|
27064
27088
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27065
27089
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27066
27090
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27067
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
27091
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27068
27092
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27069
27093
|
external_type_display_name?: string | undefined;
|
|
27070
27094
|
/** Date and time at which the credential was created. */
|
|
@@ -27201,7 +27225,7 @@ export interface Routes {
|
|
|
27201
27225
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27202
27226
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27203
27227
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27204
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
27228
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27205
27229
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27206
27230
|
external_type_display_name?: string | undefined;
|
|
27207
27231
|
/** Date and time at which the credential was created. */
|
|
@@ -27301,7 +27325,7 @@ export interface Routes {
|
|
|
27301
27325
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
27302
27326
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
27303
27327
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
27304
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
27328
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
27305
27329
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
27306
27330
|
external_type_display_name?: string | undefined;
|
|
27307
27331
|
/** Date and time at which the credential was created. */
|
|
@@ -28999,7 +29023,7 @@ export interface Routes {
|
|
|
28999
29023
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29000
29024
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29001
29025
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29002
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
29026
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29003
29027
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29004
29028
|
external_type_display_name?: string | undefined;
|
|
29005
29029
|
/** Date and time at which the credential was created. */
|
|
@@ -29099,7 +29123,7 @@ export interface Routes {
|
|
|
29099
29123
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29100
29124
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29101
29125
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29102
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
29126
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29103
29127
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29104
29128
|
external_type_display_name?: string | undefined;
|
|
29105
29129
|
/** Date and time at which the credential was created. */
|
|
@@ -29236,7 +29260,7 @@ export interface Routes {
|
|
|
29236
29260
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29237
29261
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29238
29262
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29239
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
29263
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29240
29264
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29241
29265
|
external_type_display_name?: string | undefined;
|
|
29242
29266
|
/** Date and time at which the credential was created. */
|
|
@@ -29336,7 +29360,7 @@ export interface Routes {
|
|
|
29336
29360
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
29337
29361
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
29338
29362
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
29339
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
29363
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
29340
29364
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
29341
29365
|
external_type_display_name?: string | undefined;
|
|
29342
29366
|
/** Date and time at which the credential was created. */
|
|
@@ -30019,7 +30043,7 @@ export interface Routes {
|
|
|
30019
30043
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
30020
30044
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
30021
30045
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30022
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
30046
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
30023
30047
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
30024
30048
|
external_type_display_name?: string | undefined;
|
|
30025
30049
|
/** Date and time at which the credential was created. */
|
|
@@ -30119,7 +30143,7 @@ export interface Routes {
|
|
|
30119
30143
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
30120
30144
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
30121
30145
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30122
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
30146
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
30123
30147
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
30124
30148
|
external_type_display_name?: string | undefined;
|
|
30125
30149
|
/** Date and time at which the credential was created. */
|
|
@@ -30256,7 +30280,7 @@ export interface Routes {
|
|
|
30256
30280
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
30257
30281
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
30258
30282
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30259
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
30283
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
30260
30284
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
30261
30285
|
external_type_display_name?: string | undefined;
|
|
30262
30286
|
/** Date and time at which the credential was created. */
|
|
@@ -30356,7 +30380,7 @@ export interface Routes {
|
|
|
30356
30380
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
30357
30381
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
30358
30382
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30359
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
30383
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
30360
30384
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
30361
30385
|
external_type_display_name?: string | undefined;
|
|
30362
30386
|
/** Date and time at which the credential was created. */
|
|
@@ -30882,7 +30906,7 @@ export interface Routes {
|
|
|
30882
30906
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
30883
30907
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
30884
30908
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30885
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
30909
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
30886
30910
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
30887
30911
|
external_type_display_name?: string | undefined;
|
|
30888
30912
|
/** Date and time at which the credential was created. */
|
|
@@ -30982,7 +31006,7 @@ export interface Routes {
|
|
|
30982
31006
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
30983
31007
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
30984
31008
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
30985
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
31009
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
30986
31010
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
30987
31011
|
external_type_display_name?: string | undefined;
|
|
30988
31012
|
/** Date and time at which the credential was created. */
|
|
@@ -31119,7 +31143,7 @@ export interface Routes {
|
|
|
31119
31143
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31120
31144
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31121
31145
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31122
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
31146
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
31123
31147
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31124
31148
|
external_type_display_name?: string | undefined;
|
|
31125
31149
|
/** Date and time at which the credential was created. */
|
|
@@ -31219,7 +31243,7 @@ export interface Routes {
|
|
|
31219
31243
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
31220
31244
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
31221
31245
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
31222
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
31246
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
31223
31247
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
31224
31248
|
external_type_display_name?: string | undefined;
|
|
31225
31249
|
/** Date and time at which the credential was created. */
|
|
@@ -33232,6 +33256,10 @@ export interface Routes {
|
|
|
33232
33256
|
created_at: string;
|
|
33233
33257
|
message: string;
|
|
33234
33258
|
warning_code: 'salto_ks_user_not_subscribed';
|
|
33259
|
+
} | {
|
|
33260
|
+
created_at: string;
|
|
33261
|
+
message: string;
|
|
33262
|
+
warning_code: 'unknown_issue_with_acs_user';
|
|
33235
33263
|
}>;
|
|
33236
33264
|
/** Errors associated with the `acs_user`. */
|
|
33237
33265
|
errors: Array<{
|
|
@@ -33593,7 +33621,7 @@ export interface Routes {
|
|
|
33593
33621
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33594
33622
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33595
33623
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33596
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
33624
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33597
33625
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33598
33626
|
external_type_display_name?: string | undefined;
|
|
33599
33627
|
/** Date and time at which the credential was created. */
|
|
@@ -33693,7 +33721,7 @@ export interface Routes {
|
|
|
33693
33721
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33694
33722
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33695
33723
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33696
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
33724
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33697
33725
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33698
33726
|
external_type_display_name?: string | undefined;
|
|
33699
33727
|
/** Date and time at which the credential was created. */
|
|
@@ -33830,7 +33858,7 @@ export interface Routes {
|
|
|
33830
33858
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33831
33859
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33832
33860
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33833
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
33861
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33834
33862
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33835
33863
|
external_type_display_name?: string | undefined;
|
|
33836
33864
|
/** Date and time at which the credential was created. */
|
|
@@ -33930,7 +33958,7 @@ export interface Routes {
|
|
|
33930
33958
|
/** Access method for the credential. Supported values: `code`, `card`, `mobile_key`. */
|
|
33931
33959
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
33932
33960
|
/** Brand-specific terminology for the credential type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`. */
|
|
33933
|
-
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential') | undefined;
|
|
33961
|
+
external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card' | 'salto_ks_credential' | 'assa_abloy_vostio_card' | 'assa_abloy_vostio_mobile_key') | undefined;
|
|
33934
33962
|
/** Display name that corresponds to the brand-specific terminology for the credential type. */
|
|
33935
33963
|
external_type_display_name?: string | undefined;
|
|
33936
33964
|
/** Date and time at which the credential was created. */
|