@seamapi/types 1.748.0 → 1.750.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 +68 -66
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +571 -595
- package/dist/index.cjs +68 -66
- package/dist/index.cjs.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 +84 -84
- package/lib/seam/connect/models/phones/phone-session.d.ts +24 -24
- package/lib/seam/connect/openapi.d.ts +37 -63
- package/lib/seam/connect/openapi.js +64 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +390 -388
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -1
- package/src/lib/seam/connect/openapi.ts +67 -64
- package/src/lib/seam/connect/route-types.ts +622 -261
|
@@ -1,6 +1,6 @@
|
|
|
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", "dormakaba_ambiance_credential", "hotek_card"]>;
|
|
3
|
-
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2
|
+
export declare const acs_credential_external_type: 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"]>;
|
|
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<{
|
|
6
6
|
created_at: z.ZodString;
|
|
@@ -179,8 +179,8 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
179
179
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
180
180
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
181
181
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
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", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
182
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
183
|
+
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"]>>;
|
|
184
184
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
185
185
|
created_at: z.ZodString;
|
|
186
186
|
workspace_id: z.ZodString;
|
|
@@ -367,7 +367,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
367
367
|
is_managed: true;
|
|
368
368
|
acs_system_id: string;
|
|
369
369
|
acs_credential_id: string;
|
|
370
|
-
access_method: "code" | "card" | "mobile_key";
|
|
370
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
371
371
|
code?: string | null | undefined;
|
|
372
372
|
starts_at?: string | undefined;
|
|
373
373
|
ends_at?: string | undefined;
|
|
@@ -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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
397
|
+
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;
|
|
398
398
|
external_type_display_name?: string | undefined;
|
|
399
399
|
acs_credential_pool_id?: string | undefined;
|
|
400
400
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -439,7 +439,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
439
439
|
is_managed: true;
|
|
440
440
|
acs_system_id: string;
|
|
441
441
|
acs_credential_id: string;
|
|
442
|
-
access_method: "code" | "card" | "mobile_key";
|
|
442
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
443
443
|
code?: string | null | undefined;
|
|
444
444
|
starts_at?: string | undefined;
|
|
445
445
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
469
|
+
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;
|
|
470
470
|
external_type_display_name?: string | undefined;
|
|
471
471
|
acs_credential_pool_id?: string | undefined;
|
|
472
472
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -489,8 +489,8 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
489
489
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
490
490
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
491
491
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
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", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
492
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
493
|
+
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"]>>;
|
|
494
494
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
495
495
|
created_at: z.ZodString;
|
|
496
496
|
workspace_id: z.ZodString;
|
|
@@ -677,7 +677,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
677
677
|
is_managed: false;
|
|
678
678
|
acs_system_id: string;
|
|
679
679
|
acs_credential_id: string;
|
|
680
|
-
access_method: "code" | "card" | "mobile_key";
|
|
680
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
681
681
|
code?: string | null | undefined;
|
|
682
682
|
starts_at?: string | undefined;
|
|
683
683
|
ends_at?: string | undefined;
|
|
@@ -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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
707
|
+
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;
|
|
708
708
|
external_type_display_name?: string | undefined;
|
|
709
709
|
acs_credential_pool_id?: string | undefined;
|
|
710
710
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -749,7 +749,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
749
749
|
is_managed: false;
|
|
750
750
|
acs_system_id: string;
|
|
751
751
|
acs_credential_id: string;
|
|
752
|
-
access_method: "code" | "card" | "mobile_key";
|
|
752
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
753
753
|
code?: string | null | undefined;
|
|
754
754
|
starts_at?: string | undefined;
|
|
755
755
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
779
|
+
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;
|
|
780
780
|
external_type_display_name?: string | undefined;
|
|
781
781
|
acs_credential_pool_id?: string | undefined;
|
|
782
782
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -4,6 +4,7 @@ import { acs_credential_visionline_metadata, acs_credential_vostio_metadata, } f
|
|
|
4
4
|
export const acs_credential_external_type = z.enum([
|
|
5
5
|
'pti_card',
|
|
6
6
|
'brivo_credential',
|
|
7
|
+
'brivo_digital_credential',
|
|
7
8
|
'hid_credential',
|
|
8
9
|
'visionline_card',
|
|
9
10
|
'salto_ks_credential',
|
|
@@ -17,6 +18,7 @@ export const acs_credential_access_method_type = z.enum([
|
|
|
17
18
|
'code',
|
|
18
19
|
'card',
|
|
19
20
|
'mobile_key',
|
|
21
|
+
'cloud_key',
|
|
20
22
|
]);
|
|
21
23
|
const common_acs_credential_warning = z.object({
|
|
22
24
|
created_at: z
|
|
@@ -147,7 +149,7 @@ const common_acs_credential = z.object({
|
|
|
147
149
|
.optional()
|
|
148
150
|
.nullable()
|
|
149
151
|
.describe('Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was encoded onto a card.'),
|
|
150
|
-
access_method: acs_credential_access_method_type.describe('Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`.'),
|
|
152
|
+
access_method: acs_credential_access_method_type.describe('Access method for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials). Supported values: `code`, `card`, `mobile_key`, `cloud_key`.'),
|
|
151
153
|
external_type: acs_credential_external_type
|
|
152
154
|
.optional()
|
|
153
155
|
.describe('Brand-specific terminology for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) type. Supported values: `pti_card`, `brivo_credential`, `hid_credential`, `visionline_card`.'),
|
|
@@ -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;IACd,+BAA+B;IAC/B,YAAY;CACb,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -298,8 +298,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
298
298
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
299
299
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
300
300
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
301
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
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"]>>;
|
|
301
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
302
|
+
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"]>>;
|
|
303
303
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
304
304
|
created_at: z.ZodString;
|
|
305
305
|
workspace_id: z.ZodString;
|
|
@@ -486,7 +486,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
486
486
|
is_managed: true;
|
|
487
487
|
acs_system_id: string;
|
|
488
488
|
acs_credential_id: string;
|
|
489
|
-
access_method: "code" | "card" | "mobile_key";
|
|
489
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
490
490
|
code?: string | null | undefined;
|
|
491
491
|
starts_at?: string | undefined;
|
|
492
492
|
ends_at?: string | undefined;
|
|
@@ -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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
516
|
+
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;
|
|
517
517
|
external_type_display_name?: string | undefined;
|
|
518
518
|
acs_credential_pool_id?: string | undefined;
|
|
519
519
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -558,7 +558,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
558
558
|
is_managed: true;
|
|
559
559
|
acs_system_id: string;
|
|
560
560
|
acs_credential_id: string;
|
|
561
|
-
access_method: "code" | "card" | "mobile_key";
|
|
561
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
562
562
|
code?: string | null | undefined;
|
|
563
563
|
starts_at?: string | undefined;
|
|
564
564
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
588
|
+
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;
|
|
589
589
|
external_type_display_name?: string | undefined;
|
|
590
590
|
acs_credential_pool_id?: string | undefined;
|
|
591
591
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -607,8 +607,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
607
607
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
608
608
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
609
609
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
610
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
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"]>>;
|
|
610
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
611
|
+
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"]>>;
|
|
612
612
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
613
613
|
created_at: z.ZodString;
|
|
614
614
|
workspace_id: z.ZodString;
|
|
@@ -795,7 +795,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
795
795
|
is_managed: false;
|
|
796
796
|
acs_system_id: string;
|
|
797
797
|
acs_credential_id: string;
|
|
798
|
-
access_method: "code" | "card" | "mobile_key";
|
|
798
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
799
799
|
code?: string | null | undefined;
|
|
800
800
|
starts_at?: string | undefined;
|
|
801
801
|
ends_at?: string | undefined;
|
|
@@ -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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
825
|
+
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;
|
|
826
826
|
external_type_display_name?: string | undefined;
|
|
827
827
|
acs_credential_pool_id?: string | undefined;
|
|
828
828
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -867,7 +867,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
867
867
|
is_managed: false;
|
|
868
868
|
acs_system_id: string;
|
|
869
869
|
acs_credential_id: string;
|
|
870
|
-
access_method: "code" | "card" | "mobile_key";
|
|
870
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
871
871
|
code?: string | null | undefined;
|
|
872
872
|
starts_at?: string | undefined;
|
|
873
873
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
897
|
+
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;
|
|
898
898
|
external_type_display_name?: string | undefined;
|
|
899
899
|
acs_credential_pool_id?: string | undefined;
|
|
900
900
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -976,7 +976,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
976
976
|
is_managed: true;
|
|
977
977
|
acs_system_id: string;
|
|
978
978
|
acs_credential_id: string;
|
|
979
|
-
access_method: "code" | "card" | "mobile_key";
|
|
979
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
980
980
|
code?: string | null | undefined;
|
|
981
981
|
starts_at?: string | undefined;
|
|
982
982
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1006
|
+
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;
|
|
1007
1007
|
external_type_display_name?: string | undefined;
|
|
1008
1008
|
acs_credential_pool_id?: string | undefined;
|
|
1009
1009
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1048,7 +1048,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1048
1048
|
is_managed: false;
|
|
1049
1049
|
acs_system_id: string;
|
|
1050
1050
|
acs_credential_id: string;
|
|
1051
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1051
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1052
1052
|
code?: string | null | undefined;
|
|
1053
1053
|
starts_at?: string | undefined;
|
|
1054
1054
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1078
|
+
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;
|
|
1079
1079
|
external_type_display_name?: string | undefined;
|
|
1080
1080
|
acs_credential_pool_id?: string | undefined;
|
|
1081
1081
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1147,7 +1147,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1147
1147
|
is_managed: true;
|
|
1148
1148
|
acs_system_id: string;
|
|
1149
1149
|
acs_credential_id: string;
|
|
1150
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1150
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1151
1151
|
code?: string | null | undefined;
|
|
1152
1152
|
starts_at?: string | undefined;
|
|
1153
1153
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1177
|
+
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;
|
|
1178
1178
|
external_type_display_name?: string | undefined;
|
|
1179
1179
|
acs_credential_pool_id?: string | undefined;
|
|
1180
1180
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1219,7 +1219,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1219
1219
|
is_managed: false;
|
|
1220
1220
|
acs_system_id: string;
|
|
1221
1221
|
acs_credential_id: string;
|
|
1222
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1222
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1223
1223
|
code?: string | null | undefined;
|
|
1224
1224
|
starts_at?: string | undefined;
|
|
1225
1225
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1249
|
+
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;
|
|
1250
1250
|
external_type_display_name?: string | undefined;
|
|
1251
1251
|
acs_credential_pool_id?: string | undefined;
|
|
1252
1252
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1323,7 +1323,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1323
1323
|
is_managed: true;
|
|
1324
1324
|
acs_system_id: string;
|
|
1325
1325
|
acs_credential_id: string;
|
|
1326
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1326
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1327
1327
|
code?: string | null | undefined;
|
|
1328
1328
|
starts_at?: string | undefined;
|
|
1329
1329
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1353
|
+
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;
|
|
1354
1354
|
external_type_display_name?: string | undefined;
|
|
1355
1355
|
acs_credential_pool_id?: string | undefined;
|
|
1356
1356
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1395,7 +1395,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1395
1395
|
is_managed: false;
|
|
1396
1396
|
acs_system_id: string;
|
|
1397
1397
|
acs_credential_id: string;
|
|
1398
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1398
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1399
1399
|
code?: string | null | undefined;
|
|
1400
1400
|
starts_at?: string | undefined;
|
|
1401
1401
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1425
|
+
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;
|
|
1426
1426
|
external_type_display_name?: string | undefined;
|
|
1427
1427
|
acs_credential_pool_id?: string | undefined;
|
|
1428
1428
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1500,7 +1500,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1500
1500
|
is_managed: true;
|
|
1501
1501
|
acs_system_id: string;
|
|
1502
1502
|
acs_credential_id: string;
|
|
1503
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1503
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1504
1504
|
code?: string | null | undefined;
|
|
1505
1505
|
starts_at?: string | undefined;
|
|
1506
1506
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1530
|
+
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;
|
|
1531
1531
|
external_type_display_name?: string | undefined;
|
|
1532
1532
|
acs_credential_pool_id?: string | undefined;
|
|
1533
1533
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1572,7 +1572,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1572
1572
|
is_managed: false;
|
|
1573
1573
|
acs_system_id: string;
|
|
1574
1574
|
acs_credential_id: string;
|
|
1575
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1575
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1576
1576
|
code?: string | null | undefined;
|
|
1577
1577
|
starts_at?: string | undefined;
|
|
1578
1578
|
ends_at?: 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" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
1602
|
+
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;
|
|
1603
1603
|
external_type_display_name?: string | undefined;
|
|
1604
1604
|
acs_credential_pool_id?: string | undefined;
|
|
1605
1605
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1731,8 +1731,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1731
1731
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1732
1732
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1733
1733
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1734
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1735
|
-
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"]>>;
|
|
1734
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
1735
|
+
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"]>>;
|
|
1736
1736
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1737
1737
|
created_at: z.ZodString;
|
|
1738
1738
|
workspace_id: z.ZodString;
|
|
@@ -1919,7 +1919,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1919
1919
|
is_managed: true;
|
|
1920
1920
|
acs_system_id: string;
|
|
1921
1921
|
acs_credential_id: string;
|
|
1922
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1922
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1923
1923
|
code?: string | null | undefined;
|
|
1924
1924
|
starts_at?: string | undefined;
|
|
1925
1925
|
ends_at?: string | undefined;
|
|
@@ -1946,7 +1946,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1946
1946
|
issued_at?: string | null | undefined;
|
|
1947
1947
|
is_issued?: boolean | undefined;
|
|
1948
1948
|
acs_user_id?: string | undefined;
|
|
1949
|
-
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;
|
|
1949
|
+
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;
|
|
1950
1950
|
external_type_display_name?: string | undefined;
|
|
1951
1951
|
acs_credential_pool_id?: string | undefined;
|
|
1952
1952
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1991,7 +1991,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1991
1991
|
is_managed: true;
|
|
1992
1992
|
acs_system_id: string;
|
|
1993
1993
|
acs_credential_id: string;
|
|
1994
|
-
access_method: "code" | "card" | "mobile_key";
|
|
1994
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
1995
1995
|
code?: string | null | undefined;
|
|
1996
1996
|
starts_at?: string | undefined;
|
|
1997
1997
|
ends_at?: string | undefined;
|
|
@@ -2018,7 +2018,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2018
2018
|
issued_at?: string | null | undefined;
|
|
2019
2019
|
is_issued?: boolean | undefined;
|
|
2020
2020
|
acs_user_id?: string | undefined;
|
|
2021
|
-
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;
|
|
2021
|
+
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;
|
|
2022
2022
|
external_type_display_name?: string | undefined;
|
|
2023
2023
|
acs_credential_pool_id?: string | undefined;
|
|
2024
2024
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2040,8 +2040,8 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2040
2040
|
card_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2041
2041
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2042
2042
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2043
|
-
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
2044
|
-
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"]>>;
|
|
2043
|
+
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
2044
|
+
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"]>>;
|
|
2045
2045
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2046
2046
|
created_at: z.ZodString;
|
|
2047
2047
|
workspace_id: z.ZodString;
|
|
@@ -2228,7 +2228,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2228
2228
|
is_managed: false;
|
|
2229
2229
|
acs_system_id: string;
|
|
2230
2230
|
acs_credential_id: string;
|
|
2231
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2231
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2232
2232
|
code?: string | null | undefined;
|
|
2233
2233
|
starts_at?: string | undefined;
|
|
2234
2234
|
ends_at?: string | undefined;
|
|
@@ -2255,7 +2255,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2255
2255
|
issued_at?: string | null | undefined;
|
|
2256
2256
|
is_issued?: boolean | undefined;
|
|
2257
2257
|
acs_user_id?: string | undefined;
|
|
2258
|
-
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;
|
|
2258
|
+
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;
|
|
2259
2259
|
external_type_display_name?: string | undefined;
|
|
2260
2260
|
acs_credential_pool_id?: string | undefined;
|
|
2261
2261
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2300,7 +2300,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2300
2300
|
is_managed: false;
|
|
2301
2301
|
acs_system_id: string;
|
|
2302
2302
|
acs_credential_id: string;
|
|
2303
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2303
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2304
2304
|
code?: string | null | undefined;
|
|
2305
2305
|
starts_at?: string | undefined;
|
|
2306
2306
|
ends_at?: string | undefined;
|
|
@@ -2327,7 +2327,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2327
2327
|
issued_at?: string | null | undefined;
|
|
2328
2328
|
is_issued?: boolean | undefined;
|
|
2329
2329
|
acs_user_id?: string | undefined;
|
|
2330
|
-
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;
|
|
2330
|
+
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;
|
|
2331
2331
|
external_type_display_name?: string | undefined;
|
|
2332
2332
|
acs_credential_pool_id?: string | undefined;
|
|
2333
2333
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2377,7 +2377,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2377
2377
|
is_managed: true;
|
|
2378
2378
|
acs_system_id: string;
|
|
2379
2379
|
acs_credential_id: string;
|
|
2380
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2380
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2381
2381
|
code?: string | null | undefined;
|
|
2382
2382
|
starts_at?: string | undefined;
|
|
2383
2383
|
ends_at?: string | undefined;
|
|
@@ -2404,7 +2404,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2404
2404
|
issued_at?: string | null | undefined;
|
|
2405
2405
|
is_issued?: boolean | undefined;
|
|
2406
2406
|
acs_user_id?: string | undefined;
|
|
2407
|
-
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;
|
|
2407
|
+
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;
|
|
2408
2408
|
external_type_display_name?: string | undefined;
|
|
2409
2409
|
acs_credential_pool_id?: string | undefined;
|
|
2410
2410
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2449,7 +2449,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2449
2449
|
is_managed: false;
|
|
2450
2450
|
acs_system_id: string;
|
|
2451
2451
|
acs_credential_id: string;
|
|
2452
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2452
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2453
2453
|
code?: string | null | undefined;
|
|
2454
2454
|
starts_at?: string | undefined;
|
|
2455
2455
|
ends_at?: string | undefined;
|
|
@@ -2476,7 +2476,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2476
2476
|
issued_at?: string | null | undefined;
|
|
2477
2477
|
is_issued?: boolean | undefined;
|
|
2478
2478
|
acs_user_id?: string | undefined;
|
|
2479
|
-
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;
|
|
2479
|
+
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;
|
|
2480
2480
|
external_type_display_name?: string | undefined;
|
|
2481
2481
|
acs_credential_pool_id?: string | undefined;
|
|
2482
2482
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2527,7 +2527,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2527
2527
|
is_managed: true;
|
|
2528
2528
|
acs_system_id: string;
|
|
2529
2529
|
acs_credential_id: string;
|
|
2530
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2530
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2531
2531
|
code?: string | null | undefined;
|
|
2532
2532
|
starts_at?: string | undefined;
|
|
2533
2533
|
ends_at?: string | undefined;
|
|
@@ -2554,7 +2554,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2554
2554
|
issued_at?: string | null | undefined;
|
|
2555
2555
|
is_issued?: boolean | undefined;
|
|
2556
2556
|
acs_user_id?: string | undefined;
|
|
2557
|
-
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;
|
|
2557
|
+
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;
|
|
2558
2558
|
external_type_display_name?: string | undefined;
|
|
2559
2559
|
acs_credential_pool_id?: string | undefined;
|
|
2560
2560
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2599,7 +2599,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2599
2599
|
is_managed: false;
|
|
2600
2600
|
acs_system_id: string;
|
|
2601
2601
|
acs_credential_id: string;
|
|
2602
|
-
access_method: "code" | "card" | "mobile_key";
|
|
2602
|
+
access_method: "code" | "card" | "mobile_key" | "cloud_key";
|
|
2603
2603
|
code?: string | null | undefined;
|
|
2604
2604
|
starts_at?: string | undefined;
|
|
2605
2605
|
ends_at?: string | undefined;
|
|
@@ -2626,7 +2626,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2626
2626
|
issued_at?: string | null | undefined;
|
|
2627
2627
|
is_issued?: boolean | undefined;
|
|
2628
2628
|
acs_user_id?: string | undefined;
|
|
2629
|
-
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;
|
|
2629
|
+
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;
|
|
2630
2630
|
external_type_display_name?: string | undefined;
|
|
2631
2631
|
acs_credential_pool_id?: string | undefined;
|
|
2632
2632
|
parent_acs_credential_id?: string | undefined;
|