@seamapi/types 1.514.0 → 1.515.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 +16 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +200 -200
- package/dist/index.cjs +16 -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 +1 -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/batch.d.ts +84 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +128 -128
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +128 -0
|
@@ -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", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>;
|
|
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"]>;
|
|
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<{
|
|
@@ -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"]>;
|
|
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"]>>;
|
|
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"]>>;
|
|
184
184
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
185
185
|
created_at: z.ZodString;
|
|
186
186
|
workspace_id: z.ZodString;
|
|
@@ -393,7 +393,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
393
393
|
user_identity_id?: string | undefined;
|
|
394
394
|
issued_at?: string | null | undefined;
|
|
395
395
|
is_issued?: boolean | undefined;
|
|
396
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
396
|
+
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" | undefined;
|
|
397
397
|
external_type_display_name?: string | undefined;
|
|
398
398
|
acs_user_id?: string | undefined;
|
|
399
399
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -465,7 +465,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
465
465
|
user_identity_id?: string | undefined;
|
|
466
466
|
issued_at?: string | null | undefined;
|
|
467
467
|
is_issued?: boolean | undefined;
|
|
468
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
468
|
+
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" | undefined;
|
|
469
469
|
external_type_display_name?: string | undefined;
|
|
470
470
|
acs_user_id?: string | undefined;
|
|
471
471
|
acs_credential_pool_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"]>;
|
|
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"]>>;
|
|
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"]>>;
|
|
494
494
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
495
495
|
created_at: z.ZodString;
|
|
496
496
|
workspace_id: z.ZodString;
|
|
@@ -703,7 +703,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
703
703
|
user_identity_id?: string | undefined;
|
|
704
704
|
issued_at?: string | null | undefined;
|
|
705
705
|
is_issued?: boolean | undefined;
|
|
706
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
706
|
+
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" | undefined;
|
|
707
707
|
external_type_display_name?: string | undefined;
|
|
708
708
|
acs_user_id?: string | undefined;
|
|
709
709
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -775,7 +775,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
775
775
|
user_identity_id?: string | undefined;
|
|
776
776
|
issued_at?: string | null | undefined;
|
|
777
777
|
is_issued?: boolean | undefined;
|
|
778
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
778
|
+
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" | undefined;
|
|
779
779
|
external_type_display_name?: string | undefined;
|
|
780
780
|
acs_user_id?: string | undefined;
|
|
781
781
|
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,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,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;IACrB,uBAAuB;IACvB,iBAAiB;IACjB,cAAc;
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -279,7 +279,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
279
279
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
280
280
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
281
281
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
282
|
-
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"]>>;
|
|
282
|
+
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"]>>;
|
|
283
283
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
284
284
|
created_at: z.ZodString;
|
|
285
285
|
workspace_id: z.ZodString;
|
|
@@ -492,7 +492,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
492
492
|
user_identity_id?: string | undefined;
|
|
493
493
|
issued_at?: string | null | undefined;
|
|
494
494
|
is_issued?: boolean | undefined;
|
|
495
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
495
|
+
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" | undefined;
|
|
496
496
|
external_type_display_name?: string | undefined;
|
|
497
497
|
acs_user_id?: string | undefined;
|
|
498
498
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -564,7 +564,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
564
564
|
user_identity_id?: string | undefined;
|
|
565
565
|
issued_at?: string | null | undefined;
|
|
566
566
|
is_issued?: boolean | undefined;
|
|
567
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
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" | undefined;
|
|
568
568
|
external_type_display_name?: string | undefined;
|
|
569
569
|
acs_user_id?: string | undefined;
|
|
570
570
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -588,7 +588,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
588
588
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
589
589
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
590
590
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
591
|
-
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"]>>;
|
|
591
|
+
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"]>>;
|
|
592
592
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
593
593
|
created_at: z.ZodString;
|
|
594
594
|
workspace_id: z.ZodString;
|
|
@@ -801,7 +801,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
801
801
|
user_identity_id?: string | undefined;
|
|
802
802
|
issued_at?: string | null | undefined;
|
|
803
803
|
is_issued?: boolean | undefined;
|
|
804
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
804
|
+
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" | undefined;
|
|
805
805
|
external_type_display_name?: string | undefined;
|
|
806
806
|
acs_user_id?: string | undefined;
|
|
807
807
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -873,7 +873,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
873
873
|
user_identity_id?: string | undefined;
|
|
874
874
|
issued_at?: string | null | undefined;
|
|
875
875
|
is_issued?: boolean | undefined;
|
|
876
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
876
|
+
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" | undefined;
|
|
877
877
|
external_type_display_name?: string | undefined;
|
|
878
878
|
acs_user_id?: string | undefined;
|
|
879
879
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -982,7 +982,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
982
982
|
user_identity_id?: string | undefined;
|
|
983
983
|
issued_at?: string | null | undefined;
|
|
984
984
|
is_issued?: boolean | undefined;
|
|
985
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
985
|
+
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" | undefined;
|
|
986
986
|
external_type_display_name?: string | undefined;
|
|
987
987
|
acs_user_id?: string | undefined;
|
|
988
988
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1054,7 +1054,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1054
1054
|
user_identity_id?: string | undefined;
|
|
1055
1055
|
issued_at?: string | null | undefined;
|
|
1056
1056
|
is_issued?: boolean | undefined;
|
|
1057
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1057
|
+
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" | undefined;
|
|
1058
1058
|
external_type_display_name?: string | undefined;
|
|
1059
1059
|
acs_user_id?: string | undefined;
|
|
1060
1060
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1153,7 +1153,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1153
1153
|
user_identity_id?: string | undefined;
|
|
1154
1154
|
issued_at?: string | null | undefined;
|
|
1155
1155
|
is_issued?: boolean | undefined;
|
|
1156
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1156
|
+
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" | undefined;
|
|
1157
1157
|
external_type_display_name?: string | undefined;
|
|
1158
1158
|
acs_user_id?: string | undefined;
|
|
1159
1159
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1225,7 +1225,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1225
1225
|
user_identity_id?: string | undefined;
|
|
1226
1226
|
issued_at?: string | null | undefined;
|
|
1227
1227
|
is_issued?: boolean | undefined;
|
|
1228
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1228
|
+
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" | undefined;
|
|
1229
1229
|
external_type_display_name?: string | undefined;
|
|
1230
1230
|
acs_user_id?: string | undefined;
|
|
1231
1231
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1329,7 +1329,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1329
1329
|
user_identity_id?: string | undefined;
|
|
1330
1330
|
issued_at?: string | null | undefined;
|
|
1331
1331
|
is_issued?: boolean | undefined;
|
|
1332
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1332
|
+
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" | undefined;
|
|
1333
1333
|
external_type_display_name?: string | undefined;
|
|
1334
1334
|
acs_user_id?: string | undefined;
|
|
1335
1335
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1401,7 +1401,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1401
1401
|
user_identity_id?: string | undefined;
|
|
1402
1402
|
issued_at?: string | null | undefined;
|
|
1403
1403
|
is_issued?: boolean | undefined;
|
|
1404
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1404
|
+
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" | undefined;
|
|
1405
1405
|
external_type_display_name?: string | undefined;
|
|
1406
1406
|
acs_user_id?: string | undefined;
|
|
1407
1407
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1506,7 +1506,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1506
1506
|
user_identity_id?: string | undefined;
|
|
1507
1507
|
issued_at?: string | null | undefined;
|
|
1508
1508
|
is_issued?: boolean | undefined;
|
|
1509
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1509
|
+
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" | undefined;
|
|
1510
1510
|
external_type_display_name?: string | undefined;
|
|
1511
1511
|
acs_user_id?: string | undefined;
|
|
1512
1512
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1578,7 +1578,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1578
1578
|
user_identity_id?: string | undefined;
|
|
1579
1579
|
issued_at?: string | null | undefined;
|
|
1580
1580
|
is_issued?: boolean | undefined;
|
|
1581
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1581
|
+
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" | undefined;
|
|
1582
1582
|
external_type_display_name?: string | undefined;
|
|
1583
1583
|
acs_user_id?: string | undefined;
|
|
1584
1584
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1697,7 +1697,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1697
1697
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1698
1698
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1699
1699
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1700
|
-
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"]>>;
|
|
1700
|
+
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"]>>;
|
|
1701
1701
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1702
1702
|
created_at: z.ZodString;
|
|
1703
1703
|
workspace_id: z.ZodString;
|
|
@@ -1910,7 +1910,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1910
1910
|
user_identity_id?: string | undefined;
|
|
1911
1911
|
issued_at?: string | null | undefined;
|
|
1912
1912
|
is_issued?: boolean | undefined;
|
|
1913
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1913
|
+
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" | undefined;
|
|
1914
1914
|
external_type_display_name?: string | undefined;
|
|
1915
1915
|
acs_user_id?: string | undefined;
|
|
1916
1916
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1982,7 +1982,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1982
1982
|
user_identity_id?: string | undefined;
|
|
1983
1983
|
issued_at?: string | null | undefined;
|
|
1984
1984
|
is_issued?: boolean | undefined;
|
|
1985
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1985
|
+
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" | undefined;
|
|
1986
1986
|
external_type_display_name?: string | undefined;
|
|
1987
1987
|
acs_user_id?: string | undefined;
|
|
1988
1988
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2006,7 +2006,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2006
2006
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2007
2007
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2008
2008
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2009
|
-
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"]>>;
|
|
2009
|
+
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"]>>;
|
|
2010
2010
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2011
2011
|
created_at: z.ZodString;
|
|
2012
2012
|
workspace_id: z.ZodString;
|
|
@@ -2219,7 +2219,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2219
2219
|
user_identity_id?: string | undefined;
|
|
2220
2220
|
issued_at?: string | null | undefined;
|
|
2221
2221
|
is_issued?: boolean | undefined;
|
|
2222
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2222
|
+
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" | undefined;
|
|
2223
2223
|
external_type_display_name?: string | undefined;
|
|
2224
2224
|
acs_user_id?: string | undefined;
|
|
2225
2225
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2291,7 +2291,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2291
2291
|
user_identity_id?: string | undefined;
|
|
2292
2292
|
issued_at?: string | null | undefined;
|
|
2293
2293
|
is_issued?: boolean | undefined;
|
|
2294
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2294
|
+
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" | undefined;
|
|
2295
2295
|
external_type_display_name?: string | undefined;
|
|
2296
2296
|
acs_user_id?: string | undefined;
|
|
2297
2297
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2368,7 +2368,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2368
2368
|
user_identity_id?: string | undefined;
|
|
2369
2369
|
issued_at?: string | null | undefined;
|
|
2370
2370
|
is_issued?: boolean | undefined;
|
|
2371
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2371
|
+
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" | undefined;
|
|
2372
2372
|
external_type_display_name?: string | undefined;
|
|
2373
2373
|
acs_user_id?: string | undefined;
|
|
2374
2374
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2440,7 +2440,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2440
2440
|
user_identity_id?: string | undefined;
|
|
2441
2441
|
issued_at?: string | null | undefined;
|
|
2442
2442
|
is_issued?: boolean | undefined;
|
|
2443
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2443
|
+
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" | undefined;
|
|
2444
2444
|
external_type_display_name?: string | undefined;
|
|
2445
2445
|
acs_user_id?: string | undefined;
|
|
2446
2446
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2518,7 +2518,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2518
2518
|
user_identity_id?: string | undefined;
|
|
2519
2519
|
issued_at?: string | null | undefined;
|
|
2520
2520
|
is_issued?: boolean | undefined;
|
|
2521
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2521
|
+
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" | undefined;
|
|
2522
2522
|
external_type_display_name?: string | undefined;
|
|
2523
2523
|
acs_user_id?: string | undefined;
|
|
2524
2524
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2590,7 +2590,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2590
2590
|
user_identity_id?: string | undefined;
|
|
2591
2591
|
issued_at?: string | null | undefined;
|
|
2592
2592
|
is_issued?: boolean | undefined;
|
|
2593
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
2593
|
+
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" | undefined;
|
|
2594
2594
|
external_type_display_name?: string | undefined;
|
|
2595
2595
|
acs_user_id?: string | undefined;
|
|
2596
2596
|
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", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
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"]>>;
|
|
45
45
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
46
46
|
created_at: z.ZodString;
|
|
47
47
|
workspace_id: z.ZodString;
|
|
@@ -254,7 +254,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
254
254
|
user_identity_id?: string | undefined;
|
|
255
255
|
issued_at?: string | null | undefined;
|
|
256
256
|
is_issued?: boolean | undefined;
|
|
257
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
257
|
+
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" | undefined;
|
|
258
258
|
external_type_display_name?: string | undefined;
|
|
259
259
|
acs_user_id?: string | undefined;
|
|
260
260
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -326,7 +326,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
326
326
|
user_identity_id?: string | undefined;
|
|
327
327
|
issued_at?: string | null | undefined;
|
|
328
328
|
is_issued?: boolean | undefined;
|
|
329
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
329
|
+
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" | undefined;
|
|
330
330
|
external_type_display_name?: string | undefined;
|
|
331
331
|
acs_user_id?: string | undefined;
|
|
332
332
|
acs_credential_pool_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"]>;
|
|
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"]>>;
|
|
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"]>>;
|
|
354
354
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
355
355
|
created_at: z.ZodString;
|
|
356
356
|
workspace_id: z.ZodString;
|
|
@@ -563,7 +563,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
563
563
|
user_identity_id?: string | undefined;
|
|
564
564
|
issued_at?: string | null | undefined;
|
|
565
565
|
is_issued?: boolean | undefined;
|
|
566
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
566
|
+
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" | undefined;
|
|
567
567
|
external_type_display_name?: string | undefined;
|
|
568
568
|
acs_user_id?: string | undefined;
|
|
569
569
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -635,7 +635,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
635
635
|
user_identity_id?: string | undefined;
|
|
636
636
|
issued_at?: string | null | undefined;
|
|
637
637
|
is_issued?: boolean | undefined;
|
|
638
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
638
|
+
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" | undefined;
|
|
639
639
|
external_type_display_name?: string | undefined;
|
|
640
640
|
acs_user_id?: string | undefined;
|
|
641
641
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -712,7 +712,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
712
712
|
user_identity_id?: string | undefined;
|
|
713
713
|
issued_at?: string | null | undefined;
|
|
714
714
|
is_issued?: boolean | undefined;
|
|
715
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
715
|
+
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" | undefined;
|
|
716
716
|
external_type_display_name?: string | undefined;
|
|
717
717
|
acs_user_id?: string | undefined;
|
|
718
718
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -784,7 +784,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
784
784
|
user_identity_id?: string | undefined;
|
|
785
785
|
issued_at?: string | null | undefined;
|
|
786
786
|
is_issued?: boolean | undefined;
|
|
787
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
787
|
+
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" | undefined;
|
|
788
788
|
external_type_display_name?: string | undefined;
|
|
789
789
|
acs_user_id?: string | undefined;
|
|
790
790
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -862,7 +862,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
862
862
|
user_identity_id?: string | undefined;
|
|
863
863
|
issued_at?: string | null | undefined;
|
|
864
864
|
is_issued?: boolean | undefined;
|
|
865
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
865
|
+
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" | undefined;
|
|
866
866
|
external_type_display_name?: string | undefined;
|
|
867
867
|
acs_user_id?: string | undefined;
|
|
868
868
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -934,7 +934,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
934
934
|
user_identity_id?: string | undefined;
|
|
935
935
|
issued_at?: string | null | undefined;
|
|
936
936
|
is_issued?: boolean | undefined;
|
|
937
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
937
|
+
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" | undefined;
|
|
938
938
|
external_type_display_name?: string | undefined;
|
|
939
939
|
acs_user_id?: string | undefined;
|
|
940
940
|
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", "assa_abloy_vostio_key", "salto_space_key", "latch_access"]>>;
|
|
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"]>>;
|
|
133
133
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
134
134
|
created_at: z.ZodString;
|
|
135
135
|
workspace_id: z.ZodString;
|
|
@@ -342,7 +342,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
342
342
|
user_identity_id?: string | undefined;
|
|
343
343
|
issued_at?: string | null | undefined;
|
|
344
344
|
is_issued?: boolean | undefined;
|
|
345
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
345
|
+
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" | undefined;
|
|
346
346
|
external_type_display_name?: string | undefined;
|
|
347
347
|
acs_user_id?: string | undefined;
|
|
348
348
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -414,7 +414,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
414
414
|
user_identity_id?: string | undefined;
|
|
415
415
|
issued_at?: string | null | undefined;
|
|
416
416
|
is_issued?: boolean | undefined;
|
|
417
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
417
|
+
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" | undefined;
|
|
418
418
|
external_type_display_name?: string | undefined;
|
|
419
419
|
acs_user_id?: string | undefined;
|
|
420
420
|
acs_credential_pool_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"]>;
|
|
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"]>>;
|
|
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"]>>;
|
|
442
442
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
443
443
|
created_at: z.ZodString;
|
|
444
444
|
workspace_id: z.ZodString;
|
|
@@ -651,7 +651,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
651
651
|
user_identity_id?: string | undefined;
|
|
652
652
|
issued_at?: string | null | undefined;
|
|
653
653
|
is_issued?: boolean | undefined;
|
|
654
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
654
|
+
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" | undefined;
|
|
655
655
|
external_type_display_name?: string | undefined;
|
|
656
656
|
acs_user_id?: string | undefined;
|
|
657
657
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -723,7 +723,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
723
723
|
user_identity_id?: string | undefined;
|
|
724
724
|
issued_at?: string | null | undefined;
|
|
725
725
|
is_issued?: boolean | undefined;
|
|
726
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
726
|
+
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" | undefined;
|
|
727
727
|
external_type_display_name?: string | undefined;
|
|
728
728
|
acs_user_id?: string | undefined;
|
|
729
729
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -832,7 +832,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
832
832
|
user_identity_id?: string | undefined;
|
|
833
833
|
issued_at?: string | null | undefined;
|
|
834
834
|
is_issued?: boolean | undefined;
|
|
835
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
835
|
+
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" | undefined;
|
|
836
836
|
external_type_display_name?: string | undefined;
|
|
837
837
|
acs_user_id?: string | undefined;
|
|
838
838
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -904,7 +904,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
904
904
|
user_identity_id?: string | undefined;
|
|
905
905
|
issued_at?: string | null | undefined;
|
|
906
906
|
is_issued?: boolean | undefined;
|
|
907
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
907
|
+
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" | undefined;
|
|
908
908
|
external_type_display_name?: string | undefined;
|
|
909
909
|
acs_user_id?: string | undefined;
|
|
910
910
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1003,7 +1003,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1003
1003
|
user_identity_id?: string | undefined;
|
|
1004
1004
|
issued_at?: string | null | undefined;
|
|
1005
1005
|
is_issued?: boolean | undefined;
|
|
1006
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
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" | undefined;
|
|
1007
1007
|
external_type_display_name?: string | undefined;
|
|
1008
1008
|
acs_user_id?: string | undefined;
|
|
1009
1009
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1075,7 +1075,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1075
1075
|
user_identity_id?: string | undefined;
|
|
1076
1076
|
issued_at?: string | null | undefined;
|
|
1077
1077
|
is_issued?: boolean | undefined;
|
|
1078
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
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" | undefined;
|
|
1079
1079
|
external_type_display_name?: string | undefined;
|
|
1080
1080
|
acs_user_id?: string | undefined;
|
|
1081
1081
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1179,7 +1179,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1179
1179
|
user_identity_id?: string | undefined;
|
|
1180
1180
|
issued_at?: string | null | undefined;
|
|
1181
1181
|
is_issued?: boolean | undefined;
|
|
1182
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1182
|
+
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" | undefined;
|
|
1183
1183
|
external_type_display_name?: string | undefined;
|
|
1184
1184
|
acs_user_id?: string | undefined;
|
|
1185
1185
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1251,7 +1251,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1251
1251
|
user_identity_id?: string | undefined;
|
|
1252
1252
|
issued_at?: string | null | undefined;
|
|
1253
1253
|
is_issued?: boolean | undefined;
|
|
1254
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1254
|
+
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" | undefined;
|
|
1255
1255
|
external_type_display_name?: string | undefined;
|
|
1256
1256
|
acs_user_id?: string | undefined;
|
|
1257
1257
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1356,7 +1356,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1356
1356
|
user_identity_id?: string | undefined;
|
|
1357
1357
|
issued_at?: string | null | undefined;
|
|
1358
1358
|
is_issued?: boolean | undefined;
|
|
1359
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1359
|
+
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" | undefined;
|
|
1360
1360
|
external_type_display_name?: string | undefined;
|
|
1361
1361
|
acs_user_id?: string | undefined;
|
|
1362
1362
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1428,7 +1428,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1428
1428
|
user_identity_id?: string | undefined;
|
|
1429
1429
|
issued_at?: string | null | undefined;
|
|
1430
1430
|
is_issued?: boolean | undefined;
|
|
1431
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | undefined;
|
|
1431
|
+
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" | undefined;
|
|
1432
1432
|
external_type_display_name?: string | undefined;
|
|
1433
1433
|
acs_user_id?: string | undefined;
|
|
1434
1434
|
acs_credential_pool_id?: string | undefined;
|