@seamapi/types 1.984.0 → 1.986.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/lib/seam/connect/models/acs/acs-credential.d.ts +33 -7
- package/lib/seam/connect/models/acs/acs-credential.js +5 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.js +7 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/akiles.d.ts +8 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js +9 -0
- package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +136 -29
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +48 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +64 -14
- package/lib/seam/connect/models/action-attempts/scan-to-assign-credential.d.ts +24 -5
- package/lib/seam/connect/models/devices/device-metadata.js +1 -1
- package/lib/seam/connect/models/events/connected-accounts.js +5 -4
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +12 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +56 -12
- package/lib/seam/connect/openapi.js +120 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1149 -441
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-credential.ts +7 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -9
- package/src/lib/seam/connect/models/acs/metadata/akiles.ts +14 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -1
- package/src/lib/seam/connect/models/events/connected-accounts.ts +5 -4
- package/src/lib/seam/connect/models/events/devices.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +129 -16
- package/src/lib/seam/connect/route-types.ts +1513 -261
|
@@ -41,7 +41,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
41
41
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
42
42
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
43
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
44
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
44
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential", "akiles_credential"]>>;
|
|
45
45
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
46
46
|
created_at: z.ZodString;
|
|
47
47
|
workspace_id: z.ZodString;
|
|
@@ -192,6 +192,13 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
192
192
|
key_issuing_request_id?: string | undefined;
|
|
193
193
|
door_names?: string[] | undefined;
|
|
194
194
|
}>>;
|
|
195
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
196
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
197
|
+
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
member_pin_id?: string | undefined;
|
|
199
|
+
}, {
|
|
200
|
+
member_pin_id?: string | undefined;
|
|
201
|
+
}>>;
|
|
195
202
|
} & {
|
|
196
203
|
is_managed: z.ZodLiteral<true>;
|
|
197
204
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -246,6 +253,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
246
253
|
card_id?: string | undefined;
|
|
247
254
|
credential_id?: string | undefined;
|
|
248
255
|
} | undefined;
|
|
256
|
+
akiles_metadata?: {
|
|
257
|
+
member_pin_id?: string | undefined;
|
|
258
|
+
} | undefined;
|
|
249
259
|
assa_abloy_vostio_metadata?: {
|
|
250
260
|
key_id?: string | undefined;
|
|
251
261
|
endpoint_id?: string | undefined;
|
|
@@ -259,7 +269,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
259
269
|
issued_at?: string | null | undefined;
|
|
260
270
|
is_issued?: boolean | undefined;
|
|
261
271
|
acs_user_id?: string | undefined;
|
|
262
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
272
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
263
273
|
external_type_display_name?: string | undefined;
|
|
264
274
|
acs_credential_pool_id?: string | undefined;
|
|
265
275
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -319,6 +329,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
319
329
|
card_id?: string | undefined;
|
|
320
330
|
credential_id?: string | undefined;
|
|
321
331
|
} | undefined;
|
|
332
|
+
akiles_metadata?: {
|
|
333
|
+
member_pin_id?: string | undefined;
|
|
334
|
+
} | undefined;
|
|
322
335
|
assa_abloy_vostio_metadata?: {
|
|
323
336
|
key_id?: string | undefined;
|
|
324
337
|
endpoint_id?: string | undefined;
|
|
@@ -332,7 +345,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
332
345
|
issued_at?: string | null | undefined;
|
|
333
346
|
is_issued?: boolean | undefined;
|
|
334
347
|
acs_user_id?: string | undefined;
|
|
335
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
348
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
336
349
|
external_type_display_name?: string | undefined;
|
|
337
350
|
acs_credential_pool_id?: string | undefined;
|
|
338
351
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -355,7 +368,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
355
368
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
356
369
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
357
370
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
358
|
-
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", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
371
|
+
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", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential", "akiles_credential"]>>;
|
|
359
372
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
360
373
|
created_at: z.ZodString;
|
|
361
374
|
workspace_id: z.ZodString;
|
|
@@ -506,6 +519,13 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
506
519
|
key_issuing_request_id?: string | undefined;
|
|
507
520
|
door_names?: string[] | undefined;
|
|
508
521
|
}>>;
|
|
522
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
523
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
524
|
+
}, "strip", z.ZodTypeAny, {
|
|
525
|
+
member_pin_id?: string | undefined;
|
|
526
|
+
}, {
|
|
527
|
+
member_pin_id?: string | undefined;
|
|
528
|
+
}>>;
|
|
509
529
|
} & {
|
|
510
530
|
is_managed: z.ZodLiteral<false>;
|
|
511
531
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -560,6 +580,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
560
580
|
card_id?: string | undefined;
|
|
561
581
|
credential_id?: string | undefined;
|
|
562
582
|
} | undefined;
|
|
583
|
+
akiles_metadata?: {
|
|
584
|
+
member_pin_id?: string | undefined;
|
|
585
|
+
} | undefined;
|
|
563
586
|
assa_abloy_vostio_metadata?: {
|
|
564
587
|
key_id?: string | undefined;
|
|
565
588
|
endpoint_id?: string | undefined;
|
|
@@ -573,7 +596,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
573
596
|
issued_at?: string | null | undefined;
|
|
574
597
|
is_issued?: boolean | undefined;
|
|
575
598
|
acs_user_id?: string | undefined;
|
|
576
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
599
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
577
600
|
external_type_display_name?: string | undefined;
|
|
578
601
|
acs_credential_pool_id?: string | undefined;
|
|
579
602
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -633,6 +656,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
633
656
|
card_id?: string | undefined;
|
|
634
657
|
credential_id?: string | undefined;
|
|
635
658
|
} | undefined;
|
|
659
|
+
akiles_metadata?: {
|
|
660
|
+
member_pin_id?: string | undefined;
|
|
661
|
+
} | undefined;
|
|
636
662
|
assa_abloy_vostio_metadata?: {
|
|
637
663
|
key_id?: string | undefined;
|
|
638
664
|
endpoint_id?: string | undefined;
|
|
@@ -646,7 +672,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
646
672
|
issued_at?: string | null | undefined;
|
|
647
673
|
is_issued?: boolean | undefined;
|
|
648
674
|
acs_user_id?: string | undefined;
|
|
649
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
675
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
650
676
|
external_type_display_name?: string | undefined;
|
|
651
677
|
acs_credential_pool_id?: string | undefined;
|
|
652
678
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -711,6 +737,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
711
737
|
card_id?: string | undefined;
|
|
712
738
|
credential_id?: string | undefined;
|
|
713
739
|
} | undefined;
|
|
740
|
+
akiles_metadata?: {
|
|
741
|
+
member_pin_id?: string | undefined;
|
|
742
|
+
} | undefined;
|
|
714
743
|
assa_abloy_vostio_metadata?: {
|
|
715
744
|
key_id?: string | undefined;
|
|
716
745
|
endpoint_id?: string | undefined;
|
|
@@ -724,7 +753,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
724
753
|
issued_at?: string | null | undefined;
|
|
725
754
|
is_issued?: boolean | undefined;
|
|
726
755
|
acs_user_id?: string | undefined;
|
|
727
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
756
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
728
757
|
external_type_display_name?: string | undefined;
|
|
729
758
|
acs_credential_pool_id?: string | undefined;
|
|
730
759
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -784,6 +813,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
784
813
|
card_id?: string | undefined;
|
|
785
814
|
credential_id?: string | undefined;
|
|
786
815
|
} | undefined;
|
|
816
|
+
akiles_metadata?: {
|
|
817
|
+
member_pin_id?: string | undefined;
|
|
818
|
+
} | undefined;
|
|
787
819
|
assa_abloy_vostio_metadata?: {
|
|
788
820
|
key_id?: string | undefined;
|
|
789
821
|
endpoint_id?: string | undefined;
|
|
@@ -797,7 +829,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
797
829
|
issued_at?: string | null | undefined;
|
|
798
830
|
is_issued?: boolean | undefined;
|
|
799
831
|
acs_user_id?: string | undefined;
|
|
800
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
832
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
801
833
|
external_type_display_name?: string | undefined;
|
|
802
834
|
acs_credential_pool_id?: string | undefined;
|
|
803
835
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -863,6 +895,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
863
895
|
card_id?: string | undefined;
|
|
864
896
|
credential_id?: string | undefined;
|
|
865
897
|
} | undefined;
|
|
898
|
+
akiles_metadata?: {
|
|
899
|
+
member_pin_id?: string | undefined;
|
|
900
|
+
} | undefined;
|
|
866
901
|
assa_abloy_vostio_metadata?: {
|
|
867
902
|
key_id?: string | undefined;
|
|
868
903
|
endpoint_id?: string | undefined;
|
|
@@ -876,7 +911,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
876
911
|
issued_at?: string | null | undefined;
|
|
877
912
|
is_issued?: boolean | undefined;
|
|
878
913
|
acs_user_id?: string | undefined;
|
|
879
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
914
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
880
915
|
external_type_display_name?: string | undefined;
|
|
881
916
|
acs_credential_pool_id?: string | undefined;
|
|
882
917
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -936,6 +971,9 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
936
971
|
card_id?: string | undefined;
|
|
937
972
|
credential_id?: string | undefined;
|
|
938
973
|
} | undefined;
|
|
974
|
+
akiles_metadata?: {
|
|
975
|
+
member_pin_id?: string | undefined;
|
|
976
|
+
} | undefined;
|
|
939
977
|
assa_abloy_vostio_metadata?: {
|
|
940
978
|
key_id?: string | undefined;
|
|
941
979
|
endpoint_id?: string | undefined;
|
|
@@ -949,7 +987,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
949
987
|
issued_at?: string | null | undefined;
|
|
950
988
|
is_issued?: boolean | undefined;
|
|
951
989
|
acs_user_id?: string | undefined;
|
|
952
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
990
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
953
991
|
external_type_display_name?: string | undefined;
|
|
954
992
|
acs_credential_pool_id?: string | undefined;
|
|
955
993
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -129,7 +129,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
129
129
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
130
130
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
131
131
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
132
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
132
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential", "akiles_credential"]>>;
|
|
133
133
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
134
134
|
created_at: z.ZodString;
|
|
135
135
|
workspace_id: z.ZodString;
|
|
@@ -280,6 +280,13 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
280
280
|
key_issuing_request_id?: string | undefined;
|
|
281
281
|
door_names?: string[] | undefined;
|
|
282
282
|
}>>;
|
|
283
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
284
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
285
|
+
}, "strip", z.ZodTypeAny, {
|
|
286
|
+
member_pin_id?: string | undefined;
|
|
287
|
+
}, {
|
|
288
|
+
member_pin_id?: string | undefined;
|
|
289
|
+
}>>;
|
|
283
290
|
} & {
|
|
284
291
|
is_managed: z.ZodLiteral<true>;
|
|
285
292
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -334,6 +341,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
334
341
|
card_id?: string | undefined;
|
|
335
342
|
credential_id?: string | undefined;
|
|
336
343
|
} | undefined;
|
|
344
|
+
akiles_metadata?: {
|
|
345
|
+
member_pin_id?: string | undefined;
|
|
346
|
+
} | undefined;
|
|
337
347
|
assa_abloy_vostio_metadata?: {
|
|
338
348
|
key_id?: string | undefined;
|
|
339
349
|
endpoint_id?: string | undefined;
|
|
@@ -347,7 +357,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
347
357
|
issued_at?: string | null | undefined;
|
|
348
358
|
is_issued?: boolean | undefined;
|
|
349
359
|
acs_user_id?: string | undefined;
|
|
350
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
360
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
351
361
|
external_type_display_name?: string | undefined;
|
|
352
362
|
acs_credential_pool_id?: string | undefined;
|
|
353
363
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -407,6 +417,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
407
417
|
card_id?: string | undefined;
|
|
408
418
|
credential_id?: string | undefined;
|
|
409
419
|
} | undefined;
|
|
420
|
+
akiles_metadata?: {
|
|
421
|
+
member_pin_id?: string | undefined;
|
|
422
|
+
} | undefined;
|
|
410
423
|
assa_abloy_vostio_metadata?: {
|
|
411
424
|
key_id?: string | undefined;
|
|
412
425
|
endpoint_id?: string | undefined;
|
|
@@ -420,7 +433,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
420
433
|
issued_at?: string | null | undefined;
|
|
421
434
|
is_issued?: boolean | undefined;
|
|
422
435
|
acs_user_id?: string | undefined;
|
|
423
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
436
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
424
437
|
external_type_display_name?: string | undefined;
|
|
425
438
|
acs_credential_pool_id?: string | undefined;
|
|
426
439
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -443,7 +456,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
443
456
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
444
457
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
445
458
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
446
|
-
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", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
459
|
+
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", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential", "akiles_credential"]>>;
|
|
447
460
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
448
461
|
created_at: z.ZodString;
|
|
449
462
|
workspace_id: z.ZodString;
|
|
@@ -594,6 +607,13 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
594
607
|
key_issuing_request_id?: string | undefined;
|
|
595
608
|
door_names?: string[] | undefined;
|
|
596
609
|
}>>;
|
|
610
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
611
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
612
|
+
}, "strip", z.ZodTypeAny, {
|
|
613
|
+
member_pin_id?: string | undefined;
|
|
614
|
+
}, {
|
|
615
|
+
member_pin_id?: string | undefined;
|
|
616
|
+
}>>;
|
|
597
617
|
} & {
|
|
598
618
|
is_managed: z.ZodLiteral<false>;
|
|
599
619
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -648,6 +668,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
648
668
|
card_id?: string | undefined;
|
|
649
669
|
credential_id?: string | undefined;
|
|
650
670
|
} | undefined;
|
|
671
|
+
akiles_metadata?: {
|
|
672
|
+
member_pin_id?: string | undefined;
|
|
673
|
+
} | undefined;
|
|
651
674
|
assa_abloy_vostio_metadata?: {
|
|
652
675
|
key_id?: string | undefined;
|
|
653
676
|
endpoint_id?: string | undefined;
|
|
@@ -661,7 +684,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
661
684
|
issued_at?: string | null | undefined;
|
|
662
685
|
is_issued?: boolean | undefined;
|
|
663
686
|
acs_user_id?: string | undefined;
|
|
664
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
687
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
665
688
|
external_type_display_name?: string | undefined;
|
|
666
689
|
acs_credential_pool_id?: string | undefined;
|
|
667
690
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -721,6 +744,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
721
744
|
card_id?: string | undefined;
|
|
722
745
|
credential_id?: string | undefined;
|
|
723
746
|
} | undefined;
|
|
747
|
+
akiles_metadata?: {
|
|
748
|
+
member_pin_id?: string | undefined;
|
|
749
|
+
} | undefined;
|
|
724
750
|
assa_abloy_vostio_metadata?: {
|
|
725
751
|
key_id?: string | undefined;
|
|
726
752
|
endpoint_id?: string | undefined;
|
|
@@ -734,7 +760,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
734
760
|
issued_at?: string | null | undefined;
|
|
735
761
|
is_issued?: boolean | undefined;
|
|
736
762
|
acs_user_id?: string | undefined;
|
|
737
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
763
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
738
764
|
external_type_display_name?: string | undefined;
|
|
739
765
|
acs_credential_pool_id?: string | undefined;
|
|
740
766
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -831,6 +857,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
831
857
|
card_id?: string | undefined;
|
|
832
858
|
credential_id?: string | undefined;
|
|
833
859
|
} | undefined;
|
|
860
|
+
akiles_metadata?: {
|
|
861
|
+
member_pin_id?: string | undefined;
|
|
862
|
+
} | undefined;
|
|
834
863
|
assa_abloy_vostio_metadata?: {
|
|
835
864
|
key_id?: string | undefined;
|
|
836
865
|
endpoint_id?: string | undefined;
|
|
@@ -844,7 +873,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
844
873
|
issued_at?: string | null | undefined;
|
|
845
874
|
is_issued?: boolean | undefined;
|
|
846
875
|
acs_user_id?: string | undefined;
|
|
847
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | 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" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
848
877
|
external_type_display_name?: string | undefined;
|
|
849
878
|
acs_credential_pool_id?: string | undefined;
|
|
850
879
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -904,6 +933,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
904
933
|
card_id?: string | undefined;
|
|
905
934
|
credential_id?: string | undefined;
|
|
906
935
|
} | undefined;
|
|
936
|
+
akiles_metadata?: {
|
|
937
|
+
member_pin_id?: string | undefined;
|
|
938
|
+
} | undefined;
|
|
907
939
|
assa_abloy_vostio_metadata?: {
|
|
908
940
|
key_id?: string | undefined;
|
|
909
941
|
endpoint_id?: string | undefined;
|
|
@@ -917,7 +949,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
917
949
|
issued_at?: string | null | undefined;
|
|
918
950
|
is_issued?: boolean | undefined;
|
|
919
951
|
acs_user_id?: string | undefined;
|
|
920
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
952
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
921
953
|
external_type_display_name?: string | undefined;
|
|
922
954
|
acs_credential_pool_id?: string | undefined;
|
|
923
955
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1004,6 +1036,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1004
1036
|
card_id?: string | undefined;
|
|
1005
1037
|
credential_id?: string | undefined;
|
|
1006
1038
|
} | undefined;
|
|
1039
|
+
akiles_metadata?: {
|
|
1040
|
+
member_pin_id?: string | undefined;
|
|
1041
|
+
} | undefined;
|
|
1007
1042
|
assa_abloy_vostio_metadata?: {
|
|
1008
1043
|
key_id?: string | undefined;
|
|
1009
1044
|
endpoint_id?: string | undefined;
|
|
@@ -1017,7 +1052,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1017
1052
|
issued_at?: string | null | undefined;
|
|
1018
1053
|
is_issued?: boolean | undefined;
|
|
1019
1054
|
acs_user_id?: string | undefined;
|
|
1020
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1055
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
1021
1056
|
external_type_display_name?: string | undefined;
|
|
1022
1057
|
acs_credential_pool_id?: string | undefined;
|
|
1023
1058
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1077,6 +1112,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1077
1112
|
card_id?: string | undefined;
|
|
1078
1113
|
credential_id?: string | undefined;
|
|
1079
1114
|
} | undefined;
|
|
1115
|
+
akiles_metadata?: {
|
|
1116
|
+
member_pin_id?: string | undefined;
|
|
1117
|
+
} | undefined;
|
|
1080
1118
|
assa_abloy_vostio_metadata?: {
|
|
1081
1119
|
key_id?: string | undefined;
|
|
1082
1120
|
endpoint_id?: string | undefined;
|
|
@@ -1090,7 +1128,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1090
1128
|
issued_at?: string | null | undefined;
|
|
1091
1129
|
is_issued?: boolean | undefined;
|
|
1092
1130
|
acs_user_id?: string | undefined;
|
|
1093
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1131
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
1094
1132
|
external_type_display_name?: string | undefined;
|
|
1095
1133
|
acs_credential_pool_id?: string | undefined;
|
|
1096
1134
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1182,6 +1220,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1182
1220
|
card_id?: string | undefined;
|
|
1183
1221
|
credential_id?: string | undefined;
|
|
1184
1222
|
} | undefined;
|
|
1223
|
+
akiles_metadata?: {
|
|
1224
|
+
member_pin_id?: string | undefined;
|
|
1225
|
+
} | undefined;
|
|
1185
1226
|
assa_abloy_vostio_metadata?: {
|
|
1186
1227
|
key_id?: string | undefined;
|
|
1187
1228
|
endpoint_id?: string | undefined;
|
|
@@ -1195,7 +1236,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1195
1236
|
issued_at?: string | null | undefined;
|
|
1196
1237
|
is_issued?: boolean | undefined;
|
|
1197
1238
|
acs_user_id?: string | undefined;
|
|
1198
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1239
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
1199
1240
|
external_type_display_name?: string | undefined;
|
|
1200
1241
|
acs_credential_pool_id?: string | undefined;
|
|
1201
1242
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1255,6 +1296,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1255
1296
|
card_id?: string | undefined;
|
|
1256
1297
|
credential_id?: string | undefined;
|
|
1257
1298
|
} | undefined;
|
|
1299
|
+
akiles_metadata?: {
|
|
1300
|
+
member_pin_id?: string | undefined;
|
|
1301
|
+
} | undefined;
|
|
1258
1302
|
assa_abloy_vostio_metadata?: {
|
|
1259
1303
|
key_id?: string | undefined;
|
|
1260
1304
|
endpoint_id?: string | undefined;
|
|
@@ -1268,7 +1312,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1268
1312
|
issued_at?: string | null | undefined;
|
|
1269
1313
|
is_issued?: boolean | undefined;
|
|
1270
1314
|
acs_user_id?: string | undefined;
|
|
1271
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1315
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
1272
1316
|
external_type_display_name?: string | undefined;
|
|
1273
1317
|
acs_credential_pool_id?: string | undefined;
|
|
1274
1318
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1361,6 +1405,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1361
1405
|
card_id?: string | undefined;
|
|
1362
1406
|
credential_id?: string | undefined;
|
|
1363
1407
|
} | undefined;
|
|
1408
|
+
akiles_metadata?: {
|
|
1409
|
+
member_pin_id?: string | undefined;
|
|
1410
|
+
} | undefined;
|
|
1364
1411
|
assa_abloy_vostio_metadata?: {
|
|
1365
1412
|
key_id?: string | undefined;
|
|
1366
1413
|
endpoint_id?: string | undefined;
|
|
@@ -1374,7 +1421,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1374
1421
|
issued_at?: string | null | undefined;
|
|
1375
1422
|
is_issued?: boolean | undefined;
|
|
1376
1423
|
acs_user_id?: string | undefined;
|
|
1377
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1424
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
1378
1425
|
external_type_display_name?: string | undefined;
|
|
1379
1426
|
acs_credential_pool_id?: string | undefined;
|
|
1380
1427
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1434,6 +1481,9 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1434
1481
|
card_id?: string | undefined;
|
|
1435
1482
|
credential_id?: string | undefined;
|
|
1436
1483
|
} | undefined;
|
|
1484
|
+
akiles_metadata?: {
|
|
1485
|
+
member_pin_id?: string | undefined;
|
|
1486
|
+
} | undefined;
|
|
1437
1487
|
assa_abloy_vostio_metadata?: {
|
|
1438
1488
|
key_id?: string | undefined;
|
|
1439
1489
|
endpoint_id?: string | undefined;
|
|
@@ -1447,7 +1497,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1447
1497
|
issued_at?: string | null | undefined;
|
|
1448
1498
|
is_issued?: boolean | undefined;
|
|
1449
1499
|
acs_user_id?: string | undefined;
|
|
1450
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
1500
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
1451
1501
|
external_type_display_name?: string | undefined;
|
|
1452
1502
|
acs_credential_pool_id?: string | undefined;
|
|
1453
1503
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -41,7 +41,7 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
41
41
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
42
42
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
43
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
44
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential"]>>;
|
|
44
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential", "akiles_credential"]>>;
|
|
45
45
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
46
46
|
created_at: z.ZodString;
|
|
47
47
|
workspace_id: z.ZodString;
|
|
@@ -192,6 +192,13 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
192
192
|
key_issuing_request_id?: string | undefined;
|
|
193
193
|
door_names?: string[] | undefined;
|
|
194
194
|
}>>;
|
|
195
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
196
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
197
|
+
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
member_pin_id?: string | undefined;
|
|
199
|
+
}, {
|
|
200
|
+
member_pin_id?: string | undefined;
|
|
201
|
+
}>>;
|
|
195
202
|
} & {
|
|
196
203
|
is_managed: z.ZodLiteral<true>;
|
|
197
204
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -246,6 +253,9 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
246
253
|
card_id?: string | undefined;
|
|
247
254
|
credential_id?: string | undefined;
|
|
248
255
|
} | undefined;
|
|
256
|
+
akiles_metadata?: {
|
|
257
|
+
member_pin_id?: string | undefined;
|
|
258
|
+
} | undefined;
|
|
249
259
|
assa_abloy_vostio_metadata?: {
|
|
250
260
|
key_id?: string | undefined;
|
|
251
261
|
endpoint_id?: string | undefined;
|
|
@@ -259,7 +269,7 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
259
269
|
issued_at?: string | null | undefined;
|
|
260
270
|
is_issued?: boolean | undefined;
|
|
261
271
|
acs_user_id?: string | undefined;
|
|
262
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
272
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
263
273
|
external_type_display_name?: string | undefined;
|
|
264
274
|
acs_credential_pool_id?: string | undefined;
|
|
265
275
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -319,6 +329,9 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
319
329
|
card_id?: string | undefined;
|
|
320
330
|
credential_id?: string | undefined;
|
|
321
331
|
} | undefined;
|
|
332
|
+
akiles_metadata?: {
|
|
333
|
+
member_pin_id?: string | undefined;
|
|
334
|
+
} | undefined;
|
|
322
335
|
assa_abloy_vostio_metadata?: {
|
|
323
336
|
key_id?: string | undefined;
|
|
324
337
|
endpoint_id?: string | undefined;
|
|
@@ -332,7 +345,7 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
332
345
|
issued_at?: string | null | undefined;
|
|
333
346
|
is_issued?: boolean | undefined;
|
|
334
347
|
acs_user_id?: string | undefined;
|
|
335
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
348
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
336
349
|
external_type_display_name?: string | undefined;
|
|
337
350
|
acs_credential_pool_id?: string | undefined;
|
|
338
351
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -397,6 +410,9 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
397
410
|
card_id?: string | undefined;
|
|
398
411
|
credential_id?: string | undefined;
|
|
399
412
|
} | undefined;
|
|
413
|
+
akiles_metadata?: {
|
|
414
|
+
member_pin_id?: string | undefined;
|
|
415
|
+
} | undefined;
|
|
400
416
|
assa_abloy_vostio_metadata?: {
|
|
401
417
|
key_id?: string | undefined;
|
|
402
418
|
endpoint_id?: string | undefined;
|
|
@@ -410,7 +426,7 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
410
426
|
issued_at?: string | null | undefined;
|
|
411
427
|
is_issued?: boolean | undefined;
|
|
412
428
|
acs_user_id?: string | undefined;
|
|
413
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
429
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
414
430
|
external_type_display_name?: string | undefined;
|
|
415
431
|
acs_credential_pool_id?: string | undefined;
|
|
416
432
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -476,6 +492,9 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
476
492
|
card_id?: string | undefined;
|
|
477
493
|
credential_id?: string | undefined;
|
|
478
494
|
} | undefined;
|
|
495
|
+
akiles_metadata?: {
|
|
496
|
+
member_pin_id?: string | undefined;
|
|
497
|
+
} | undefined;
|
|
479
498
|
assa_abloy_vostio_metadata?: {
|
|
480
499
|
key_id?: string | undefined;
|
|
481
500
|
endpoint_id?: string | undefined;
|
|
@@ -489,7 +508,7 @@ export declare const scan_to_assign_credential_action_attempt: z.ZodDiscriminate
|
|
|
489
508
|
issued_at?: string | null | undefined;
|
|
490
509
|
is_issued?: boolean | undefined;
|
|
491
510
|
acs_user_id?: string | undefined;
|
|
492
|
-
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
511
|
+
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" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | "akiles_credential" | undefined;
|
|
493
512
|
external_type_display_name?: string | undefined;
|
|
494
513
|
acs_credential_pool_id?: string | undefined;
|
|
495
514
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -75,10 +75,11 @@ export const connected_account_completed_first_sync_event = connected_account_ev
|
|
|
75
75
|
`);
|
|
76
76
|
export const connected_account_deleted_event = connected_account_event.extend({
|
|
77
77
|
event_type: z.literal('connected_account.deleted'),
|
|
78
|
-
connected_account_type: z
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
connected_account_type: z.string().optional().describe(`
|
|
79
|
+
---
|
|
80
|
+
undocumented: Unreleased.
|
|
81
|
+
---
|
|
82
|
+
`),
|
|
82
83
|
customer_key: z
|
|
83
84
|
.string()
|
|
84
85
|
.optional()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connected-accounts.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/connected-accounts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAA;AACvD,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,oBAAoB,GACrB,MAAM,aAAa,CAAA;AAEpB,MAAM,uBAAuB,GAAG,YAAY,CAAC,MAAM,CAAC;IAClD,oBAAoB,EAAE,CAAC;SACpB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,uCAAuC,CAAC;IACpD,iCAAiC,EAAE,eAAe;SAC/C,QAAQ,EAAE;SACV,QAAQ,CACP,0FAA0F,CAC3F;CACJ,CAAC,CAAA;AAEF,MAAM,kBAAkB,GAAG,CAAC;KACzB,MAAM,EAAE;KACR,IAAI,EAAE;KACN,QAAQ,CAAC,sDAAsD,CAAC,CAAA;AAEnE,MAAM,wCAAwC,GAAG;IAC/C,wBAAwB,EAAE,CAAC;SACxB,KAAK,CAAC,kBAAkB,CAAC;SACzB,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,0BAA0B,EAAE,CAAC;SAC1B,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,CAAC,iDAAiD,CAAC;CAC/D,CAAA;AAED,MAAM,CAAC,MAAM,iCAAiC,GAAG,uBAAuB,CAAC,MAAM,CAC7E;IACE,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,6BAA6B,CAAC;IACpD,kBAAkB,EAAE,kBAAkB,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,kEAAkE,CACnE;CACJ,CACF,CAAC,QAAQ,CAAC;;;;;CAKV,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,+BAA+B,GAAG,uBAAuB,CAAC,MAAM,CAAC;IAC5E,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;IAClD,kBAAkB;CACnB,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA;AAKF,kBAAkB;AAClB,MAAM,CAAC,MAAM,wCAAwC,GACnD,uBAAuB,CAAC,MAAM,CAAC;IAC7B,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,oCAAoC,CAAC;IAC3D,kBAAkB;CACnB,CAAC,CAAC,QAAQ,CAAC;;;;;;GAMX,CAAC,CAAA;AAOJ,MAAM,CAAC,MAAM,oCAAoC,GAAG,uBAAuB;KACxE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,MAAM,CAAC,wCAAwC,CAAC,CAAC,QAAQ,CAAC;;;;;GAK1D,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,4CAA4C,GACvD,uBAAuB,CAAC,MAAM,CAAC;IAC7B,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,wCAAwC,CAAC;CAChE,CAAC,CAAC,QAAQ,CAAC;;;;;GAKX,CAAC,CAAA;AAMJ,MAAM,CAAC,MAAM,+BAA+B,GAAG,uBAAuB,CAAC,MAAM,CAAC;IAC5E,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC;IAClD,sBAAsB,EAAE,CAAC
|
|
1
|
+
{"version":3,"file":"connected-accounts.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/events/connected-accounts.ts"],"names":[],"mappings":"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"}
|