@seamapi/types 1.816.0 → 1.818.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 +54 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +460 -207
- package/dist/index.cjs +54 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +0 -1
- 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/batch.d.ts +100 -42
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +12 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/openapi.js +44 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +275 -135
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +0 -1
- package/src/lib/seam/connect/models/devices/device.ts +14 -0
- package/src/lib/seam/connect/openapi.ts +52 -7
- package/src/lib/seam/connect/route-types.ts +160 -135
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_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_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>;
|
|
3
3
|
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key", "cloud_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<{
|
|
@@ -180,7 +180,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
180
180
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
181
181
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
182
182
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
183
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
183
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
184
184
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
185
185
|
created_at: z.ZodString;
|
|
186
186
|
workspace_id: z.ZodString;
|
|
@@ -394,7 +394,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
394
394
|
issued_at?: string | null | undefined;
|
|
395
395
|
is_issued?: boolean | undefined;
|
|
396
396
|
acs_user_id?: string | undefined;
|
|
397
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
397
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
398
398
|
external_type_display_name?: string | undefined;
|
|
399
399
|
acs_credential_pool_id?: string | undefined;
|
|
400
400
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -466,7 +466,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
466
466
|
issued_at?: string | null | undefined;
|
|
467
467
|
is_issued?: boolean | undefined;
|
|
468
468
|
acs_user_id?: string | undefined;
|
|
469
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
469
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
470
470
|
external_type_display_name?: string | undefined;
|
|
471
471
|
acs_credential_pool_id?: string | undefined;
|
|
472
472
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -490,7 +490,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
490
490
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
491
491
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
492
492
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
493
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
493
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
494
494
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
495
495
|
created_at: z.ZodString;
|
|
496
496
|
workspace_id: z.ZodString;
|
|
@@ -704,7 +704,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
704
704
|
issued_at?: string | null | undefined;
|
|
705
705
|
is_issued?: boolean | undefined;
|
|
706
706
|
acs_user_id?: string | undefined;
|
|
707
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
707
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
708
708
|
external_type_display_name?: string | undefined;
|
|
709
709
|
acs_credential_pool_id?: string | undefined;
|
|
710
710
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -776,7 +776,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
776
776
|
issued_at?: string | null | undefined;
|
|
777
777
|
is_issued?: boolean | undefined;
|
|
778
778
|
acs_user_id?: string | undefined;
|
|
779
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
779
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
780
780
|
external_type_display_name?: string | undefined;
|
|
781
781
|
acs_credential_pool_id?: string | undefined;
|
|
782
782
|
parent_acs_credential_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,EACL,kCAAkC,EAClC,8BAA8B,GAC/B,MAAM,qBAAqB,CAAA;AAE5B,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -299,7 +299,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
299
299
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
300
300
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
301
301
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
302
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
302
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
303
303
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
304
304
|
created_at: z.ZodString;
|
|
305
305
|
workspace_id: z.ZodString;
|
|
@@ -513,7 +513,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
513
513
|
issued_at?: string | null | undefined;
|
|
514
514
|
is_issued?: boolean | undefined;
|
|
515
515
|
acs_user_id?: string | undefined;
|
|
516
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
516
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
517
517
|
external_type_display_name?: string | undefined;
|
|
518
518
|
acs_credential_pool_id?: string | undefined;
|
|
519
519
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -585,7 +585,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
585
585
|
issued_at?: string | null | undefined;
|
|
586
586
|
is_issued?: boolean | undefined;
|
|
587
587
|
acs_user_id?: string | undefined;
|
|
588
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
588
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
589
589
|
external_type_display_name?: string | undefined;
|
|
590
590
|
acs_credential_pool_id?: string | undefined;
|
|
591
591
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -608,7 +608,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
608
608
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
609
609
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
610
610
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
611
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
611
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
612
612
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
613
613
|
created_at: z.ZodString;
|
|
614
614
|
workspace_id: z.ZodString;
|
|
@@ -822,7 +822,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
822
822
|
issued_at?: string | null | undefined;
|
|
823
823
|
is_issued?: boolean | undefined;
|
|
824
824
|
acs_user_id?: string | undefined;
|
|
825
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
825
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
826
826
|
external_type_display_name?: string | undefined;
|
|
827
827
|
acs_credential_pool_id?: string | undefined;
|
|
828
828
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -894,7 +894,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
894
894
|
issued_at?: string | null | undefined;
|
|
895
895
|
is_issued?: boolean | undefined;
|
|
896
896
|
acs_user_id?: string | undefined;
|
|
897
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
897
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
898
898
|
external_type_display_name?: string | undefined;
|
|
899
899
|
acs_credential_pool_id?: string | undefined;
|
|
900
900
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1003,7 +1003,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1003
1003
|
issued_at?: string | null | undefined;
|
|
1004
1004
|
is_issued?: boolean | undefined;
|
|
1005
1005
|
acs_user_id?: string | undefined;
|
|
1006
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1006
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1007
1007
|
external_type_display_name?: string | undefined;
|
|
1008
1008
|
acs_credential_pool_id?: string | undefined;
|
|
1009
1009
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1075,7 +1075,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1075
1075
|
issued_at?: string | null | undefined;
|
|
1076
1076
|
is_issued?: boolean | undefined;
|
|
1077
1077
|
acs_user_id?: string | undefined;
|
|
1078
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1078
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1079
1079
|
external_type_display_name?: string | undefined;
|
|
1080
1080
|
acs_credential_pool_id?: string | undefined;
|
|
1081
1081
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1174,7 +1174,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1174
1174
|
issued_at?: string | null | undefined;
|
|
1175
1175
|
is_issued?: boolean | undefined;
|
|
1176
1176
|
acs_user_id?: string | undefined;
|
|
1177
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1177
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1178
1178
|
external_type_display_name?: string | undefined;
|
|
1179
1179
|
acs_credential_pool_id?: string | undefined;
|
|
1180
1180
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1246,7 +1246,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1246
1246
|
issued_at?: string | null | undefined;
|
|
1247
1247
|
is_issued?: boolean | undefined;
|
|
1248
1248
|
acs_user_id?: string | undefined;
|
|
1249
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1249
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1250
1250
|
external_type_display_name?: string | undefined;
|
|
1251
1251
|
acs_credential_pool_id?: string | undefined;
|
|
1252
1252
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1350,7 +1350,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1350
1350
|
issued_at?: string | null | undefined;
|
|
1351
1351
|
is_issued?: boolean | undefined;
|
|
1352
1352
|
acs_user_id?: string | undefined;
|
|
1353
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1353
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1354
1354
|
external_type_display_name?: string | undefined;
|
|
1355
1355
|
acs_credential_pool_id?: string | undefined;
|
|
1356
1356
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1422,7 +1422,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1422
1422
|
issued_at?: string | null | undefined;
|
|
1423
1423
|
is_issued?: boolean | undefined;
|
|
1424
1424
|
acs_user_id?: string | undefined;
|
|
1425
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1425
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1426
1426
|
external_type_display_name?: string | undefined;
|
|
1427
1427
|
acs_credential_pool_id?: string | undefined;
|
|
1428
1428
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1527,7 +1527,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1527
1527
|
issued_at?: string | null | undefined;
|
|
1528
1528
|
is_issued?: boolean | undefined;
|
|
1529
1529
|
acs_user_id?: string | undefined;
|
|
1530
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1530
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1531
1531
|
external_type_display_name?: string | undefined;
|
|
1532
1532
|
acs_credential_pool_id?: string | undefined;
|
|
1533
1533
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1599,7 +1599,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1599
1599
|
issued_at?: string | null | undefined;
|
|
1600
1600
|
is_issued?: boolean | undefined;
|
|
1601
1601
|
acs_user_id?: string | undefined;
|
|
1602
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1602
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1603
1603
|
external_type_display_name?: string | undefined;
|
|
1604
1604
|
acs_credential_pool_id?: string | undefined;
|
|
1605
1605
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1762,7 +1762,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1762
1762
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1763
1763
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1764
1764
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
1765
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
1765
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
1766
1766
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1767
1767
|
created_at: z.ZodString;
|
|
1768
1768
|
workspace_id: z.ZodString;
|
|
@@ -1976,7 +1976,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1976
1976
|
issued_at?: string | null | undefined;
|
|
1977
1977
|
is_issued?: boolean | undefined;
|
|
1978
1978
|
acs_user_id?: string | undefined;
|
|
1979
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1979
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1980
1980
|
external_type_display_name?: string | undefined;
|
|
1981
1981
|
acs_credential_pool_id?: string | undefined;
|
|
1982
1982
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2048,7 +2048,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2048
2048
|
issued_at?: string | null | undefined;
|
|
2049
2049
|
is_issued?: boolean | undefined;
|
|
2050
2050
|
acs_user_id?: string | undefined;
|
|
2051
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2051
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2052
2052
|
external_type_display_name?: string | undefined;
|
|
2053
2053
|
acs_credential_pool_id?: string | undefined;
|
|
2054
2054
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2071,7 +2071,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2071
2071
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2072
2072
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2073
2073
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
2074
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
2074
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
2075
2075
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2076
2076
|
created_at: z.ZodString;
|
|
2077
2077
|
workspace_id: z.ZodString;
|
|
@@ -2285,7 +2285,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2285
2285
|
issued_at?: string | null | undefined;
|
|
2286
2286
|
is_issued?: boolean | undefined;
|
|
2287
2287
|
acs_user_id?: string | undefined;
|
|
2288
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2288
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2289
2289
|
external_type_display_name?: string | undefined;
|
|
2290
2290
|
acs_credential_pool_id?: string | undefined;
|
|
2291
2291
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2357,7 +2357,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2357
2357
|
issued_at?: string | null | undefined;
|
|
2358
2358
|
is_issued?: boolean | undefined;
|
|
2359
2359
|
acs_user_id?: string | undefined;
|
|
2360
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2360
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2361
2361
|
external_type_display_name?: string | undefined;
|
|
2362
2362
|
acs_credential_pool_id?: string | undefined;
|
|
2363
2363
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2434,7 +2434,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2434
2434
|
issued_at?: string | null | undefined;
|
|
2435
2435
|
is_issued?: boolean | undefined;
|
|
2436
2436
|
acs_user_id?: string | undefined;
|
|
2437
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2437
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2438
2438
|
external_type_display_name?: string | undefined;
|
|
2439
2439
|
acs_credential_pool_id?: string | undefined;
|
|
2440
2440
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2506,7 +2506,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2506
2506
|
issued_at?: string | null | undefined;
|
|
2507
2507
|
is_issued?: boolean | undefined;
|
|
2508
2508
|
acs_user_id?: string | undefined;
|
|
2509
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2509
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2510
2510
|
external_type_display_name?: string | undefined;
|
|
2511
2511
|
acs_credential_pool_id?: string | undefined;
|
|
2512
2512
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2584,7 +2584,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2584
2584
|
issued_at?: string | null | undefined;
|
|
2585
2585
|
is_issued?: boolean | undefined;
|
|
2586
2586
|
acs_user_id?: string | undefined;
|
|
2587
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2587
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2588
2588
|
external_type_display_name?: string | undefined;
|
|
2589
2589
|
acs_credential_pool_id?: string | undefined;
|
|
2590
2590
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2656,7 +2656,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2656
2656
|
issued_at?: string | null | undefined;
|
|
2657
2657
|
is_issued?: boolean | undefined;
|
|
2658
2658
|
acs_user_id?: string | undefined;
|
|
2659
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
2659
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
2660
2660
|
external_type_display_name?: string | undefined;
|
|
2661
2661
|
acs_credential_pool_id?: string | undefined;
|
|
2662
2662
|
parent_acs_credential_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", "cloud_key"]>;
|
|
44
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
44
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
45
45
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
46
46
|
created_at: z.ZodString;
|
|
47
47
|
workspace_id: z.ZodString;
|
|
@@ -255,7 +255,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
255
255
|
issued_at?: string | null | undefined;
|
|
256
256
|
is_issued?: boolean | undefined;
|
|
257
257
|
acs_user_id?: string | undefined;
|
|
258
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
258
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
259
259
|
external_type_display_name?: string | undefined;
|
|
260
260
|
acs_credential_pool_id?: string | undefined;
|
|
261
261
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -327,7 +327,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
327
327
|
issued_at?: string | null | undefined;
|
|
328
328
|
is_issued?: boolean | undefined;
|
|
329
329
|
acs_user_id?: string | undefined;
|
|
330
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
330
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
331
331
|
external_type_display_name?: string | undefined;
|
|
332
332
|
acs_credential_pool_id?: string | undefined;
|
|
333
333
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -350,7 +350,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
350
350
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
351
351
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
352
352
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
353
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
353
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
354
354
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
355
355
|
created_at: z.ZodString;
|
|
356
356
|
workspace_id: z.ZodString;
|
|
@@ -564,7 +564,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
564
564
|
issued_at?: string | null | undefined;
|
|
565
565
|
is_issued?: boolean | undefined;
|
|
566
566
|
acs_user_id?: string | undefined;
|
|
567
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
567
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
568
568
|
external_type_display_name?: string | undefined;
|
|
569
569
|
acs_credential_pool_id?: string | undefined;
|
|
570
570
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -636,7 +636,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
636
636
|
issued_at?: string | null | undefined;
|
|
637
637
|
is_issued?: boolean | undefined;
|
|
638
638
|
acs_user_id?: string | undefined;
|
|
639
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
639
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
640
640
|
external_type_display_name?: string | undefined;
|
|
641
641
|
acs_credential_pool_id?: string | undefined;
|
|
642
642
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -713,7 +713,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
713
713
|
issued_at?: string | null | undefined;
|
|
714
714
|
is_issued?: boolean | undefined;
|
|
715
715
|
acs_user_id?: string | undefined;
|
|
716
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
716
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
717
717
|
external_type_display_name?: string | undefined;
|
|
718
718
|
acs_credential_pool_id?: string | undefined;
|
|
719
719
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -785,7 +785,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
785
785
|
issued_at?: string | null | undefined;
|
|
786
786
|
is_issued?: boolean | undefined;
|
|
787
787
|
acs_user_id?: string | undefined;
|
|
788
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
788
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
789
789
|
external_type_display_name?: string | undefined;
|
|
790
790
|
acs_credential_pool_id?: string | undefined;
|
|
791
791
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -863,7 +863,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
863
863
|
issued_at?: string | null | undefined;
|
|
864
864
|
is_issued?: boolean | undefined;
|
|
865
865
|
acs_user_id?: string | undefined;
|
|
866
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
866
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
867
867
|
external_type_display_name?: string | undefined;
|
|
868
868
|
acs_credential_pool_id?: string | undefined;
|
|
869
869
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -935,7 +935,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
935
935
|
issued_at?: string | null | undefined;
|
|
936
936
|
is_issued?: boolean | undefined;
|
|
937
937
|
acs_user_id?: string | undefined;
|
|
938
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
938
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
939
939
|
external_type_display_name?: string | undefined;
|
|
940
940
|
acs_credential_pool_id?: string | undefined;
|
|
941
941
|
parent_acs_credential_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", "cloud_key"]>;
|
|
132
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
132
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
133
133
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
134
134
|
created_at: z.ZodString;
|
|
135
135
|
workspace_id: z.ZodString;
|
|
@@ -343,7 +343,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
343
343
|
issued_at?: string | null | undefined;
|
|
344
344
|
is_issued?: boolean | undefined;
|
|
345
345
|
acs_user_id?: string | undefined;
|
|
346
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
346
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
347
347
|
external_type_display_name?: string | undefined;
|
|
348
348
|
acs_credential_pool_id?: string | undefined;
|
|
349
349
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -415,7 +415,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
415
415
|
issued_at?: string | null | undefined;
|
|
416
416
|
is_issued?: boolean | undefined;
|
|
417
417
|
acs_user_id?: string | undefined;
|
|
418
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
418
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
419
419
|
external_type_display_name?: string | undefined;
|
|
420
420
|
acs_credential_pool_id?: string | undefined;
|
|
421
421
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -438,7 +438,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
438
438
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
439
439
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
440
440
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
441
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "
|
|
441
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
442
442
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
443
443
|
created_at: z.ZodString;
|
|
444
444
|
workspace_id: z.ZodString;
|
|
@@ -652,7 +652,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
652
652
|
issued_at?: string | null | undefined;
|
|
653
653
|
is_issued?: boolean | undefined;
|
|
654
654
|
acs_user_id?: string | undefined;
|
|
655
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
655
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
656
656
|
external_type_display_name?: string | undefined;
|
|
657
657
|
acs_credential_pool_id?: string | undefined;
|
|
658
658
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -724,7 +724,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
724
724
|
issued_at?: string | null | undefined;
|
|
725
725
|
is_issued?: boolean | undefined;
|
|
726
726
|
acs_user_id?: string | undefined;
|
|
727
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
727
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
728
728
|
external_type_display_name?: string | undefined;
|
|
729
729
|
acs_credential_pool_id?: string | undefined;
|
|
730
730
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -833,7 +833,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
833
833
|
issued_at?: string | null | undefined;
|
|
834
834
|
is_issued?: boolean | undefined;
|
|
835
835
|
acs_user_id?: string | undefined;
|
|
836
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
836
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
837
837
|
external_type_display_name?: string | undefined;
|
|
838
838
|
acs_credential_pool_id?: string | undefined;
|
|
839
839
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -905,7 +905,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
905
905
|
issued_at?: string | null | undefined;
|
|
906
906
|
is_issued?: boolean | undefined;
|
|
907
907
|
acs_user_id?: string | undefined;
|
|
908
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
908
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
909
909
|
external_type_display_name?: string | undefined;
|
|
910
910
|
acs_credential_pool_id?: string | undefined;
|
|
911
911
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1004,7 +1004,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1004
1004
|
issued_at?: string | null | undefined;
|
|
1005
1005
|
is_issued?: boolean | undefined;
|
|
1006
1006
|
acs_user_id?: string | undefined;
|
|
1007
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1007
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1008
1008
|
external_type_display_name?: string | undefined;
|
|
1009
1009
|
acs_credential_pool_id?: string | undefined;
|
|
1010
1010
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1076,7 +1076,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1076
1076
|
issued_at?: string | null | undefined;
|
|
1077
1077
|
is_issued?: boolean | undefined;
|
|
1078
1078
|
acs_user_id?: string | undefined;
|
|
1079
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1079
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1080
1080
|
external_type_display_name?: string | undefined;
|
|
1081
1081
|
acs_credential_pool_id?: string | undefined;
|
|
1082
1082
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1180,7 +1180,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1180
1180
|
issued_at?: string | null | undefined;
|
|
1181
1181
|
is_issued?: boolean | undefined;
|
|
1182
1182
|
acs_user_id?: string | undefined;
|
|
1183
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1183
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1184
1184
|
external_type_display_name?: string | undefined;
|
|
1185
1185
|
acs_credential_pool_id?: string | undefined;
|
|
1186
1186
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1252,7 +1252,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1252
1252
|
issued_at?: string | null | undefined;
|
|
1253
1253
|
is_issued?: boolean | undefined;
|
|
1254
1254
|
acs_user_id?: string | undefined;
|
|
1255
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1255
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1256
1256
|
external_type_display_name?: string | undefined;
|
|
1257
1257
|
acs_credential_pool_id?: string | undefined;
|
|
1258
1258
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1357,7 +1357,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1357
1357
|
issued_at?: string | null | undefined;
|
|
1358
1358
|
is_issued?: boolean | undefined;
|
|
1359
1359
|
acs_user_id?: string | undefined;
|
|
1360
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1360
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1361
1361
|
external_type_display_name?: string | undefined;
|
|
1362
1362
|
acs_credential_pool_id?: string | undefined;
|
|
1363
1363
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1429,7 +1429,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1429
1429
|
issued_at?: string | null | undefined;
|
|
1430
1430
|
is_issued?: boolean | undefined;
|
|
1431
1431
|
acs_user_id?: string | undefined;
|
|
1432
|
-
external_type?: "pti_card" | "brivo_credential" | "
|
|
1432
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1433
1433
|
external_type_display_name?: string | undefined;
|
|
1434
1434
|
acs_credential_pool_id?: string | undefined;
|
|
1435
1435
|
parent_acs_credential_id?: string | undefined;
|