@seamapi/types 1.330.0 → 1.332.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 +755 -106
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1767 -195
- 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/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/models/devices/device.d.ts +380 -16
- package/lib/seam/connect/models/devices/device.js +125 -5
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +235 -11
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +235 -11
- package/lib/seam/connect/openapi.d.ts +42 -27
- package/lib/seam/connect/openapi.js +682 -95
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1080 -111
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/models/devices/device.ts +143 -6
- package/src/lib/seam/connect/openapi.ts +720 -76
- package/src/lib/seam/connect/route-types.ts +1497 -68
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>;
|
|
2
|
+
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>;
|
|
3
3
|
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4
4
|
export type AcsCredentialExternalType = z.infer<typeof acs_credential_external_type>;
|
|
5
5
|
export declare const unknown_issue_with_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -178,7 +178,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
178
178
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
179
179
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
180
180
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
181
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
181
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
182
182
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
183
183
|
created_at: z.ZodString;
|
|
184
184
|
workspace_id: z.ZodString;
|
|
@@ -357,7 +357,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
357
357
|
credential_id?: string | undefined;
|
|
358
358
|
} | undefined;
|
|
359
359
|
is_one_time_use?: boolean | undefined;
|
|
360
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
360
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
361
361
|
external_type_display_name?: string | undefined;
|
|
362
362
|
acs_user_id?: string | undefined;
|
|
363
363
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -419,7 +419,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
419
419
|
credential_id?: string | undefined;
|
|
420
420
|
} | undefined;
|
|
421
421
|
is_one_time_use?: boolean | undefined;
|
|
422
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
422
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
423
423
|
external_type_display_name?: string | undefined;
|
|
424
424
|
acs_user_id?: string | undefined;
|
|
425
425
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -444,7 +444,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
444
444
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
445
445
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
446
446
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
447
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
447
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
448
448
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
449
449
|
created_at: z.ZodString;
|
|
450
450
|
workspace_id: z.ZodString;
|
|
@@ -623,7 +623,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
623
623
|
credential_id?: string | undefined;
|
|
624
624
|
} | undefined;
|
|
625
625
|
is_one_time_use?: boolean | undefined;
|
|
626
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
626
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
627
627
|
external_type_display_name?: string | undefined;
|
|
628
628
|
acs_user_id?: string | undefined;
|
|
629
629
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -685,7 +685,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
685
685
|
credential_id?: string | undefined;
|
|
686
686
|
} | undefined;
|
|
687
687
|
is_one_time_use?: boolean | undefined;
|
|
688
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
688
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
689
689
|
external_type_display_name?: string | undefined;
|
|
690
690
|
acs_user_id?: string | undefined;
|
|
691
691
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,kCAAkC,EAAE,MAAM,qBAAqB,CAAA;AAExE,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -285,7 +285,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
285
285
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
286
286
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
287
287
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
288
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
288
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
289
289
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
290
290
|
created_at: z.ZodString;
|
|
291
291
|
workspace_id: z.ZodString;
|
|
@@ -464,7 +464,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
464
464
|
credential_id?: string | undefined;
|
|
465
465
|
} | undefined;
|
|
466
466
|
is_one_time_use?: boolean | undefined;
|
|
467
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
467
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
468
468
|
external_type_display_name?: string | undefined;
|
|
469
469
|
acs_user_id?: string | undefined;
|
|
470
470
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -526,7 +526,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
526
526
|
credential_id?: string | undefined;
|
|
527
527
|
} | undefined;
|
|
528
528
|
is_one_time_use?: boolean | undefined;
|
|
529
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
529
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
530
530
|
external_type_display_name?: string | undefined;
|
|
531
531
|
acs_user_id?: string | undefined;
|
|
532
532
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -550,7 +550,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
550
550
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
551
551
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
552
552
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
553
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
553
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
554
554
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
555
555
|
created_at: z.ZodString;
|
|
556
556
|
workspace_id: z.ZodString;
|
|
@@ -729,7 +729,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
729
729
|
credential_id?: string | undefined;
|
|
730
730
|
} | undefined;
|
|
731
731
|
is_one_time_use?: boolean | undefined;
|
|
732
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
732
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
733
733
|
external_type_display_name?: string | undefined;
|
|
734
734
|
acs_user_id?: string | undefined;
|
|
735
735
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -791,7 +791,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
791
791
|
credential_id?: string | undefined;
|
|
792
792
|
} | undefined;
|
|
793
793
|
is_one_time_use?: boolean | undefined;
|
|
794
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
794
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
795
795
|
external_type_display_name?: string | undefined;
|
|
796
796
|
acs_user_id?: string | undefined;
|
|
797
797
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -890,7 +890,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
890
890
|
credential_id?: string | undefined;
|
|
891
891
|
} | undefined;
|
|
892
892
|
is_one_time_use?: boolean | undefined;
|
|
893
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
893
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
894
894
|
external_type_display_name?: string | undefined;
|
|
895
895
|
acs_user_id?: string | undefined;
|
|
896
896
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -952,7 +952,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
952
952
|
credential_id?: string | undefined;
|
|
953
953
|
} | undefined;
|
|
954
954
|
is_one_time_use?: boolean | undefined;
|
|
955
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
955
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
956
956
|
external_type_display_name?: string | undefined;
|
|
957
957
|
acs_user_id?: string | undefined;
|
|
958
958
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1041,7 +1041,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1041
1041
|
credential_id?: string | undefined;
|
|
1042
1042
|
} | undefined;
|
|
1043
1043
|
is_one_time_use?: boolean | undefined;
|
|
1044
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1044
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1045
1045
|
external_type_display_name?: string | undefined;
|
|
1046
1046
|
acs_user_id?: string | undefined;
|
|
1047
1047
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1103,7 +1103,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1103
1103
|
credential_id?: string | undefined;
|
|
1104
1104
|
} | undefined;
|
|
1105
1105
|
is_one_time_use?: boolean | undefined;
|
|
1106
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1106
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1107
1107
|
external_type_display_name?: string | undefined;
|
|
1108
1108
|
acs_user_id?: string | undefined;
|
|
1109
1109
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1197,7 +1197,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1197
1197
|
credential_id?: string | undefined;
|
|
1198
1198
|
} | undefined;
|
|
1199
1199
|
is_one_time_use?: boolean | undefined;
|
|
1200
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1200
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1201
1201
|
external_type_display_name?: string | undefined;
|
|
1202
1202
|
acs_user_id?: string | undefined;
|
|
1203
1203
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1259,7 +1259,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1259
1259
|
credential_id?: string | undefined;
|
|
1260
1260
|
} | undefined;
|
|
1261
1261
|
is_one_time_use?: boolean | undefined;
|
|
1262
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1262
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1263
1263
|
external_type_display_name?: string | undefined;
|
|
1264
1264
|
acs_user_id?: string | undefined;
|
|
1265
1265
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1354,7 +1354,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1354
1354
|
credential_id?: string | undefined;
|
|
1355
1355
|
} | undefined;
|
|
1356
1356
|
is_one_time_use?: boolean | undefined;
|
|
1357
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1357
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1358
1358
|
external_type_display_name?: string | undefined;
|
|
1359
1359
|
acs_user_id?: string | undefined;
|
|
1360
1360
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1416,7 +1416,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1416
1416
|
credential_id?: string | undefined;
|
|
1417
1417
|
} | undefined;
|
|
1418
1418
|
is_one_time_use?: boolean | undefined;
|
|
1419
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1419
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1420
1420
|
external_type_display_name?: string | undefined;
|
|
1421
1421
|
acs_user_id?: string | undefined;
|
|
1422
1422
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1538,7 +1538,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1538
1538
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1539
1539
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1540
1540
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1541
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
1541
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
1542
1542
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1543
1543
|
created_at: z.ZodString;
|
|
1544
1544
|
workspace_id: z.ZodString;
|
|
@@ -1717,7 +1717,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1717
1717
|
credential_id?: string | undefined;
|
|
1718
1718
|
} | undefined;
|
|
1719
1719
|
is_one_time_use?: boolean | undefined;
|
|
1720
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1720
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1721
1721
|
external_type_display_name?: string | undefined;
|
|
1722
1722
|
acs_user_id?: string | undefined;
|
|
1723
1723
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1779,7 +1779,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1779
1779
|
credential_id?: string | undefined;
|
|
1780
1780
|
} | undefined;
|
|
1781
1781
|
is_one_time_use?: boolean | undefined;
|
|
1782
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1782
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1783
1783
|
external_type_display_name?: string | undefined;
|
|
1784
1784
|
acs_user_id?: string | undefined;
|
|
1785
1785
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1803,7 +1803,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1803
1803
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1804
1804
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1805
1805
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1806
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
1806
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
1807
1807
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1808
1808
|
created_at: z.ZodString;
|
|
1809
1809
|
workspace_id: z.ZodString;
|
|
@@ -1982,7 +1982,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1982
1982
|
credential_id?: string | undefined;
|
|
1983
1983
|
} | undefined;
|
|
1984
1984
|
is_one_time_use?: boolean | undefined;
|
|
1985
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1985
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1986
1986
|
external_type_display_name?: string | undefined;
|
|
1987
1987
|
acs_user_id?: string | undefined;
|
|
1988
1988
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2044,7 +2044,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2044
2044
|
credential_id?: string | undefined;
|
|
2045
2045
|
} | undefined;
|
|
2046
2046
|
is_one_time_use?: boolean | undefined;
|
|
2047
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2047
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2048
2048
|
external_type_display_name?: string | undefined;
|
|
2049
2049
|
acs_user_id?: string | undefined;
|
|
2050
2050
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2111,7 +2111,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2111
2111
|
credential_id?: string | undefined;
|
|
2112
2112
|
} | undefined;
|
|
2113
2113
|
is_one_time_use?: boolean | undefined;
|
|
2114
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2114
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2115
2115
|
external_type_display_name?: string | undefined;
|
|
2116
2116
|
acs_user_id?: string | undefined;
|
|
2117
2117
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2173,7 +2173,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2173
2173
|
credential_id?: string | undefined;
|
|
2174
2174
|
} | undefined;
|
|
2175
2175
|
is_one_time_use?: boolean | undefined;
|
|
2176
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2176
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2177
2177
|
external_type_display_name?: string | undefined;
|
|
2178
2178
|
acs_user_id?: string | undefined;
|
|
2179
2179
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2241,7 +2241,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2241
2241
|
credential_id?: string | undefined;
|
|
2242
2242
|
} | undefined;
|
|
2243
2243
|
is_one_time_use?: boolean | undefined;
|
|
2244
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2244
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2245
2245
|
external_type_display_name?: string | undefined;
|
|
2246
2246
|
acs_user_id?: string | undefined;
|
|
2247
2247
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2303,7 +2303,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2303
2303
|
credential_id?: string | undefined;
|
|
2304
2304
|
} | undefined;
|
|
2305
2305
|
is_one_time_use?: boolean | undefined;
|
|
2306
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
2306
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2307
2307
|
external_type_display_name?: string | undefined;
|
|
2308
2308
|
acs_user_id?: string | undefined;
|
|
2309
2309
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41,7 +41,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
41
41
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
42
42
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
43
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
44
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
44
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
45
45
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
46
46
|
created_at: z.ZodString;
|
|
47
47
|
workspace_id: z.ZodString;
|
|
@@ -220,7 +220,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
220
220
|
credential_id?: string | undefined;
|
|
221
221
|
} | undefined;
|
|
222
222
|
is_one_time_use?: boolean | undefined;
|
|
223
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
223
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
224
224
|
external_type_display_name?: string | undefined;
|
|
225
225
|
acs_user_id?: string | undefined;
|
|
226
226
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -282,7 +282,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
282
282
|
credential_id?: string | undefined;
|
|
283
283
|
} | undefined;
|
|
284
284
|
is_one_time_use?: boolean | undefined;
|
|
285
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
285
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
286
286
|
external_type_display_name?: string | undefined;
|
|
287
287
|
acs_user_id?: string | undefined;
|
|
288
288
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -306,7 +306,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
306
306
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
307
307
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
308
308
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
309
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
309
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
310
310
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
311
311
|
created_at: z.ZodString;
|
|
312
312
|
workspace_id: z.ZodString;
|
|
@@ -485,7 +485,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
485
485
|
credential_id?: string | undefined;
|
|
486
486
|
} | undefined;
|
|
487
487
|
is_one_time_use?: boolean | undefined;
|
|
488
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
488
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
489
489
|
external_type_display_name?: string | undefined;
|
|
490
490
|
acs_user_id?: string | undefined;
|
|
491
491
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -547,7 +547,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
547
547
|
credential_id?: string | undefined;
|
|
548
548
|
} | undefined;
|
|
549
549
|
is_one_time_use?: boolean | undefined;
|
|
550
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
550
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
551
551
|
external_type_display_name?: string | undefined;
|
|
552
552
|
acs_user_id?: string | undefined;
|
|
553
553
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -614,7 +614,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
614
614
|
credential_id?: string | undefined;
|
|
615
615
|
} | undefined;
|
|
616
616
|
is_one_time_use?: boolean | undefined;
|
|
617
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
617
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
618
618
|
external_type_display_name?: string | undefined;
|
|
619
619
|
acs_user_id?: string | undefined;
|
|
620
620
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -676,7 +676,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
676
676
|
credential_id?: string | undefined;
|
|
677
677
|
} | undefined;
|
|
678
678
|
is_one_time_use?: boolean | undefined;
|
|
679
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
679
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
680
680
|
external_type_display_name?: string | undefined;
|
|
681
681
|
acs_user_id?: string | undefined;
|
|
682
682
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -744,7 +744,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
744
744
|
credential_id?: string | undefined;
|
|
745
745
|
} | undefined;
|
|
746
746
|
is_one_time_use?: boolean | undefined;
|
|
747
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
747
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
748
748
|
external_type_display_name?: string | undefined;
|
|
749
749
|
acs_user_id?: string | undefined;
|
|
750
750
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -806,7 +806,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
806
806
|
credential_id?: string | undefined;
|
|
807
807
|
} | undefined;
|
|
808
808
|
is_one_time_use?: boolean | undefined;
|
|
809
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
809
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
810
810
|
external_type_display_name?: string | undefined;
|
|
811
811
|
acs_user_id?: string | undefined;
|
|
812
812
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -129,7 +129,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
129
129
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
130
130
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
131
131
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
132
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
132
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
133
133
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
134
134
|
created_at: z.ZodString;
|
|
135
135
|
workspace_id: z.ZodString;
|
|
@@ -308,7 +308,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
308
308
|
credential_id?: string | undefined;
|
|
309
309
|
} | undefined;
|
|
310
310
|
is_one_time_use?: boolean | undefined;
|
|
311
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
311
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
312
312
|
external_type_display_name?: string | undefined;
|
|
313
313
|
acs_user_id?: string | undefined;
|
|
314
314
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -370,7 +370,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
370
370
|
credential_id?: string | undefined;
|
|
371
371
|
} | undefined;
|
|
372
372
|
is_one_time_use?: boolean | undefined;
|
|
373
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
373
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
374
374
|
external_type_display_name?: string | undefined;
|
|
375
375
|
acs_user_id?: string | undefined;
|
|
376
376
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -394,7 +394,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
394
394
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
395
395
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
396
396
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
397
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential"]>>;
|
|
397
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
398
398
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
399
399
|
created_at: z.ZodString;
|
|
400
400
|
workspace_id: z.ZodString;
|
|
@@ -573,7 +573,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
573
573
|
credential_id?: string | undefined;
|
|
574
574
|
} | undefined;
|
|
575
575
|
is_one_time_use?: boolean | undefined;
|
|
576
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
576
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
577
577
|
external_type_display_name?: string | undefined;
|
|
578
578
|
acs_user_id?: string | undefined;
|
|
579
579
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -635,7 +635,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
635
635
|
credential_id?: string | undefined;
|
|
636
636
|
} | undefined;
|
|
637
637
|
is_one_time_use?: boolean | undefined;
|
|
638
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
638
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
639
639
|
external_type_display_name?: string | undefined;
|
|
640
640
|
acs_user_id?: string | undefined;
|
|
641
641
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -734,7 +734,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
734
734
|
credential_id?: string | undefined;
|
|
735
735
|
} | undefined;
|
|
736
736
|
is_one_time_use?: boolean | undefined;
|
|
737
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
737
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
738
738
|
external_type_display_name?: string | undefined;
|
|
739
739
|
acs_user_id?: string | undefined;
|
|
740
740
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -796,7 +796,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
796
796
|
credential_id?: string | undefined;
|
|
797
797
|
} | undefined;
|
|
798
798
|
is_one_time_use?: boolean | undefined;
|
|
799
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
799
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
800
800
|
external_type_display_name?: string | undefined;
|
|
801
801
|
acs_user_id?: string | undefined;
|
|
802
802
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -885,7 +885,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
885
885
|
credential_id?: string | undefined;
|
|
886
886
|
} | undefined;
|
|
887
887
|
is_one_time_use?: boolean | undefined;
|
|
888
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
888
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
889
889
|
external_type_display_name?: string | undefined;
|
|
890
890
|
acs_user_id?: string | undefined;
|
|
891
891
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -947,7 +947,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
947
947
|
credential_id?: string | undefined;
|
|
948
948
|
} | undefined;
|
|
949
949
|
is_one_time_use?: boolean | undefined;
|
|
950
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
950
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
951
951
|
external_type_display_name?: string | undefined;
|
|
952
952
|
acs_user_id?: string | undefined;
|
|
953
953
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1041,7 +1041,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1041
1041
|
credential_id?: string | undefined;
|
|
1042
1042
|
} | undefined;
|
|
1043
1043
|
is_one_time_use?: boolean | undefined;
|
|
1044
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1044
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1045
1045
|
external_type_display_name?: string | undefined;
|
|
1046
1046
|
acs_user_id?: string | undefined;
|
|
1047
1047
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1103,7 +1103,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1103
1103
|
credential_id?: string | undefined;
|
|
1104
1104
|
} | undefined;
|
|
1105
1105
|
is_one_time_use?: boolean | undefined;
|
|
1106
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1106
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1107
1107
|
external_type_display_name?: string | undefined;
|
|
1108
1108
|
acs_user_id?: string | undefined;
|
|
1109
1109
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1198,7 +1198,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1198
1198
|
credential_id?: string | undefined;
|
|
1199
1199
|
} | undefined;
|
|
1200
1200
|
is_one_time_use?: boolean | undefined;
|
|
1201
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1201
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1202
1202
|
external_type_display_name?: string | undefined;
|
|
1203
1203
|
acs_user_id?: string | undefined;
|
|
1204
1204
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1260,7 +1260,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1260
1260
|
credential_id?: string | undefined;
|
|
1261
1261
|
} | undefined;
|
|
1262
1262
|
is_one_time_use?: boolean | undefined;
|
|
1263
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | undefined;
|
|
1263
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1264
1264
|
external_type_display_name?: string | undefined;
|
|
1265
1265
|
acs_user_id?: string | undefined;
|
|
1266
1266
|
acs_credential_pool_id?: string | undefined;
|