@seamapi/types 1.747.0 → 1.749.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 +185 -20
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +801 -537
- package/dist/index.cjs +185 -20
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +81 -0
- package/lib/seam/connect/models/access-grants/access-method.js +16 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +14 -14
- package/lib/seam/connect/models/acs/acs-credential.js +3 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +48 -48
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +20 -20
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +28 -28
- package/lib/seam/connect/models/batch.d.ts +120 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.d.ts +140 -10
- package/lib/seam/connect/openapi.js +169 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +455 -383
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +21 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +194 -16
- package/src/lib/seam/connect/route-types.ts +695 -256
|
@@ -128,8 +128,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
128
128
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
129
129
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
130
130
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
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", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
131
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
132
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_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;
|
|
@@ -316,7 +316,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
316
316
|
is_managed: true;
|
|
317
317
|
acs_system_id: string;
|
|
318
318
|
acs_credential_id: string;
|
|
319
|
-
access_method: "code" | "card" | "mobile_key";
|
|
319
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
320
320
|
code?: string | null | undefined;
|
|
321
321
|
starts_at?: string | undefined;
|
|
322
322
|
ends_at?: string | undefined;
|
|
@@ -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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
346
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -388,7 +388,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
388
388
|
is_managed: true;
|
|
389
389
|
acs_system_id: string;
|
|
390
390
|
acs_credential_id: string;
|
|
391
|
-
access_method: "code" | "card" | "mobile_key";
|
|
391
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
392
392
|
code?: string | null | undefined;
|
|
393
393
|
starts_at?: string | undefined;
|
|
394
394
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
418
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -437,8 +437,8 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
437
437
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
438
438
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
439
439
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
440
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
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"]>>;
|
|
440
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
441
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "brivo_digital_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;
|
|
@@ -625,7 +625,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
625
625
|
is_managed: false;
|
|
626
626
|
acs_system_id: string;
|
|
627
627
|
acs_credential_id: string;
|
|
628
|
-
access_method: "code" | "card" | "mobile_key";
|
|
628
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
629
629
|
code?: string | null | undefined;
|
|
630
630
|
starts_at?: string | undefined;
|
|
631
631
|
ends_at?: string | undefined;
|
|
@@ -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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
655
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -697,7 +697,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
697
697
|
is_managed: false;
|
|
698
698
|
acs_system_id: string;
|
|
699
699
|
acs_credential_id: string;
|
|
700
|
-
access_method: "code" | "card" | "mobile_key";
|
|
700
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
701
701
|
code?: string | null | undefined;
|
|
702
702
|
starts_at?: string | undefined;
|
|
703
703
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
727
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -806,7 +806,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
806
806
|
is_managed: true;
|
|
807
807
|
acs_system_id: string;
|
|
808
808
|
acs_credential_id: string;
|
|
809
|
-
access_method: "code" | "card" | "mobile_key";
|
|
809
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
810
810
|
code?: string | null | undefined;
|
|
811
811
|
starts_at?: string | undefined;
|
|
812
812
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
836
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -878,7 +878,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
878
878
|
is_managed: false;
|
|
879
879
|
acs_system_id: string;
|
|
880
880
|
acs_credential_id: string;
|
|
881
|
-
access_method: "code" | "card" | "mobile_key";
|
|
881
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
882
882
|
code?: string | null | undefined;
|
|
883
883
|
starts_at?: string | undefined;
|
|
884
884
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
908
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -977,7 +977,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
977
977
|
is_managed: true;
|
|
978
978
|
acs_system_id: string;
|
|
979
979
|
acs_credential_id: string;
|
|
980
|
-
access_method: "code" | "card" | "mobile_key";
|
|
980
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
981
981
|
code?: string | null | undefined;
|
|
982
982
|
starts_at?: string | undefined;
|
|
983
983
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1007
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -1049,7 +1049,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1049
1049
|
is_managed: false;
|
|
1050
1050
|
acs_system_id: string;
|
|
1051
1051
|
acs_credential_id: string;
|
|
1052
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1052
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1053
1053
|
code?: string | null | undefined;
|
|
1054
1054
|
starts_at?: string | undefined;
|
|
1055
1055
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1079
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -1153,7 +1153,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1153
1153
|
is_managed: true;
|
|
1154
1154
|
acs_system_id: string;
|
|
1155
1155
|
acs_credential_id: string;
|
|
1156
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1156
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1157
1157
|
code?: string | null | undefined;
|
|
1158
1158
|
starts_at?: string | undefined;
|
|
1159
1159
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1183
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -1225,7 +1225,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1225
1225
|
is_managed: false;
|
|
1226
1226
|
acs_system_id: string;
|
|
1227
1227
|
acs_credential_id: string;
|
|
1228
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1228
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1229
1229
|
code?: string | null | undefined;
|
|
1230
1230
|
starts_at?: string | undefined;
|
|
1231
1231
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1255
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -1330,7 +1330,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1330
1330
|
is_managed: true;
|
|
1331
1331
|
acs_system_id: string;
|
|
1332
1332
|
acs_credential_id: string;
|
|
1333
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1333
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1334
1334
|
code?: string | null | undefined;
|
|
1335
1335
|
starts_at?: string | undefined;
|
|
1336
1336
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1360
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|
|
@@ -1402,7 +1402,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1402
1402
|
is_managed: false;
|
|
1403
1403
|
acs_system_id: string;
|
|
1404
1404
|
acs_credential_id: string;
|
|
1405
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1405
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1406
1406
|
code?: string | null | undefined;
|
|
1407
1407
|
starts_at?: string | undefined;
|
|
1408
1408
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1432
|
+
external_type?: "pti_card" | "brivo_credential" | "brivo_digital_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;
|