@seamapi/types 1.333.0 → 1.335.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +149 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1293 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +73 -7
- package/lib/seam/connect/models/acs/acs-credential.js +6 -1
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +20 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +7 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +240 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +104 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +136 -14
- package/lib/seam/connect/openapi.d.ts +135 -0
- package/lib/seam/connect/openapi.js +130 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +846 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +9 -1
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +136 -0
- package/src/lib/seam/connect/route-types.ts +1212 -0
|
@@ -285,7 +285,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
285
285
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
286
286
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
287
287
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
288
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
288
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
289
289
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
290
290
|
created_at: z.ZodString;
|
|
291
291
|
workspace_id: z.ZodString;
|
|
@@ -411,6 +411,25 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
411
411
|
card_id?: string | undefined;
|
|
412
412
|
credential_id?: string | undefined;
|
|
413
413
|
}>>;
|
|
414
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
415
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
416
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
417
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
418
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
419
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
420
|
+
}, "strip", z.ZodTypeAny, {
|
|
421
|
+
endpoint_id?: string | undefined;
|
|
422
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
423
|
+
key_id?: string | undefined;
|
|
424
|
+
key_issuing_request_id?: string | undefined;
|
|
425
|
+
door_names?: string[] | undefined;
|
|
426
|
+
}, {
|
|
427
|
+
endpoint_id?: string | undefined;
|
|
428
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
429
|
+
key_id?: string | undefined;
|
|
430
|
+
key_issuing_request_id?: string | undefined;
|
|
431
|
+
door_names?: string[] | undefined;
|
|
432
|
+
}>>;
|
|
414
433
|
}, {
|
|
415
434
|
is_managed: z.ZodLiteral<true>;
|
|
416
435
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -463,8 +482,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
463
482
|
card_id?: string | undefined;
|
|
464
483
|
credential_id?: string | undefined;
|
|
465
484
|
} | undefined;
|
|
485
|
+
assa_abloy_vostio_metadata?: {
|
|
486
|
+
endpoint_id?: string | undefined;
|
|
487
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
488
|
+
key_id?: string | undefined;
|
|
489
|
+
key_issuing_request_id?: string | undefined;
|
|
490
|
+
door_names?: string[] | undefined;
|
|
491
|
+
} | undefined;
|
|
466
492
|
is_one_time_use?: boolean | undefined;
|
|
467
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
493
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
468
494
|
external_type_display_name?: string | undefined;
|
|
469
495
|
acs_user_id?: string | undefined;
|
|
470
496
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -525,8 +551,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
525
551
|
card_id?: string | undefined;
|
|
526
552
|
credential_id?: string | undefined;
|
|
527
553
|
} | undefined;
|
|
554
|
+
assa_abloy_vostio_metadata?: {
|
|
555
|
+
endpoint_id?: string | undefined;
|
|
556
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
557
|
+
key_id?: string | undefined;
|
|
558
|
+
key_issuing_request_id?: string | undefined;
|
|
559
|
+
door_names?: string[] | undefined;
|
|
560
|
+
} | undefined;
|
|
528
561
|
is_one_time_use?: boolean | undefined;
|
|
529
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
562
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
530
563
|
external_type_display_name?: string | undefined;
|
|
531
564
|
acs_user_id?: string | undefined;
|
|
532
565
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -550,7 +583,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
550
583
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
551
584
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
552
585
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
553
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
586
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
554
587
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
555
588
|
created_at: z.ZodString;
|
|
556
589
|
workspace_id: z.ZodString;
|
|
@@ -676,6 +709,25 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
676
709
|
card_id?: string | undefined;
|
|
677
710
|
credential_id?: string | undefined;
|
|
678
711
|
}>>;
|
|
712
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
713
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
714
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
715
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
716
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
717
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
718
|
+
}, "strip", z.ZodTypeAny, {
|
|
719
|
+
endpoint_id?: string | undefined;
|
|
720
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
721
|
+
key_id?: string | undefined;
|
|
722
|
+
key_issuing_request_id?: string | undefined;
|
|
723
|
+
door_names?: string[] | undefined;
|
|
724
|
+
}, {
|
|
725
|
+
endpoint_id?: string | undefined;
|
|
726
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
727
|
+
key_id?: string | undefined;
|
|
728
|
+
key_issuing_request_id?: string | undefined;
|
|
729
|
+
door_names?: string[] | undefined;
|
|
730
|
+
}>>;
|
|
679
731
|
}, {
|
|
680
732
|
is_managed: z.ZodLiteral<false>;
|
|
681
733
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -728,8 +780,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
728
780
|
card_id?: string | undefined;
|
|
729
781
|
credential_id?: string | undefined;
|
|
730
782
|
} | undefined;
|
|
783
|
+
assa_abloy_vostio_metadata?: {
|
|
784
|
+
endpoint_id?: string | undefined;
|
|
785
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
786
|
+
key_id?: string | undefined;
|
|
787
|
+
key_issuing_request_id?: string | undefined;
|
|
788
|
+
door_names?: string[] | undefined;
|
|
789
|
+
} | undefined;
|
|
731
790
|
is_one_time_use?: boolean | undefined;
|
|
732
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
791
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
733
792
|
external_type_display_name?: string | undefined;
|
|
734
793
|
acs_user_id?: string | undefined;
|
|
735
794
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -790,8 +849,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
790
849
|
card_id?: string | undefined;
|
|
791
850
|
credential_id?: string | undefined;
|
|
792
851
|
} | undefined;
|
|
852
|
+
assa_abloy_vostio_metadata?: {
|
|
853
|
+
endpoint_id?: string | undefined;
|
|
854
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
855
|
+
key_id?: string | undefined;
|
|
856
|
+
key_issuing_request_id?: string | undefined;
|
|
857
|
+
door_names?: string[] | undefined;
|
|
858
|
+
} | undefined;
|
|
793
859
|
is_one_time_use?: boolean | undefined;
|
|
794
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
860
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
795
861
|
external_type_display_name?: string | undefined;
|
|
796
862
|
acs_user_id?: string | undefined;
|
|
797
863
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -889,8 +955,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
889
955
|
card_id?: string | undefined;
|
|
890
956
|
credential_id?: string | undefined;
|
|
891
957
|
} | undefined;
|
|
958
|
+
assa_abloy_vostio_metadata?: {
|
|
959
|
+
endpoint_id?: string | undefined;
|
|
960
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
961
|
+
key_id?: string | undefined;
|
|
962
|
+
key_issuing_request_id?: string | undefined;
|
|
963
|
+
door_names?: string[] | undefined;
|
|
964
|
+
} | undefined;
|
|
892
965
|
is_one_time_use?: boolean | undefined;
|
|
893
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
966
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
894
967
|
external_type_display_name?: string | undefined;
|
|
895
968
|
acs_user_id?: string | undefined;
|
|
896
969
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -951,8 +1024,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
951
1024
|
card_id?: string | undefined;
|
|
952
1025
|
credential_id?: string | undefined;
|
|
953
1026
|
} | undefined;
|
|
1027
|
+
assa_abloy_vostio_metadata?: {
|
|
1028
|
+
endpoint_id?: string | undefined;
|
|
1029
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1030
|
+
key_id?: string | undefined;
|
|
1031
|
+
key_issuing_request_id?: string | undefined;
|
|
1032
|
+
door_names?: string[] | undefined;
|
|
1033
|
+
} | undefined;
|
|
954
1034
|
is_one_time_use?: boolean | undefined;
|
|
955
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1035
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
956
1036
|
external_type_display_name?: string | undefined;
|
|
957
1037
|
acs_user_id?: string | undefined;
|
|
958
1038
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1040,8 +1120,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1040
1120
|
card_id?: string | undefined;
|
|
1041
1121
|
credential_id?: string | undefined;
|
|
1042
1122
|
} | undefined;
|
|
1123
|
+
assa_abloy_vostio_metadata?: {
|
|
1124
|
+
endpoint_id?: string | undefined;
|
|
1125
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1126
|
+
key_id?: string | undefined;
|
|
1127
|
+
key_issuing_request_id?: string | undefined;
|
|
1128
|
+
door_names?: string[] | undefined;
|
|
1129
|
+
} | undefined;
|
|
1043
1130
|
is_one_time_use?: boolean | undefined;
|
|
1044
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1131
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1045
1132
|
external_type_display_name?: string | undefined;
|
|
1046
1133
|
acs_user_id?: string | undefined;
|
|
1047
1134
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1102,8 +1189,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1102
1189
|
card_id?: string | undefined;
|
|
1103
1190
|
credential_id?: string | undefined;
|
|
1104
1191
|
} | undefined;
|
|
1192
|
+
assa_abloy_vostio_metadata?: {
|
|
1193
|
+
endpoint_id?: string | undefined;
|
|
1194
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1195
|
+
key_id?: string | undefined;
|
|
1196
|
+
key_issuing_request_id?: string | undefined;
|
|
1197
|
+
door_names?: string[] | undefined;
|
|
1198
|
+
} | undefined;
|
|
1105
1199
|
is_one_time_use?: boolean | undefined;
|
|
1106
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1200
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1107
1201
|
external_type_display_name?: string | undefined;
|
|
1108
1202
|
acs_user_id?: string | undefined;
|
|
1109
1203
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1196,8 +1290,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1196
1290
|
card_id?: string | undefined;
|
|
1197
1291
|
credential_id?: string | undefined;
|
|
1198
1292
|
} | undefined;
|
|
1293
|
+
assa_abloy_vostio_metadata?: {
|
|
1294
|
+
endpoint_id?: string | undefined;
|
|
1295
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1296
|
+
key_id?: string | undefined;
|
|
1297
|
+
key_issuing_request_id?: string | undefined;
|
|
1298
|
+
door_names?: string[] | undefined;
|
|
1299
|
+
} | undefined;
|
|
1199
1300
|
is_one_time_use?: boolean | undefined;
|
|
1200
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1301
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1201
1302
|
external_type_display_name?: string | undefined;
|
|
1202
1303
|
acs_user_id?: string | undefined;
|
|
1203
1304
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1258,8 +1359,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1258
1359
|
card_id?: string | undefined;
|
|
1259
1360
|
credential_id?: string | undefined;
|
|
1260
1361
|
} | undefined;
|
|
1362
|
+
assa_abloy_vostio_metadata?: {
|
|
1363
|
+
endpoint_id?: string | undefined;
|
|
1364
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1365
|
+
key_id?: string | undefined;
|
|
1366
|
+
key_issuing_request_id?: string | undefined;
|
|
1367
|
+
door_names?: string[] | undefined;
|
|
1368
|
+
} | undefined;
|
|
1261
1369
|
is_one_time_use?: boolean | undefined;
|
|
1262
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1370
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1263
1371
|
external_type_display_name?: string | undefined;
|
|
1264
1372
|
acs_user_id?: string | undefined;
|
|
1265
1373
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1353,8 +1461,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1353
1461
|
card_id?: string | undefined;
|
|
1354
1462
|
credential_id?: string | undefined;
|
|
1355
1463
|
} | undefined;
|
|
1464
|
+
assa_abloy_vostio_metadata?: {
|
|
1465
|
+
endpoint_id?: string | undefined;
|
|
1466
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1467
|
+
key_id?: string | undefined;
|
|
1468
|
+
key_issuing_request_id?: string | undefined;
|
|
1469
|
+
door_names?: string[] | undefined;
|
|
1470
|
+
} | undefined;
|
|
1356
1471
|
is_one_time_use?: boolean | undefined;
|
|
1357
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1472
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1358
1473
|
external_type_display_name?: string | undefined;
|
|
1359
1474
|
acs_user_id?: string | undefined;
|
|
1360
1475
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1415,8 +1530,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1415
1530
|
card_id?: string | undefined;
|
|
1416
1531
|
credential_id?: string | undefined;
|
|
1417
1532
|
} | undefined;
|
|
1533
|
+
assa_abloy_vostio_metadata?: {
|
|
1534
|
+
endpoint_id?: string | undefined;
|
|
1535
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1536
|
+
key_id?: string | undefined;
|
|
1537
|
+
key_issuing_request_id?: string | undefined;
|
|
1538
|
+
door_names?: string[] | undefined;
|
|
1539
|
+
} | undefined;
|
|
1418
1540
|
is_one_time_use?: boolean | undefined;
|
|
1419
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1541
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1420
1542
|
external_type_display_name?: string | undefined;
|
|
1421
1543
|
acs_user_id?: string | undefined;
|
|
1422
1544
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1538,7 +1660,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1538
1660
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1539
1661
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1540
1662
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1541
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
1663
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
1542
1664
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1543
1665
|
created_at: z.ZodString;
|
|
1544
1666
|
workspace_id: z.ZodString;
|
|
@@ -1664,6 +1786,25 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1664
1786
|
card_id?: string | undefined;
|
|
1665
1787
|
credential_id?: string | undefined;
|
|
1666
1788
|
}>>;
|
|
1789
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
1790
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1791
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
1793
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1794
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
1795
|
+
}, "strip", z.ZodTypeAny, {
|
|
1796
|
+
endpoint_id?: string | undefined;
|
|
1797
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1798
|
+
key_id?: string | undefined;
|
|
1799
|
+
key_issuing_request_id?: string | undefined;
|
|
1800
|
+
door_names?: string[] | undefined;
|
|
1801
|
+
}, {
|
|
1802
|
+
endpoint_id?: string | undefined;
|
|
1803
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1804
|
+
key_id?: string | undefined;
|
|
1805
|
+
key_issuing_request_id?: string | undefined;
|
|
1806
|
+
door_names?: string[] | undefined;
|
|
1807
|
+
}>>;
|
|
1667
1808
|
}, {
|
|
1668
1809
|
is_managed: z.ZodLiteral<true>;
|
|
1669
1810
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1716,8 +1857,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1716
1857
|
card_id?: string | undefined;
|
|
1717
1858
|
credential_id?: string | undefined;
|
|
1718
1859
|
} | undefined;
|
|
1860
|
+
assa_abloy_vostio_metadata?: {
|
|
1861
|
+
endpoint_id?: string | undefined;
|
|
1862
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1863
|
+
key_id?: string | undefined;
|
|
1864
|
+
key_issuing_request_id?: string | undefined;
|
|
1865
|
+
door_names?: string[] | undefined;
|
|
1866
|
+
} | undefined;
|
|
1719
1867
|
is_one_time_use?: boolean | undefined;
|
|
1720
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1868
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1721
1869
|
external_type_display_name?: string | undefined;
|
|
1722
1870
|
acs_user_id?: string | undefined;
|
|
1723
1871
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1778,8 +1926,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1778
1926
|
card_id?: string | undefined;
|
|
1779
1927
|
credential_id?: string | undefined;
|
|
1780
1928
|
} | undefined;
|
|
1929
|
+
assa_abloy_vostio_metadata?: {
|
|
1930
|
+
endpoint_id?: string | undefined;
|
|
1931
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1932
|
+
key_id?: string | undefined;
|
|
1933
|
+
key_issuing_request_id?: string | undefined;
|
|
1934
|
+
door_names?: string[] | undefined;
|
|
1935
|
+
} | undefined;
|
|
1781
1936
|
is_one_time_use?: boolean | undefined;
|
|
1782
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1937
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1783
1938
|
external_type_display_name?: string | undefined;
|
|
1784
1939
|
acs_user_id?: string | undefined;
|
|
1785
1940
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1803,7 +1958,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1803
1958
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1804
1959
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1805
1960
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
1806
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
1961
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key", "salto_space_card", "salto_space_mobile_key"]>>;
|
|
1807
1962
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1808
1963
|
created_at: z.ZodString;
|
|
1809
1964
|
workspace_id: z.ZodString;
|
|
@@ -1929,6 +2084,25 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1929
2084
|
card_id?: string | undefined;
|
|
1930
2085
|
credential_id?: string | undefined;
|
|
1931
2086
|
}>>;
|
|
2087
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
2088
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2089
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
2090
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
2091
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2092
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
2093
|
+
}, "strip", z.ZodTypeAny, {
|
|
2094
|
+
endpoint_id?: string | undefined;
|
|
2095
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2096
|
+
key_id?: string | undefined;
|
|
2097
|
+
key_issuing_request_id?: string | undefined;
|
|
2098
|
+
door_names?: string[] | undefined;
|
|
2099
|
+
}, {
|
|
2100
|
+
endpoint_id?: string | undefined;
|
|
2101
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2102
|
+
key_id?: string | undefined;
|
|
2103
|
+
key_issuing_request_id?: string | undefined;
|
|
2104
|
+
door_names?: string[] | undefined;
|
|
2105
|
+
}>>;
|
|
1932
2106
|
}, {
|
|
1933
2107
|
is_managed: z.ZodLiteral<false>;
|
|
1934
2108
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1981,8 +2155,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1981
2155
|
card_id?: string | undefined;
|
|
1982
2156
|
credential_id?: string | undefined;
|
|
1983
2157
|
} | undefined;
|
|
2158
|
+
assa_abloy_vostio_metadata?: {
|
|
2159
|
+
endpoint_id?: string | undefined;
|
|
2160
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2161
|
+
key_id?: string | undefined;
|
|
2162
|
+
key_issuing_request_id?: string | undefined;
|
|
2163
|
+
door_names?: string[] | undefined;
|
|
2164
|
+
} | undefined;
|
|
1984
2165
|
is_one_time_use?: boolean | undefined;
|
|
1985
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2166
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
1986
2167
|
external_type_display_name?: string | undefined;
|
|
1987
2168
|
acs_user_id?: string | undefined;
|
|
1988
2169
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2043,8 +2224,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2043
2224
|
card_id?: string | undefined;
|
|
2044
2225
|
credential_id?: string | undefined;
|
|
2045
2226
|
} | undefined;
|
|
2227
|
+
assa_abloy_vostio_metadata?: {
|
|
2228
|
+
endpoint_id?: string | undefined;
|
|
2229
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2230
|
+
key_id?: string | undefined;
|
|
2231
|
+
key_issuing_request_id?: string | undefined;
|
|
2232
|
+
door_names?: string[] | undefined;
|
|
2233
|
+
} | undefined;
|
|
2046
2234
|
is_one_time_use?: boolean | undefined;
|
|
2047
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2235
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2048
2236
|
external_type_display_name?: string | undefined;
|
|
2049
2237
|
acs_user_id?: string | undefined;
|
|
2050
2238
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2110,8 +2298,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2110
2298
|
card_id?: string | undefined;
|
|
2111
2299
|
credential_id?: string | undefined;
|
|
2112
2300
|
} | undefined;
|
|
2301
|
+
assa_abloy_vostio_metadata?: {
|
|
2302
|
+
endpoint_id?: string | undefined;
|
|
2303
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2304
|
+
key_id?: string | undefined;
|
|
2305
|
+
key_issuing_request_id?: string | undefined;
|
|
2306
|
+
door_names?: string[] | undefined;
|
|
2307
|
+
} | undefined;
|
|
2113
2308
|
is_one_time_use?: boolean | undefined;
|
|
2114
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2309
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2115
2310
|
external_type_display_name?: string | undefined;
|
|
2116
2311
|
acs_user_id?: string | undefined;
|
|
2117
2312
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2172,8 +2367,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2172
2367
|
card_id?: string | undefined;
|
|
2173
2368
|
credential_id?: string | undefined;
|
|
2174
2369
|
} | undefined;
|
|
2370
|
+
assa_abloy_vostio_metadata?: {
|
|
2371
|
+
endpoint_id?: string | undefined;
|
|
2372
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2373
|
+
key_id?: string | undefined;
|
|
2374
|
+
key_issuing_request_id?: string | undefined;
|
|
2375
|
+
door_names?: string[] | undefined;
|
|
2376
|
+
} | undefined;
|
|
2175
2377
|
is_one_time_use?: boolean | undefined;
|
|
2176
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2378
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2177
2379
|
external_type_display_name?: string | undefined;
|
|
2178
2380
|
acs_user_id?: string | undefined;
|
|
2179
2381
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2240,8 +2442,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2240
2442
|
card_id?: string | undefined;
|
|
2241
2443
|
credential_id?: string | undefined;
|
|
2242
2444
|
} | undefined;
|
|
2445
|
+
assa_abloy_vostio_metadata?: {
|
|
2446
|
+
endpoint_id?: string | undefined;
|
|
2447
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2448
|
+
key_id?: string | undefined;
|
|
2449
|
+
key_issuing_request_id?: string | undefined;
|
|
2450
|
+
door_names?: string[] | undefined;
|
|
2451
|
+
} | undefined;
|
|
2243
2452
|
is_one_time_use?: boolean | undefined;
|
|
2244
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2453
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2245
2454
|
external_type_display_name?: string | undefined;
|
|
2246
2455
|
acs_user_id?: string | undefined;
|
|
2247
2456
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2302,8 +2511,15 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2302
2511
|
card_id?: string | undefined;
|
|
2303
2512
|
credential_id?: string | undefined;
|
|
2304
2513
|
} | undefined;
|
|
2514
|
+
assa_abloy_vostio_metadata?: {
|
|
2515
|
+
endpoint_id?: string | undefined;
|
|
2516
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2517
|
+
key_id?: string | undefined;
|
|
2518
|
+
key_issuing_request_id?: string | undefined;
|
|
2519
|
+
door_names?: string[] | undefined;
|
|
2520
|
+
} | undefined;
|
|
2305
2521
|
is_one_time_use?: boolean | undefined;
|
|
2306
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
2522
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | "salto_space_card" | "salto_space_mobile_key" | undefined;
|
|
2307
2523
|
external_type_display_name?: string | undefined;
|
|
2308
2524
|
acs_user_id?: string | undefined;
|
|
2309
2525
|
acs_credential_pool_id?: string | undefined;
|