@seamapi/types 1.334.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 +24 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +124 -124
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +2 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/openapi.js +14 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +94 -94
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +188 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>;
|
|
2
|
+
export declare const acs_credential_external_type: 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"]>;
|
|
3
3
|
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4
4
|
export type AcsCredentialExternalType = z.infer<typeof acs_credential_external_type>;
|
|
5
5
|
export declare const unknown_issue_with_acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -178,7 +178,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
178
178
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
179
179
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
180
180
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
181
|
-
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"]>>;
|
|
181
|
+
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"]>>;
|
|
182
182
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
183
183
|
created_at: z.ZodString;
|
|
184
184
|
workspace_id: z.ZodString;
|
|
@@ -383,7 +383,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
383
383
|
door_names?: string[] | undefined;
|
|
384
384
|
} | undefined;
|
|
385
385
|
is_one_time_use?: boolean | undefined;
|
|
386
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
386
|
+
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;
|
|
387
387
|
external_type_display_name?: string | undefined;
|
|
388
388
|
acs_user_id?: string | undefined;
|
|
389
389
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -452,7 +452,7 @@ export declare const acs_credential: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
452
452
|
door_names?: string[] | undefined;
|
|
453
453
|
} | undefined;
|
|
454
454
|
is_one_time_use?: boolean | undefined;
|
|
455
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
455
|
+
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;
|
|
456
456
|
external_type_display_name?: string | undefined;
|
|
457
457
|
acs_user_id?: string | undefined;
|
|
458
458
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -477,7 +477,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
477
477
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
478
478
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
479
479
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
480
|
-
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"]>>;
|
|
480
|
+
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"]>>;
|
|
481
481
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
482
482
|
created_at: z.ZodString;
|
|
483
483
|
workspace_id: z.ZodString;
|
|
@@ -682,7 +682,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
682
682
|
door_names?: string[] | undefined;
|
|
683
683
|
} | undefined;
|
|
684
684
|
is_one_time_use?: boolean | undefined;
|
|
685
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
685
|
+
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;
|
|
686
686
|
external_type_display_name?: string | undefined;
|
|
687
687
|
acs_user_id?: string | undefined;
|
|
688
688
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -751,7 +751,7 @@ export declare const unmanaged_acs_credential: z.ZodObject<z.objectUtil.extendSh
|
|
|
751
751
|
door_names?: string[] | undefined;
|
|
752
752
|
} | undefined;
|
|
753
753
|
is_one_time_use?: boolean | undefined;
|
|
754
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
754
|
+
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;
|
|
755
755
|
external_type_display_name?: string | undefined;
|
|
756
756
|
acs_user_id?: string | undefined;
|
|
757
757
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -9,6 +9,8 @@ export const acs_credential_external_type = z.enum([
|
|
|
9
9
|
'salto_ks_credential',
|
|
10
10
|
'assa_abloy_vostio_card',
|
|
11
11
|
'assa_abloy_vostio_mobile_key',
|
|
12
|
+
'salto_space_card',
|
|
13
|
+
'salto_space_mobile_key',
|
|
12
14
|
]);
|
|
13
15
|
export const acs_credential_access_method_type = z.enum([
|
|
14
16
|
'code',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,kCAAkC,EAClC,8BAA8B,GAC/B,MAAM,qBAAqB,CAAA;AAE5B,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;IACjB,qBAAqB;IACrB,wBAAwB;IACxB,8BAA8B;
|
|
1
|
+
{"version":3,"file":"acs-credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-credential.ts"],"names":[],"mappings":"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"}
|
|
@@ -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;
|
|
@@ -490,7 +490,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
490
490
|
door_names?: string[] | undefined;
|
|
491
491
|
} | undefined;
|
|
492
492
|
is_one_time_use?: boolean | undefined;
|
|
493
|
-
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;
|
|
494
494
|
external_type_display_name?: string | undefined;
|
|
495
495
|
acs_user_id?: string | undefined;
|
|
496
496
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -559,7 +559,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
559
559
|
door_names?: string[] | undefined;
|
|
560
560
|
} | undefined;
|
|
561
561
|
is_one_time_use?: boolean | undefined;
|
|
562
|
-
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;
|
|
563
563
|
external_type_display_name?: string | undefined;
|
|
564
564
|
acs_user_id?: string | undefined;
|
|
565
565
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -583,7 +583,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
583
583
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
584
584
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
585
585
|
access_method: z.ZodEnum<["code", "card", "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"]>>;
|
|
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"]>>;
|
|
587
587
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
588
588
|
created_at: z.ZodString;
|
|
589
589
|
workspace_id: z.ZodString;
|
|
@@ -788,7 +788,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
788
788
|
door_names?: string[] | undefined;
|
|
789
789
|
} | undefined;
|
|
790
790
|
is_one_time_use?: boolean | undefined;
|
|
791
|
-
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;
|
|
792
792
|
external_type_display_name?: string | undefined;
|
|
793
793
|
acs_user_id?: string | undefined;
|
|
794
794
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -857,7 +857,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
857
857
|
door_names?: string[] | undefined;
|
|
858
858
|
} | undefined;
|
|
859
859
|
is_one_time_use?: boolean | undefined;
|
|
860
|
-
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;
|
|
861
861
|
external_type_display_name?: string | undefined;
|
|
862
862
|
acs_user_id?: string | undefined;
|
|
863
863
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -963,7 +963,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
963
963
|
door_names?: string[] | undefined;
|
|
964
964
|
} | undefined;
|
|
965
965
|
is_one_time_use?: boolean | undefined;
|
|
966
|
-
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;
|
|
967
967
|
external_type_display_name?: string | undefined;
|
|
968
968
|
acs_user_id?: string | undefined;
|
|
969
969
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1032,7 +1032,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1032
1032
|
door_names?: string[] | undefined;
|
|
1033
1033
|
} | undefined;
|
|
1034
1034
|
is_one_time_use?: boolean | undefined;
|
|
1035
|
-
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;
|
|
1036
1036
|
external_type_display_name?: string | undefined;
|
|
1037
1037
|
acs_user_id?: string | undefined;
|
|
1038
1038
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1128,7 +1128,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1128
1128
|
door_names?: string[] | undefined;
|
|
1129
1129
|
} | undefined;
|
|
1130
1130
|
is_one_time_use?: boolean | undefined;
|
|
1131
|
-
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;
|
|
1132
1132
|
external_type_display_name?: string | undefined;
|
|
1133
1133
|
acs_user_id?: string | undefined;
|
|
1134
1134
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1197,7 +1197,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1197
1197
|
door_names?: string[] | undefined;
|
|
1198
1198
|
} | undefined;
|
|
1199
1199
|
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;
|
|
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;
|
|
1201
1201
|
external_type_display_name?: string | undefined;
|
|
1202
1202
|
acs_user_id?: string | undefined;
|
|
1203
1203
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1298,7 +1298,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1298
1298
|
door_names?: string[] | undefined;
|
|
1299
1299
|
} | undefined;
|
|
1300
1300
|
is_one_time_use?: boolean | undefined;
|
|
1301
|
-
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;
|
|
1302
1302
|
external_type_display_name?: string | undefined;
|
|
1303
1303
|
acs_user_id?: string | undefined;
|
|
1304
1304
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1367,7 +1367,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1367
1367
|
door_names?: string[] | undefined;
|
|
1368
1368
|
} | undefined;
|
|
1369
1369
|
is_one_time_use?: boolean | undefined;
|
|
1370
|
-
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;
|
|
1371
1371
|
external_type_display_name?: string | undefined;
|
|
1372
1372
|
acs_user_id?: string | undefined;
|
|
1373
1373
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1469,7 +1469,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1469
1469
|
door_names?: string[] | undefined;
|
|
1470
1470
|
} | undefined;
|
|
1471
1471
|
is_one_time_use?: boolean | undefined;
|
|
1472
|
-
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;
|
|
1473
1473
|
external_type_display_name?: string | undefined;
|
|
1474
1474
|
acs_user_id?: string | undefined;
|
|
1475
1475
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1538,7 +1538,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1538
1538
|
door_names?: string[] | undefined;
|
|
1539
1539
|
} | undefined;
|
|
1540
1540
|
is_one_time_use?: boolean | undefined;
|
|
1541
|
-
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;
|
|
1542
1542
|
external_type_display_name?: string | undefined;
|
|
1543
1543
|
acs_user_id?: string | undefined;
|
|
1544
1544
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1660,7 +1660,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1660
1660
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1661
1661
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1662
1662
|
access_method: z.ZodEnum<["code", "card", "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"]>>;
|
|
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"]>>;
|
|
1664
1664
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1665
1665
|
created_at: z.ZodString;
|
|
1666
1666
|
workspace_id: z.ZodString;
|
|
@@ -1865,7 +1865,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1865
1865
|
door_names?: string[] | undefined;
|
|
1866
1866
|
} | undefined;
|
|
1867
1867
|
is_one_time_use?: boolean | undefined;
|
|
1868
|
-
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;
|
|
1869
1869
|
external_type_display_name?: string | undefined;
|
|
1870
1870
|
acs_user_id?: string | undefined;
|
|
1871
1871
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1934,7 +1934,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1934
1934
|
door_names?: string[] | undefined;
|
|
1935
1935
|
} | undefined;
|
|
1936
1936
|
is_one_time_use?: boolean | undefined;
|
|
1937
|
-
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;
|
|
1938
1938
|
external_type_display_name?: string | undefined;
|
|
1939
1939
|
acs_user_id?: string | undefined;
|
|
1940
1940
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1958,7 +1958,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
1958
1958
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
1959
1959
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1960
1960
|
access_method: z.ZodEnum<["code", "card", "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"]>>;
|
|
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"]>>;
|
|
1962
1962
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1963
1963
|
created_at: z.ZodString;
|
|
1964
1964
|
workspace_id: z.ZodString;
|
|
@@ -2163,7 +2163,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2163
2163
|
door_names?: string[] | undefined;
|
|
2164
2164
|
} | undefined;
|
|
2165
2165
|
is_one_time_use?: boolean | undefined;
|
|
2166
|
-
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;
|
|
2167
2167
|
external_type_display_name?: string | undefined;
|
|
2168
2168
|
acs_user_id?: string | undefined;
|
|
2169
2169
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2232,7 +2232,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2232
2232
|
door_names?: string[] | undefined;
|
|
2233
2233
|
} | undefined;
|
|
2234
2234
|
is_one_time_use?: boolean | undefined;
|
|
2235
|
-
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;
|
|
2236
2236
|
external_type_display_name?: string | undefined;
|
|
2237
2237
|
acs_user_id?: string | undefined;
|
|
2238
2238
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2306,7 +2306,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2306
2306
|
door_names?: string[] | undefined;
|
|
2307
2307
|
} | undefined;
|
|
2308
2308
|
is_one_time_use?: boolean | undefined;
|
|
2309
|
-
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;
|
|
2310
2310
|
external_type_display_name?: string | undefined;
|
|
2311
2311
|
acs_user_id?: string | undefined;
|
|
2312
2312
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2375,7 +2375,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2375
2375
|
door_names?: string[] | undefined;
|
|
2376
2376
|
} | undefined;
|
|
2377
2377
|
is_one_time_use?: boolean | undefined;
|
|
2378
|
-
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;
|
|
2379
2379
|
external_type_display_name?: string | undefined;
|
|
2380
2380
|
acs_user_id?: string | undefined;
|
|
2381
2381
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2450,7 +2450,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2450
2450
|
door_names?: string[] | undefined;
|
|
2451
2451
|
} | undefined;
|
|
2452
2452
|
is_one_time_use?: boolean | undefined;
|
|
2453
|
-
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;
|
|
2454
2454
|
external_type_display_name?: string | undefined;
|
|
2455
2455
|
acs_user_id?: string | undefined;
|
|
2456
2456
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -2519,7 +2519,7 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2519
2519
|
door_names?: string[] | undefined;
|
|
2520
2520
|
} | undefined;
|
|
2521
2521
|
is_one_time_use?: boolean | undefined;
|
|
2522
|
-
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;
|
|
2523
2523
|
external_type_display_name?: string | undefined;
|
|
2524
2524
|
acs_user_id?: string | undefined;
|
|
2525
2525
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41,7 +41,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
41
41
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
42
42
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
43
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
44
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
44
|
+
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"]>>;
|
|
45
45
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
46
46
|
created_at: z.ZodString;
|
|
47
47
|
workspace_id: z.ZodString;
|
|
@@ -246,7 +246,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
246
246
|
door_names?: string[] | undefined;
|
|
247
247
|
} | undefined;
|
|
248
248
|
is_one_time_use?: boolean | undefined;
|
|
249
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
249
|
+
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;
|
|
250
250
|
external_type_display_name?: string | undefined;
|
|
251
251
|
acs_user_id?: string | undefined;
|
|
252
252
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -315,7 +315,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
315
315
|
door_names?: string[] | undefined;
|
|
316
316
|
} | undefined;
|
|
317
317
|
is_one_time_use?: boolean | undefined;
|
|
318
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
318
|
+
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;
|
|
319
319
|
external_type_display_name?: string | undefined;
|
|
320
320
|
acs_user_id?: string | undefined;
|
|
321
321
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -339,7 +339,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
339
339
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
340
340
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
341
341
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
342
|
-
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"]>>;
|
|
342
|
+
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"]>>;
|
|
343
343
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
344
344
|
created_at: z.ZodString;
|
|
345
345
|
workspace_id: z.ZodString;
|
|
@@ -544,7 +544,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
544
544
|
door_names?: string[] | undefined;
|
|
545
545
|
} | undefined;
|
|
546
546
|
is_one_time_use?: boolean | undefined;
|
|
547
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
547
|
+
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;
|
|
548
548
|
external_type_display_name?: string | undefined;
|
|
549
549
|
acs_user_id?: string | undefined;
|
|
550
550
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -613,7 +613,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
613
613
|
door_names?: string[] | undefined;
|
|
614
614
|
} | undefined;
|
|
615
615
|
is_one_time_use?: boolean | undefined;
|
|
616
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
616
|
+
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;
|
|
617
617
|
external_type_display_name?: string | undefined;
|
|
618
618
|
acs_user_id?: string | undefined;
|
|
619
619
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -687,7 +687,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
687
687
|
door_names?: string[] | undefined;
|
|
688
688
|
} | undefined;
|
|
689
689
|
is_one_time_use?: boolean | undefined;
|
|
690
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
690
|
+
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;
|
|
691
691
|
external_type_display_name?: string | undefined;
|
|
692
692
|
acs_user_id?: string | undefined;
|
|
693
693
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -756,7 +756,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
756
756
|
door_names?: string[] | undefined;
|
|
757
757
|
} | undefined;
|
|
758
758
|
is_one_time_use?: boolean | undefined;
|
|
759
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
759
|
+
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;
|
|
760
760
|
external_type_display_name?: string | undefined;
|
|
761
761
|
acs_user_id?: string | undefined;
|
|
762
762
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -831,7 +831,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
831
831
|
door_names?: string[] | undefined;
|
|
832
832
|
} | undefined;
|
|
833
833
|
is_one_time_use?: boolean | undefined;
|
|
834
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
834
|
+
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;
|
|
835
835
|
external_type_display_name?: string | undefined;
|
|
836
836
|
acs_user_id?: string | undefined;
|
|
837
837
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -900,7 +900,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
900
900
|
door_names?: string[] | undefined;
|
|
901
901
|
} | undefined;
|
|
902
902
|
is_one_time_use?: boolean | undefined;
|
|
903
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
903
|
+
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;
|
|
904
904
|
external_type_display_name?: string | undefined;
|
|
905
905
|
acs_user_id?: string | undefined;
|
|
906
906
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -129,7 +129,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
129
129
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
130
130
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
131
131
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
132
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_card", "assa_abloy_vostio_mobile_key"]>>;
|
|
132
|
+
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"]>>;
|
|
133
133
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
134
134
|
created_at: z.ZodString;
|
|
135
135
|
workspace_id: z.ZodString;
|
|
@@ -334,7 +334,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
334
334
|
door_names?: string[] | undefined;
|
|
335
335
|
} | undefined;
|
|
336
336
|
is_one_time_use?: boolean | undefined;
|
|
337
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
337
|
+
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;
|
|
338
338
|
external_type_display_name?: string | undefined;
|
|
339
339
|
acs_user_id?: string | undefined;
|
|
340
340
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -403,7 +403,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
403
403
|
door_names?: string[] | undefined;
|
|
404
404
|
} | undefined;
|
|
405
405
|
is_one_time_use?: boolean | undefined;
|
|
406
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
406
|
+
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;
|
|
407
407
|
external_type_display_name?: string | undefined;
|
|
408
408
|
acs_user_id?: string | undefined;
|
|
409
409
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -427,7 +427,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
427
427
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
428
428
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
429
429
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
430
|
-
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"]>>;
|
|
430
|
+
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"]>>;
|
|
431
431
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
432
432
|
created_at: z.ZodString;
|
|
433
433
|
workspace_id: z.ZodString;
|
|
@@ -632,7 +632,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
632
632
|
door_names?: string[] | undefined;
|
|
633
633
|
} | undefined;
|
|
634
634
|
is_one_time_use?: boolean | undefined;
|
|
635
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
635
|
+
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;
|
|
636
636
|
external_type_display_name?: string | undefined;
|
|
637
637
|
acs_user_id?: string | undefined;
|
|
638
638
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -701,7 +701,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
701
701
|
door_names?: string[] | undefined;
|
|
702
702
|
} | undefined;
|
|
703
703
|
is_one_time_use?: boolean | undefined;
|
|
704
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
704
|
+
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;
|
|
705
705
|
external_type_display_name?: string | undefined;
|
|
706
706
|
acs_user_id?: string | undefined;
|
|
707
707
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -807,7 +807,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
807
807
|
door_names?: string[] | undefined;
|
|
808
808
|
} | undefined;
|
|
809
809
|
is_one_time_use?: boolean | undefined;
|
|
810
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
810
|
+
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;
|
|
811
811
|
external_type_display_name?: string | undefined;
|
|
812
812
|
acs_user_id?: string | undefined;
|
|
813
813
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -876,7 +876,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
876
876
|
door_names?: string[] | undefined;
|
|
877
877
|
} | undefined;
|
|
878
878
|
is_one_time_use?: boolean | undefined;
|
|
879
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
879
|
+
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;
|
|
880
880
|
external_type_display_name?: string | undefined;
|
|
881
881
|
acs_user_id?: string | undefined;
|
|
882
882
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -972,7 +972,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
972
972
|
door_names?: string[] | undefined;
|
|
973
973
|
} | undefined;
|
|
974
974
|
is_one_time_use?: boolean | undefined;
|
|
975
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
975
|
+
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;
|
|
976
976
|
external_type_display_name?: string | undefined;
|
|
977
977
|
acs_user_id?: string | undefined;
|
|
978
978
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1041,7 +1041,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1041
1041
|
door_names?: string[] | undefined;
|
|
1042
1042
|
} | undefined;
|
|
1043
1043
|
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;
|
|
1044
|
+
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
1045
|
external_type_display_name?: string | undefined;
|
|
1046
1046
|
acs_user_id?: string | undefined;
|
|
1047
1047
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1142,7 +1142,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1142
1142
|
door_names?: string[] | undefined;
|
|
1143
1143
|
} | undefined;
|
|
1144
1144
|
is_one_time_use?: boolean | undefined;
|
|
1145
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1145
|
+
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;
|
|
1146
1146
|
external_type_display_name?: string | undefined;
|
|
1147
1147
|
acs_user_id?: string | undefined;
|
|
1148
1148
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1211,7 +1211,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1211
1211
|
door_names?: string[] | undefined;
|
|
1212
1212
|
} | undefined;
|
|
1213
1213
|
is_one_time_use?: boolean | undefined;
|
|
1214
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1214
|
+
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;
|
|
1215
1215
|
external_type_display_name?: string | undefined;
|
|
1216
1216
|
acs_user_id?: string | undefined;
|
|
1217
1217
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1313,7 +1313,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1313
1313
|
door_names?: string[] | undefined;
|
|
1314
1314
|
} | undefined;
|
|
1315
1315
|
is_one_time_use?: boolean | undefined;
|
|
1316
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1316
|
+
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;
|
|
1317
1317
|
external_type_display_name?: string | undefined;
|
|
1318
1318
|
acs_user_id?: string | undefined;
|
|
1319
1319
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1382,7 +1382,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1382
1382
|
door_names?: string[] | undefined;
|
|
1383
1383
|
} | undefined;
|
|
1384
1384
|
is_one_time_use?: boolean | undefined;
|
|
1385
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_card" | "assa_abloy_vostio_mobile_key" | undefined;
|
|
1385
|
+
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;
|
|
1386
1386
|
external_type_display_name?: string | undefined;
|
|
1387
1387
|
acs_user_id?: string | undefined;
|
|
1388
1388
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1027,6 +1027,8 @@ export default {
|
|
|
1027
1027
|
'salto_ks_credential',
|
|
1028
1028
|
'assa_abloy_vostio_card',
|
|
1029
1029
|
'assa_abloy_vostio_mobile_key',
|
|
1030
|
+
'salto_space_card',
|
|
1031
|
+
'salto_space_mobile_key',
|
|
1030
1032
|
],
|
|
1031
1033
|
type: 'string',
|
|
1032
1034
|
},
|
|
@@ -2416,6 +2418,8 @@ export default {
|
|
|
2416
2418
|
'salto_ks_credential',
|
|
2417
2419
|
'assa_abloy_vostio_card',
|
|
2418
2420
|
'assa_abloy_vostio_mobile_key',
|
|
2421
|
+
'salto_space_card',
|
|
2422
|
+
'salto_space_mobile_key',
|
|
2419
2423
|
],
|
|
2420
2424
|
type: 'string',
|
|
2421
2425
|
},
|
|
@@ -2751,6 +2755,8 @@ export default {
|
|
|
2751
2755
|
'salto_ks_credential',
|
|
2752
2756
|
'assa_abloy_vostio_card',
|
|
2753
2757
|
'assa_abloy_vostio_mobile_key',
|
|
2758
|
+
'salto_space_card',
|
|
2759
|
+
'salto_space_mobile_key',
|
|
2754
2760
|
],
|
|
2755
2761
|
type: 'string',
|
|
2756
2762
|
},
|
|
@@ -3217,6 +3223,8 @@ export default {
|
|
|
3217
3223
|
'salto_ks_credential',
|
|
3218
3224
|
'assa_abloy_vostio_card',
|
|
3219
3225
|
'assa_abloy_vostio_mobile_key',
|
|
3226
|
+
'salto_space_card',
|
|
3227
|
+
'salto_space_mobile_key',
|
|
3220
3228
|
],
|
|
3221
3229
|
type: 'string',
|
|
3222
3230
|
},
|
|
@@ -3550,6 +3558,8 @@ export default {
|
|
|
3550
3558
|
'salto_ks_credential',
|
|
3551
3559
|
'assa_abloy_vostio_card',
|
|
3552
3560
|
'assa_abloy_vostio_mobile_key',
|
|
3561
|
+
'salto_space_card',
|
|
3562
|
+
'salto_space_mobile_key',
|
|
3553
3563
|
],
|
|
3554
3564
|
type: 'string',
|
|
3555
3565
|
},
|
|
@@ -16078,6 +16088,8 @@ export default {
|
|
|
16078
16088
|
'salto_ks_credential',
|
|
16079
16089
|
'assa_abloy_vostio_card',
|
|
16080
16090
|
'assa_abloy_vostio_mobile_key',
|
|
16091
|
+
'salto_space_card',
|
|
16092
|
+
'salto_space_mobile_key',
|
|
16081
16093
|
],
|
|
16082
16094
|
type: 'string',
|
|
16083
16095
|
},
|
|
@@ -16508,6 +16520,8 @@ export default {
|
|
|
16508
16520
|
'salto_ks_credential',
|
|
16509
16521
|
'assa_abloy_vostio_card',
|
|
16510
16522
|
'assa_abloy_vostio_mobile_key',
|
|
16523
|
+
'salto_space_card',
|
|
16524
|
+
'salto_space_mobile_key',
|
|
16511
16525
|
],
|
|
16512
16526
|
type: 'string',
|
|
16513
16527
|
},
|