@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
|
@@ -299,7 +299,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
299
299
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
300
300
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
301
301
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
302
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "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"]>>;
|
|
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", "salto_ks_tag", "avigilon_alta_credential", "kisi_credential", "akiles_credential"]>>;
|
|
303
303
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
304
304
|
created_at: z.ZodString;
|
|
305
305
|
workspace_id: z.ZodString;
|
|
@@ -450,6 +450,13 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
450
450
|
key_issuing_request_id?: string | undefined;
|
|
451
451
|
door_names?: string[] | undefined;
|
|
452
452
|
}>>;
|
|
453
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
454
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
455
|
+
}, "strip", z.ZodTypeAny, {
|
|
456
|
+
member_pin_id?: string | undefined;
|
|
457
|
+
}, {
|
|
458
|
+
member_pin_id?: string | undefined;
|
|
459
|
+
}>>;
|
|
453
460
|
} & {
|
|
454
461
|
is_managed: z.ZodLiteral<true>;
|
|
455
462
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -504,6 +511,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
504
511
|
card_id?: string | undefined;
|
|
505
512
|
credential_id?: string | undefined;
|
|
506
513
|
} | undefined;
|
|
514
|
+
akiles_metadata?: {
|
|
515
|
+
member_pin_id?: string | undefined;
|
|
516
|
+
} | undefined;
|
|
507
517
|
assa_abloy_vostio_metadata?: {
|
|
508
518
|
key_id?: string | undefined;
|
|
509
519
|
endpoint_id?: string | undefined;
|
|
@@ -517,7 +527,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
517
527
|
issued_at?: string | null | undefined;
|
|
518
528
|
is_issued?: boolean | undefined;
|
|
519
529
|
acs_user_id?: string | undefined;
|
|
520
|
-
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;
|
|
530
|
+
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;
|
|
521
531
|
external_type_display_name?: string | undefined;
|
|
522
532
|
acs_credential_pool_id?: string | undefined;
|
|
523
533
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -577,6 +587,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
577
587
|
card_id?: string | undefined;
|
|
578
588
|
credential_id?: string | undefined;
|
|
579
589
|
} | undefined;
|
|
590
|
+
akiles_metadata?: {
|
|
591
|
+
member_pin_id?: string | undefined;
|
|
592
|
+
} | undefined;
|
|
580
593
|
assa_abloy_vostio_metadata?: {
|
|
581
594
|
key_id?: string | undefined;
|
|
582
595
|
endpoint_id?: string | undefined;
|
|
@@ -590,7 +603,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
590
603
|
issued_at?: string | null | undefined;
|
|
591
604
|
is_issued?: boolean | undefined;
|
|
592
605
|
acs_user_id?: string | undefined;
|
|
593
|
-
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;
|
|
606
|
+
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;
|
|
594
607
|
external_type_display_name?: string | undefined;
|
|
595
608
|
acs_credential_pool_id?: string | undefined;
|
|
596
609
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -613,7 +626,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
613
626
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
614
627
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
615
628
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
616
|
-
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"]>>;
|
|
629
|
+
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"]>>;
|
|
617
630
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
618
631
|
created_at: z.ZodString;
|
|
619
632
|
workspace_id: z.ZodString;
|
|
@@ -764,6 +777,13 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
764
777
|
key_issuing_request_id?: string | undefined;
|
|
765
778
|
door_names?: string[] | undefined;
|
|
766
779
|
}>>;
|
|
780
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
781
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
782
|
+
}, "strip", z.ZodTypeAny, {
|
|
783
|
+
member_pin_id?: string | undefined;
|
|
784
|
+
}, {
|
|
785
|
+
member_pin_id?: string | undefined;
|
|
786
|
+
}>>;
|
|
767
787
|
} & {
|
|
768
788
|
is_managed: z.ZodLiteral<false>;
|
|
769
789
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -818,6 +838,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
818
838
|
card_id?: string | undefined;
|
|
819
839
|
credential_id?: string | undefined;
|
|
820
840
|
} | undefined;
|
|
841
|
+
akiles_metadata?: {
|
|
842
|
+
member_pin_id?: string | undefined;
|
|
843
|
+
} | undefined;
|
|
821
844
|
assa_abloy_vostio_metadata?: {
|
|
822
845
|
key_id?: string | undefined;
|
|
823
846
|
endpoint_id?: string | undefined;
|
|
@@ -831,7 +854,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
831
854
|
issued_at?: string | null | undefined;
|
|
832
855
|
is_issued?: boolean | undefined;
|
|
833
856
|
acs_user_id?: string | undefined;
|
|
834
|
-
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;
|
|
857
|
+
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;
|
|
835
858
|
external_type_display_name?: string | undefined;
|
|
836
859
|
acs_credential_pool_id?: string | undefined;
|
|
837
860
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -891,6 +914,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
891
914
|
card_id?: string | undefined;
|
|
892
915
|
credential_id?: string | undefined;
|
|
893
916
|
} | undefined;
|
|
917
|
+
akiles_metadata?: {
|
|
918
|
+
member_pin_id?: string | undefined;
|
|
919
|
+
} | undefined;
|
|
894
920
|
assa_abloy_vostio_metadata?: {
|
|
895
921
|
key_id?: string | undefined;
|
|
896
922
|
endpoint_id?: string | undefined;
|
|
@@ -904,7 +930,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
904
930
|
issued_at?: string | null | undefined;
|
|
905
931
|
is_issued?: boolean | undefined;
|
|
906
932
|
acs_user_id?: string | undefined;
|
|
907
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | "salto_ks_tag" | "avigilon_alta_credential" | "kisi_credential" | undefined;
|
|
933
|
+
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;
|
|
908
934
|
external_type_display_name?: string | undefined;
|
|
909
935
|
acs_credential_pool_id?: string | undefined;
|
|
910
936
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1001,6 +1027,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1001
1027
|
card_id?: string | undefined;
|
|
1002
1028
|
credential_id?: string | undefined;
|
|
1003
1029
|
} | undefined;
|
|
1030
|
+
akiles_metadata?: {
|
|
1031
|
+
member_pin_id?: string | undefined;
|
|
1032
|
+
} | undefined;
|
|
1004
1033
|
assa_abloy_vostio_metadata?: {
|
|
1005
1034
|
key_id?: string | undefined;
|
|
1006
1035
|
endpoint_id?: string | undefined;
|
|
@@ -1014,7 +1043,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1014
1043
|
issued_at?: string | null | undefined;
|
|
1015
1044
|
is_issued?: boolean | undefined;
|
|
1016
1045
|
acs_user_id?: string | undefined;
|
|
1017
|
-
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;
|
|
1046
|
+
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;
|
|
1018
1047
|
external_type_display_name?: string | undefined;
|
|
1019
1048
|
acs_credential_pool_id?: string | undefined;
|
|
1020
1049
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1074,6 +1103,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1074
1103
|
card_id?: string | undefined;
|
|
1075
1104
|
credential_id?: string | undefined;
|
|
1076
1105
|
} | undefined;
|
|
1106
|
+
akiles_metadata?: {
|
|
1107
|
+
member_pin_id?: string | undefined;
|
|
1108
|
+
} | undefined;
|
|
1077
1109
|
assa_abloy_vostio_metadata?: {
|
|
1078
1110
|
key_id?: string | undefined;
|
|
1079
1111
|
endpoint_id?: string | undefined;
|
|
@@ -1087,7 +1119,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1087
1119
|
issued_at?: string | null | undefined;
|
|
1088
1120
|
is_issued?: boolean | undefined;
|
|
1089
1121
|
acs_user_id?: string | undefined;
|
|
1090
|
-
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;
|
|
1122
|
+
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;
|
|
1091
1123
|
external_type_display_name?: string | undefined;
|
|
1092
1124
|
acs_credential_pool_id?: string | undefined;
|
|
1093
1125
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1174,6 +1206,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1174
1206
|
card_id?: string | undefined;
|
|
1175
1207
|
credential_id?: string | undefined;
|
|
1176
1208
|
} | undefined;
|
|
1209
|
+
akiles_metadata?: {
|
|
1210
|
+
member_pin_id?: string | undefined;
|
|
1211
|
+
} | undefined;
|
|
1177
1212
|
assa_abloy_vostio_metadata?: {
|
|
1178
1213
|
key_id?: string | undefined;
|
|
1179
1214
|
endpoint_id?: string | undefined;
|
|
@@ -1187,7 +1222,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1187
1222
|
issued_at?: string | null | undefined;
|
|
1188
1223
|
is_issued?: boolean | undefined;
|
|
1189
1224
|
acs_user_id?: string | undefined;
|
|
1190
|
-
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;
|
|
1225
|
+
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;
|
|
1191
1226
|
external_type_display_name?: string | undefined;
|
|
1192
1227
|
acs_credential_pool_id?: string | undefined;
|
|
1193
1228
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1247,6 +1282,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1247
1282
|
card_id?: string | undefined;
|
|
1248
1283
|
credential_id?: string | undefined;
|
|
1249
1284
|
} | undefined;
|
|
1285
|
+
akiles_metadata?: {
|
|
1286
|
+
member_pin_id?: string | undefined;
|
|
1287
|
+
} | undefined;
|
|
1250
1288
|
assa_abloy_vostio_metadata?: {
|
|
1251
1289
|
key_id?: string | undefined;
|
|
1252
1290
|
endpoint_id?: string | undefined;
|
|
@@ -1260,7 +1298,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1260
1298
|
issued_at?: string | null | undefined;
|
|
1261
1299
|
is_issued?: boolean | undefined;
|
|
1262
1300
|
acs_user_id?: string | undefined;
|
|
1263
|
-
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;
|
|
1301
|
+
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;
|
|
1264
1302
|
external_type_display_name?: string | undefined;
|
|
1265
1303
|
acs_credential_pool_id?: string | undefined;
|
|
1266
1304
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1352,6 +1390,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1352
1390
|
card_id?: string | undefined;
|
|
1353
1391
|
credential_id?: string | undefined;
|
|
1354
1392
|
} | undefined;
|
|
1393
|
+
akiles_metadata?: {
|
|
1394
|
+
member_pin_id?: string | undefined;
|
|
1395
|
+
} | undefined;
|
|
1355
1396
|
assa_abloy_vostio_metadata?: {
|
|
1356
1397
|
key_id?: string | undefined;
|
|
1357
1398
|
endpoint_id?: string | undefined;
|
|
@@ -1365,7 +1406,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1365
1406
|
issued_at?: string | null | undefined;
|
|
1366
1407
|
is_issued?: boolean | undefined;
|
|
1367
1408
|
acs_user_id?: string | undefined;
|
|
1368
|
-
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;
|
|
1409
|
+
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;
|
|
1369
1410
|
external_type_display_name?: string | undefined;
|
|
1370
1411
|
acs_credential_pool_id?: string | undefined;
|
|
1371
1412
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1425,6 +1466,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1425
1466
|
card_id?: string | undefined;
|
|
1426
1467
|
credential_id?: string | undefined;
|
|
1427
1468
|
} | undefined;
|
|
1469
|
+
akiles_metadata?: {
|
|
1470
|
+
member_pin_id?: string | undefined;
|
|
1471
|
+
} | undefined;
|
|
1428
1472
|
assa_abloy_vostio_metadata?: {
|
|
1429
1473
|
key_id?: string | undefined;
|
|
1430
1474
|
endpoint_id?: string | undefined;
|
|
@@ -1438,7 +1482,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1438
1482
|
issued_at?: string | null | undefined;
|
|
1439
1483
|
is_issued?: boolean | undefined;
|
|
1440
1484
|
acs_user_id?: string | undefined;
|
|
1441
|
-
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;
|
|
1485
|
+
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;
|
|
1442
1486
|
external_type_display_name?: string | undefined;
|
|
1443
1487
|
acs_credential_pool_id?: string | undefined;
|
|
1444
1488
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1531,6 +1575,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1531
1575
|
card_id?: string | undefined;
|
|
1532
1576
|
credential_id?: string | undefined;
|
|
1533
1577
|
} | undefined;
|
|
1578
|
+
akiles_metadata?: {
|
|
1579
|
+
member_pin_id?: string | undefined;
|
|
1580
|
+
} | undefined;
|
|
1534
1581
|
assa_abloy_vostio_metadata?: {
|
|
1535
1582
|
key_id?: string | undefined;
|
|
1536
1583
|
endpoint_id?: string | undefined;
|
|
@@ -1544,7 +1591,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1544
1591
|
issued_at?: string | null | undefined;
|
|
1545
1592
|
is_issued?: boolean | undefined;
|
|
1546
1593
|
acs_user_id?: string | undefined;
|
|
1547
|
-
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;
|
|
1594
|
+
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;
|
|
1548
1595
|
external_type_display_name?: string | undefined;
|
|
1549
1596
|
acs_credential_pool_id?: string | undefined;
|
|
1550
1597
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1604,6 +1651,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1604
1651
|
card_id?: string | undefined;
|
|
1605
1652
|
credential_id?: string | undefined;
|
|
1606
1653
|
} | undefined;
|
|
1654
|
+
akiles_metadata?: {
|
|
1655
|
+
member_pin_id?: string | undefined;
|
|
1656
|
+
} | undefined;
|
|
1607
1657
|
assa_abloy_vostio_metadata?: {
|
|
1608
1658
|
key_id?: string | undefined;
|
|
1609
1659
|
endpoint_id?: string | undefined;
|
|
@@ -1617,7 +1667,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1617
1667
|
issued_at?: string | null | undefined;
|
|
1618
1668
|
is_issued?: boolean | undefined;
|
|
1619
1669
|
acs_user_id?: string | undefined;
|
|
1620
|
-
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;
|
|
1670
|
+
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;
|
|
1621
1671
|
external_type_display_name?: string | undefined;
|
|
1622
1672
|
acs_credential_pool_id?: string | undefined;
|
|
1623
1673
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -1780,7 +1830,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1780
1830
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1781
1831
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1782
1832
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
1783
|
-
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"]>>;
|
|
1833
|
+
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"]>>;
|
|
1784
1834
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1785
1835
|
created_at: z.ZodString;
|
|
1786
1836
|
workspace_id: z.ZodString;
|
|
@@ -1931,6 +1981,13 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1931
1981
|
key_issuing_request_id?: string | undefined;
|
|
1932
1982
|
door_names?: string[] | undefined;
|
|
1933
1983
|
}>>;
|
|
1984
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
1985
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1986
|
+
}, "strip", z.ZodTypeAny, {
|
|
1987
|
+
member_pin_id?: string | undefined;
|
|
1988
|
+
}, {
|
|
1989
|
+
member_pin_id?: string | undefined;
|
|
1990
|
+
}>>;
|
|
1934
1991
|
} & {
|
|
1935
1992
|
is_managed: z.ZodLiteral<true>;
|
|
1936
1993
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1985,6 +2042,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1985
2042
|
card_id?: string | undefined;
|
|
1986
2043
|
credential_id?: string | undefined;
|
|
1987
2044
|
} | undefined;
|
|
2045
|
+
akiles_metadata?: {
|
|
2046
|
+
member_pin_id?: string | undefined;
|
|
2047
|
+
} | undefined;
|
|
1988
2048
|
assa_abloy_vostio_metadata?: {
|
|
1989
2049
|
key_id?: string | undefined;
|
|
1990
2050
|
endpoint_id?: string | undefined;
|
|
@@ -1998,7 +2058,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1998
2058
|
issued_at?: string | null | undefined;
|
|
1999
2059
|
is_issued?: boolean | undefined;
|
|
2000
2060
|
acs_user_id?: string | undefined;
|
|
2001
|
-
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;
|
|
2061
|
+
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;
|
|
2002
2062
|
external_type_display_name?: string | undefined;
|
|
2003
2063
|
acs_credential_pool_id?: string | undefined;
|
|
2004
2064
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2058,6 +2118,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2058
2118
|
card_id?: string | undefined;
|
|
2059
2119
|
credential_id?: string | undefined;
|
|
2060
2120
|
} | undefined;
|
|
2121
|
+
akiles_metadata?: {
|
|
2122
|
+
member_pin_id?: string | undefined;
|
|
2123
|
+
} | undefined;
|
|
2061
2124
|
assa_abloy_vostio_metadata?: {
|
|
2062
2125
|
key_id?: string | undefined;
|
|
2063
2126
|
endpoint_id?: string | undefined;
|
|
@@ -2071,7 +2134,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2071
2134
|
issued_at?: string | null | undefined;
|
|
2072
2135
|
is_issued?: boolean | undefined;
|
|
2073
2136
|
acs_user_id?: string | undefined;
|
|
2074
|
-
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;
|
|
2137
|
+
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;
|
|
2075
2138
|
external_type_display_name?: string | undefined;
|
|
2076
2139
|
acs_credential_pool_id?: string | undefined;
|
|
2077
2140
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2094,7 +2157,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2094
2157
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2095
2158
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2096
2159
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
2097
|
-
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"]>>;
|
|
2160
|
+
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"]>>;
|
|
2098
2161
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2099
2162
|
created_at: z.ZodString;
|
|
2100
2163
|
workspace_id: z.ZodString;
|
|
@@ -2245,6 +2308,13 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2245
2308
|
key_issuing_request_id?: string | undefined;
|
|
2246
2309
|
door_names?: string[] | undefined;
|
|
2247
2310
|
}>>;
|
|
2311
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
2312
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2313
|
+
}, "strip", z.ZodTypeAny, {
|
|
2314
|
+
member_pin_id?: string | undefined;
|
|
2315
|
+
}, {
|
|
2316
|
+
member_pin_id?: string | undefined;
|
|
2317
|
+
}>>;
|
|
2248
2318
|
} & {
|
|
2249
2319
|
is_managed: z.ZodLiteral<false>;
|
|
2250
2320
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2299,6 +2369,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2299
2369
|
card_id?: string | undefined;
|
|
2300
2370
|
credential_id?: string | undefined;
|
|
2301
2371
|
} | undefined;
|
|
2372
|
+
akiles_metadata?: {
|
|
2373
|
+
member_pin_id?: string | undefined;
|
|
2374
|
+
} | undefined;
|
|
2302
2375
|
assa_abloy_vostio_metadata?: {
|
|
2303
2376
|
key_id?: string | undefined;
|
|
2304
2377
|
endpoint_id?: string | undefined;
|
|
@@ -2312,7 +2385,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2312
2385
|
issued_at?: string | null | undefined;
|
|
2313
2386
|
is_issued?: boolean | undefined;
|
|
2314
2387
|
acs_user_id?: string | undefined;
|
|
2315
|
-
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;
|
|
2388
|
+
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;
|
|
2316
2389
|
external_type_display_name?: string | undefined;
|
|
2317
2390
|
acs_credential_pool_id?: string | undefined;
|
|
2318
2391
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2372,6 +2445,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2372
2445
|
card_id?: string | undefined;
|
|
2373
2446
|
credential_id?: string | undefined;
|
|
2374
2447
|
} | undefined;
|
|
2448
|
+
akiles_metadata?: {
|
|
2449
|
+
member_pin_id?: string | undefined;
|
|
2450
|
+
} | undefined;
|
|
2375
2451
|
assa_abloy_vostio_metadata?: {
|
|
2376
2452
|
key_id?: string | undefined;
|
|
2377
2453
|
endpoint_id?: string | undefined;
|
|
@@ -2385,7 +2461,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2385
2461
|
issued_at?: string | null | undefined;
|
|
2386
2462
|
is_issued?: boolean | undefined;
|
|
2387
2463
|
acs_user_id?: string | undefined;
|
|
2388
|
-
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;
|
|
2464
|
+
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;
|
|
2389
2465
|
external_type_display_name?: string | undefined;
|
|
2390
2466
|
acs_credential_pool_id?: string | undefined;
|
|
2391
2467
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2450,6 +2526,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2450
2526
|
card_id?: string | undefined;
|
|
2451
2527
|
credential_id?: string | undefined;
|
|
2452
2528
|
} | undefined;
|
|
2529
|
+
akiles_metadata?: {
|
|
2530
|
+
member_pin_id?: string | undefined;
|
|
2531
|
+
} | undefined;
|
|
2453
2532
|
assa_abloy_vostio_metadata?: {
|
|
2454
2533
|
key_id?: string | undefined;
|
|
2455
2534
|
endpoint_id?: string | undefined;
|
|
@@ -2463,7 +2542,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2463
2542
|
issued_at?: string | null | undefined;
|
|
2464
2543
|
is_issued?: boolean | undefined;
|
|
2465
2544
|
acs_user_id?: string | undefined;
|
|
2466
|
-
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;
|
|
2545
|
+
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;
|
|
2467
2546
|
external_type_display_name?: string | undefined;
|
|
2468
2547
|
acs_credential_pool_id?: string | undefined;
|
|
2469
2548
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2523,6 +2602,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2523
2602
|
card_id?: string | undefined;
|
|
2524
2603
|
credential_id?: string | undefined;
|
|
2525
2604
|
} | undefined;
|
|
2605
|
+
akiles_metadata?: {
|
|
2606
|
+
member_pin_id?: string | undefined;
|
|
2607
|
+
} | undefined;
|
|
2526
2608
|
assa_abloy_vostio_metadata?: {
|
|
2527
2609
|
key_id?: string | undefined;
|
|
2528
2610
|
endpoint_id?: string | undefined;
|
|
@@ -2536,7 +2618,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2536
2618
|
issued_at?: string | null | undefined;
|
|
2537
2619
|
is_issued?: boolean | undefined;
|
|
2538
2620
|
acs_user_id?: string | undefined;
|
|
2539
|
-
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;
|
|
2621
|
+
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;
|
|
2540
2622
|
external_type_display_name?: string | undefined;
|
|
2541
2623
|
acs_credential_pool_id?: string | undefined;
|
|
2542
2624
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2602,6 +2684,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2602
2684
|
card_id?: string | undefined;
|
|
2603
2685
|
credential_id?: string | undefined;
|
|
2604
2686
|
} | undefined;
|
|
2687
|
+
akiles_metadata?: {
|
|
2688
|
+
member_pin_id?: string | undefined;
|
|
2689
|
+
} | undefined;
|
|
2605
2690
|
assa_abloy_vostio_metadata?: {
|
|
2606
2691
|
key_id?: string | undefined;
|
|
2607
2692
|
endpoint_id?: string | undefined;
|
|
@@ -2615,7 +2700,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2615
2700
|
issued_at?: string | null | undefined;
|
|
2616
2701
|
is_issued?: boolean | undefined;
|
|
2617
2702
|
acs_user_id?: string | undefined;
|
|
2618
|
-
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;
|
|
2703
|
+
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;
|
|
2619
2704
|
external_type_display_name?: string | undefined;
|
|
2620
2705
|
acs_credential_pool_id?: string | undefined;
|
|
2621
2706
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2675,6 +2760,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2675
2760
|
card_id?: string | undefined;
|
|
2676
2761
|
credential_id?: string | undefined;
|
|
2677
2762
|
} | undefined;
|
|
2763
|
+
akiles_metadata?: {
|
|
2764
|
+
member_pin_id?: string | undefined;
|
|
2765
|
+
} | undefined;
|
|
2678
2766
|
assa_abloy_vostio_metadata?: {
|
|
2679
2767
|
key_id?: string | undefined;
|
|
2680
2768
|
endpoint_id?: string | undefined;
|
|
@@ -2688,7 +2776,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2688
2776
|
issued_at?: string | null | undefined;
|
|
2689
2777
|
is_issued?: boolean | undefined;
|
|
2690
2778
|
acs_user_id?: string | undefined;
|
|
2691
|
-
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;
|
|
2779
|
+
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;
|
|
2692
2780
|
external_type_display_name?: string | undefined;
|
|
2693
2781
|
acs_credential_pool_id?: string | undefined;
|
|
2694
2782
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -2910,7 +2998,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2910
2998
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
2911
2999
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2912
3000
|
access_method: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
2913
|
-
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"]>>;
|
|
3001
|
+
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"]>>;
|
|
2914
3002
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
2915
3003
|
created_at: z.ZodString;
|
|
2916
3004
|
workspace_id: z.ZodString;
|
|
@@ -3061,6 +3149,13 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3061
3149
|
key_issuing_request_id?: string | undefined;
|
|
3062
3150
|
door_names?: string[] | undefined;
|
|
3063
3151
|
}>>;
|
|
3152
|
+
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
3153
|
+
member_pin_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3154
|
+
}, "strip", z.ZodTypeAny, {
|
|
3155
|
+
member_pin_id?: string | undefined;
|
|
3156
|
+
}, {
|
|
3157
|
+
member_pin_id?: string | undefined;
|
|
3158
|
+
}>>;
|
|
3064
3159
|
} & {
|
|
3065
3160
|
is_managed: z.ZodLiteral<true>;
|
|
3066
3161
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3115,6 +3210,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3115
3210
|
card_id?: string | undefined;
|
|
3116
3211
|
credential_id?: string | undefined;
|
|
3117
3212
|
} | undefined;
|
|
3213
|
+
akiles_metadata?: {
|
|
3214
|
+
member_pin_id?: string | undefined;
|
|
3215
|
+
} | undefined;
|
|
3118
3216
|
assa_abloy_vostio_metadata?: {
|
|
3119
3217
|
key_id?: string | undefined;
|
|
3120
3218
|
endpoint_id?: string | undefined;
|
|
@@ -3128,7 +3226,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3128
3226
|
issued_at?: string | null | undefined;
|
|
3129
3227
|
is_issued?: boolean | undefined;
|
|
3130
3228
|
acs_user_id?: string | undefined;
|
|
3131
|
-
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;
|
|
3229
|
+
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;
|
|
3132
3230
|
external_type_display_name?: string | undefined;
|
|
3133
3231
|
acs_credential_pool_id?: string | undefined;
|
|
3134
3232
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -3188,6 +3286,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3188
3286
|
card_id?: string | undefined;
|
|
3189
3287
|
credential_id?: string | undefined;
|
|
3190
3288
|
} | undefined;
|
|
3289
|
+
akiles_metadata?: {
|
|
3290
|
+
member_pin_id?: string | undefined;
|
|
3291
|
+
} | undefined;
|
|
3191
3292
|
assa_abloy_vostio_metadata?: {
|
|
3192
3293
|
key_id?: string | undefined;
|
|
3193
3294
|
endpoint_id?: string | undefined;
|
|
@@ -3201,7 +3302,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3201
3302
|
issued_at?: string | null | undefined;
|
|
3202
3303
|
is_issued?: boolean | undefined;
|
|
3203
3304
|
acs_user_id?: string | undefined;
|
|
3204
|
-
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;
|
|
3305
|
+
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;
|
|
3205
3306
|
external_type_display_name?: string | undefined;
|
|
3206
3307
|
acs_credential_pool_id?: string | undefined;
|
|
3207
3308
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -3266,6 +3367,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3266
3367
|
card_id?: string | undefined;
|
|
3267
3368
|
credential_id?: string | undefined;
|
|
3268
3369
|
} | undefined;
|
|
3370
|
+
akiles_metadata?: {
|
|
3371
|
+
member_pin_id?: string | undefined;
|
|
3372
|
+
} | undefined;
|
|
3269
3373
|
assa_abloy_vostio_metadata?: {
|
|
3270
3374
|
key_id?: string | undefined;
|
|
3271
3375
|
endpoint_id?: string | undefined;
|
|
@@ -3279,7 +3383,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3279
3383
|
issued_at?: string | null | undefined;
|
|
3280
3384
|
is_issued?: boolean | undefined;
|
|
3281
3385
|
acs_user_id?: string | undefined;
|
|
3282
|
-
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;
|
|
3386
|
+
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;
|
|
3283
3387
|
external_type_display_name?: string | undefined;
|
|
3284
3388
|
acs_credential_pool_id?: string | undefined;
|
|
3285
3389
|
parent_acs_credential_id?: string | undefined;
|
|
@@ -3345,6 +3449,9 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3345
3449
|
card_id?: string | undefined;
|
|
3346
3450
|
credential_id?: string | undefined;
|
|
3347
3451
|
} | undefined;
|
|
3452
|
+
akiles_metadata?: {
|
|
3453
|
+
member_pin_id?: string | undefined;
|
|
3454
|
+
} | undefined;
|
|
3348
3455
|
assa_abloy_vostio_metadata?: {
|
|
3349
3456
|
key_id?: string | undefined;
|
|
3350
3457
|
endpoint_id?: string | undefined;
|
|
@@ -3358,7 +3465,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
3358
3465
|
issued_at?: string | null | undefined;
|
|
3359
3466
|
is_issued?: boolean | undefined;
|
|
3360
3467
|
acs_user_id?: string | undefined;
|
|
3361
|
-
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;
|
|
3468
|
+
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;
|
|
3362
3469
|
external_type_display_name?: string | undefined;
|
|
3363
3470
|
acs_credential_pool_id?: string | undefined;
|
|
3364
3471
|
parent_acs_credential_id?: string | undefined;
|