@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
|
@@ -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;
|
|
@@ -167,6 +167,25 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
167
167
|
card_id?: string | undefined;
|
|
168
168
|
credential_id?: string | undefined;
|
|
169
169
|
}>>;
|
|
170
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
171
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
172
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
173
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
174
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
175
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
176
|
+
}, "strip", z.ZodTypeAny, {
|
|
177
|
+
endpoint_id?: string | undefined;
|
|
178
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
179
|
+
key_id?: string | undefined;
|
|
180
|
+
key_issuing_request_id?: string | undefined;
|
|
181
|
+
door_names?: string[] | undefined;
|
|
182
|
+
}, {
|
|
183
|
+
endpoint_id?: string | undefined;
|
|
184
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
185
|
+
key_id?: string | undefined;
|
|
186
|
+
key_issuing_request_id?: string | undefined;
|
|
187
|
+
door_names?: string[] | undefined;
|
|
188
|
+
}>>;
|
|
170
189
|
}, {
|
|
171
190
|
is_managed: z.ZodLiteral<true>;
|
|
172
191
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -219,8 +238,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
219
238
|
card_id?: string | undefined;
|
|
220
239
|
credential_id?: string | undefined;
|
|
221
240
|
} | undefined;
|
|
241
|
+
assa_abloy_vostio_metadata?: {
|
|
242
|
+
endpoint_id?: string | undefined;
|
|
243
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
244
|
+
key_id?: string | undefined;
|
|
245
|
+
key_issuing_request_id?: string | undefined;
|
|
246
|
+
door_names?: string[] | undefined;
|
|
247
|
+
} | undefined;
|
|
222
248
|
is_one_time_use?: boolean | undefined;
|
|
223
|
-
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;
|
|
224
250
|
external_type_display_name?: string | undefined;
|
|
225
251
|
acs_user_id?: string | undefined;
|
|
226
252
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -281,8 +307,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
281
307
|
card_id?: string | undefined;
|
|
282
308
|
credential_id?: string | undefined;
|
|
283
309
|
} | undefined;
|
|
310
|
+
assa_abloy_vostio_metadata?: {
|
|
311
|
+
endpoint_id?: string | undefined;
|
|
312
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
313
|
+
key_id?: string | undefined;
|
|
314
|
+
key_issuing_request_id?: string | undefined;
|
|
315
|
+
door_names?: string[] | undefined;
|
|
316
|
+
} | undefined;
|
|
284
317
|
is_one_time_use?: boolean | undefined;
|
|
285
|
-
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;
|
|
286
319
|
external_type_display_name?: string | undefined;
|
|
287
320
|
acs_user_id?: string | undefined;
|
|
288
321
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -306,7 +339,7 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
306
339
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
307
340
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
308
341
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
309
|
-
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"]>>;
|
|
310
343
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
311
344
|
created_at: z.ZodString;
|
|
312
345
|
workspace_id: z.ZodString;
|
|
@@ -432,6 +465,25 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
432
465
|
card_id?: string | undefined;
|
|
433
466
|
credential_id?: string | undefined;
|
|
434
467
|
}>>;
|
|
468
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
469
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
470
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
471
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
472
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
473
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
474
|
+
}, "strip", z.ZodTypeAny, {
|
|
475
|
+
endpoint_id?: string | undefined;
|
|
476
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
477
|
+
key_id?: string | undefined;
|
|
478
|
+
key_issuing_request_id?: string | undefined;
|
|
479
|
+
door_names?: string[] | undefined;
|
|
480
|
+
}, {
|
|
481
|
+
endpoint_id?: string | undefined;
|
|
482
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
483
|
+
key_id?: string | undefined;
|
|
484
|
+
key_issuing_request_id?: string | undefined;
|
|
485
|
+
door_names?: string[] | undefined;
|
|
486
|
+
}>>;
|
|
435
487
|
}, {
|
|
436
488
|
is_managed: z.ZodLiteral<false>;
|
|
437
489
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -484,8 +536,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
484
536
|
card_id?: string | undefined;
|
|
485
537
|
credential_id?: string | undefined;
|
|
486
538
|
} | undefined;
|
|
539
|
+
assa_abloy_vostio_metadata?: {
|
|
540
|
+
endpoint_id?: string | undefined;
|
|
541
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
542
|
+
key_id?: string | undefined;
|
|
543
|
+
key_issuing_request_id?: string | undefined;
|
|
544
|
+
door_names?: string[] | undefined;
|
|
545
|
+
} | undefined;
|
|
487
546
|
is_one_time_use?: boolean | undefined;
|
|
488
|
-
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;
|
|
489
548
|
external_type_display_name?: string | undefined;
|
|
490
549
|
acs_user_id?: string | undefined;
|
|
491
550
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -546,8 +605,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
546
605
|
card_id?: string | undefined;
|
|
547
606
|
credential_id?: string | undefined;
|
|
548
607
|
} | undefined;
|
|
608
|
+
assa_abloy_vostio_metadata?: {
|
|
609
|
+
endpoint_id?: string | undefined;
|
|
610
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
611
|
+
key_id?: string | undefined;
|
|
612
|
+
key_issuing_request_id?: string | undefined;
|
|
613
|
+
door_names?: string[] | undefined;
|
|
614
|
+
} | undefined;
|
|
549
615
|
is_one_time_use?: boolean | undefined;
|
|
550
|
-
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;
|
|
551
617
|
external_type_display_name?: string | undefined;
|
|
552
618
|
acs_user_id?: string | undefined;
|
|
553
619
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -613,8 +679,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
613
679
|
card_id?: string | undefined;
|
|
614
680
|
credential_id?: string | undefined;
|
|
615
681
|
} | undefined;
|
|
682
|
+
assa_abloy_vostio_metadata?: {
|
|
683
|
+
endpoint_id?: string | undefined;
|
|
684
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
685
|
+
key_id?: string | undefined;
|
|
686
|
+
key_issuing_request_id?: string | undefined;
|
|
687
|
+
door_names?: string[] | undefined;
|
|
688
|
+
} | undefined;
|
|
616
689
|
is_one_time_use?: boolean | undefined;
|
|
617
|
-
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;
|
|
618
691
|
external_type_display_name?: string | undefined;
|
|
619
692
|
acs_user_id?: string | undefined;
|
|
620
693
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -675,8 +748,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
675
748
|
card_id?: string | undefined;
|
|
676
749
|
credential_id?: string | undefined;
|
|
677
750
|
} | undefined;
|
|
751
|
+
assa_abloy_vostio_metadata?: {
|
|
752
|
+
endpoint_id?: string | undefined;
|
|
753
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
754
|
+
key_id?: string | undefined;
|
|
755
|
+
key_issuing_request_id?: string | undefined;
|
|
756
|
+
door_names?: string[] | undefined;
|
|
757
|
+
} | undefined;
|
|
678
758
|
is_one_time_use?: boolean | undefined;
|
|
679
|
-
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;
|
|
680
760
|
external_type_display_name?: string | undefined;
|
|
681
761
|
acs_user_id?: string | undefined;
|
|
682
762
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -743,8 +823,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
743
823
|
card_id?: string | undefined;
|
|
744
824
|
credential_id?: string | undefined;
|
|
745
825
|
} | undefined;
|
|
826
|
+
assa_abloy_vostio_metadata?: {
|
|
827
|
+
endpoint_id?: string | undefined;
|
|
828
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
829
|
+
key_id?: string | undefined;
|
|
830
|
+
key_issuing_request_id?: string | undefined;
|
|
831
|
+
door_names?: string[] | undefined;
|
|
832
|
+
} | undefined;
|
|
746
833
|
is_one_time_use?: boolean | undefined;
|
|
747
|
-
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;
|
|
748
835
|
external_type_display_name?: string | undefined;
|
|
749
836
|
acs_user_id?: string | undefined;
|
|
750
837
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -805,8 +892,15 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
805
892
|
card_id?: string | undefined;
|
|
806
893
|
credential_id?: string | undefined;
|
|
807
894
|
} | undefined;
|
|
895
|
+
assa_abloy_vostio_metadata?: {
|
|
896
|
+
endpoint_id?: string | undefined;
|
|
897
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
898
|
+
key_id?: string | undefined;
|
|
899
|
+
key_issuing_request_id?: string | undefined;
|
|
900
|
+
door_names?: string[] | undefined;
|
|
901
|
+
} | undefined;
|
|
808
902
|
is_one_time_use?: boolean | undefined;
|
|
809
|
-
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;
|
|
810
904
|
external_type_display_name?: string | undefined;
|
|
811
905
|
acs_user_id?: string | undefined;
|
|
812
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;
|
|
@@ -255,6 +255,25 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
255
255
|
card_id?: string | undefined;
|
|
256
256
|
credential_id?: string | undefined;
|
|
257
257
|
}>>;
|
|
258
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
259
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
260
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
261
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
262
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
263
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
264
|
+
}, "strip", z.ZodTypeAny, {
|
|
265
|
+
endpoint_id?: string | undefined;
|
|
266
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
267
|
+
key_id?: string | undefined;
|
|
268
|
+
key_issuing_request_id?: string | undefined;
|
|
269
|
+
door_names?: string[] | undefined;
|
|
270
|
+
}, {
|
|
271
|
+
endpoint_id?: string | undefined;
|
|
272
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
273
|
+
key_id?: string | undefined;
|
|
274
|
+
key_issuing_request_id?: string | undefined;
|
|
275
|
+
door_names?: string[] | undefined;
|
|
276
|
+
}>>;
|
|
258
277
|
}, {
|
|
259
278
|
is_managed: z.ZodLiteral<true>;
|
|
260
279
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -307,8 +326,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
307
326
|
card_id?: string | undefined;
|
|
308
327
|
credential_id?: string | undefined;
|
|
309
328
|
} | undefined;
|
|
329
|
+
assa_abloy_vostio_metadata?: {
|
|
330
|
+
endpoint_id?: string | undefined;
|
|
331
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
332
|
+
key_id?: string | undefined;
|
|
333
|
+
key_issuing_request_id?: string | undefined;
|
|
334
|
+
door_names?: string[] | undefined;
|
|
335
|
+
} | undefined;
|
|
310
336
|
is_one_time_use?: boolean | undefined;
|
|
311
|
-
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;
|
|
312
338
|
external_type_display_name?: string | undefined;
|
|
313
339
|
acs_user_id?: string | undefined;
|
|
314
340
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -369,8 +395,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
369
395
|
card_id?: string | undefined;
|
|
370
396
|
credential_id?: string | undefined;
|
|
371
397
|
} | undefined;
|
|
398
|
+
assa_abloy_vostio_metadata?: {
|
|
399
|
+
endpoint_id?: string | undefined;
|
|
400
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
401
|
+
key_id?: string | undefined;
|
|
402
|
+
key_issuing_request_id?: string | undefined;
|
|
403
|
+
door_names?: string[] | undefined;
|
|
404
|
+
} | undefined;
|
|
372
405
|
is_one_time_use?: boolean | undefined;
|
|
373
|
-
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;
|
|
374
407
|
external_type_display_name?: string | undefined;
|
|
375
408
|
acs_user_id?: string | undefined;
|
|
376
409
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -394,7 +427,7 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
394
427
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
395
428
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
396
429
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
397
|
-
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"]>>;
|
|
398
431
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
399
432
|
created_at: z.ZodString;
|
|
400
433
|
workspace_id: z.ZodString;
|
|
@@ -520,6 +553,25 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
520
553
|
card_id?: string | undefined;
|
|
521
554
|
credential_id?: string | undefined;
|
|
522
555
|
}>>;
|
|
556
|
+
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
557
|
+
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
558
|
+
key_id: z.ZodOptional<z.ZodString>;
|
|
559
|
+
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
560
|
+
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
561
|
+
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
562
|
+
}, "strip", z.ZodTypeAny, {
|
|
563
|
+
endpoint_id?: string | undefined;
|
|
564
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
565
|
+
key_id?: string | undefined;
|
|
566
|
+
key_issuing_request_id?: string | undefined;
|
|
567
|
+
door_names?: string[] | undefined;
|
|
568
|
+
}, {
|
|
569
|
+
endpoint_id?: string | undefined;
|
|
570
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
571
|
+
key_id?: string | undefined;
|
|
572
|
+
key_issuing_request_id?: string | undefined;
|
|
573
|
+
door_names?: string[] | undefined;
|
|
574
|
+
}>>;
|
|
523
575
|
}, {
|
|
524
576
|
is_managed: z.ZodLiteral<false>;
|
|
525
577
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -572,8 +624,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
572
624
|
card_id?: string | undefined;
|
|
573
625
|
credential_id?: string | undefined;
|
|
574
626
|
} | undefined;
|
|
627
|
+
assa_abloy_vostio_metadata?: {
|
|
628
|
+
endpoint_id?: string | undefined;
|
|
629
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
630
|
+
key_id?: string | undefined;
|
|
631
|
+
key_issuing_request_id?: string | undefined;
|
|
632
|
+
door_names?: string[] | undefined;
|
|
633
|
+
} | undefined;
|
|
575
634
|
is_one_time_use?: boolean | undefined;
|
|
576
|
-
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;
|
|
577
636
|
external_type_display_name?: string | undefined;
|
|
578
637
|
acs_user_id?: string | undefined;
|
|
579
638
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -634,8 +693,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
634
693
|
card_id?: string | undefined;
|
|
635
694
|
credential_id?: string | undefined;
|
|
636
695
|
} | undefined;
|
|
696
|
+
assa_abloy_vostio_metadata?: {
|
|
697
|
+
endpoint_id?: string | undefined;
|
|
698
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
699
|
+
key_id?: string | undefined;
|
|
700
|
+
key_issuing_request_id?: string | undefined;
|
|
701
|
+
door_names?: string[] | undefined;
|
|
702
|
+
} | undefined;
|
|
637
703
|
is_one_time_use?: boolean | undefined;
|
|
638
|
-
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;
|
|
639
705
|
external_type_display_name?: string | undefined;
|
|
640
706
|
acs_user_id?: string | undefined;
|
|
641
707
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -733,8 +799,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
733
799
|
card_id?: string | undefined;
|
|
734
800
|
credential_id?: string | undefined;
|
|
735
801
|
} | undefined;
|
|
802
|
+
assa_abloy_vostio_metadata?: {
|
|
803
|
+
endpoint_id?: string | undefined;
|
|
804
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
805
|
+
key_id?: string | undefined;
|
|
806
|
+
key_issuing_request_id?: string | undefined;
|
|
807
|
+
door_names?: string[] | undefined;
|
|
808
|
+
} | undefined;
|
|
736
809
|
is_one_time_use?: boolean | undefined;
|
|
737
|
-
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;
|
|
738
811
|
external_type_display_name?: string | undefined;
|
|
739
812
|
acs_user_id?: string | undefined;
|
|
740
813
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -795,8 +868,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
795
868
|
card_id?: string | undefined;
|
|
796
869
|
credential_id?: string | undefined;
|
|
797
870
|
} | undefined;
|
|
871
|
+
assa_abloy_vostio_metadata?: {
|
|
872
|
+
endpoint_id?: string | undefined;
|
|
873
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
874
|
+
key_id?: string | undefined;
|
|
875
|
+
key_issuing_request_id?: string | undefined;
|
|
876
|
+
door_names?: string[] | undefined;
|
|
877
|
+
} | undefined;
|
|
798
878
|
is_one_time_use?: boolean | undefined;
|
|
799
|
-
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;
|
|
800
880
|
external_type_display_name?: string | undefined;
|
|
801
881
|
acs_user_id?: string | undefined;
|
|
802
882
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -884,8 +964,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
884
964
|
card_id?: string | undefined;
|
|
885
965
|
credential_id?: string | undefined;
|
|
886
966
|
} | undefined;
|
|
967
|
+
assa_abloy_vostio_metadata?: {
|
|
968
|
+
endpoint_id?: string | undefined;
|
|
969
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
970
|
+
key_id?: string | undefined;
|
|
971
|
+
key_issuing_request_id?: string | undefined;
|
|
972
|
+
door_names?: string[] | undefined;
|
|
973
|
+
} | undefined;
|
|
887
974
|
is_one_time_use?: boolean | undefined;
|
|
888
|
-
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;
|
|
889
976
|
external_type_display_name?: string | undefined;
|
|
890
977
|
acs_user_id?: string | undefined;
|
|
891
978
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -946,8 +1033,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
946
1033
|
card_id?: string | undefined;
|
|
947
1034
|
credential_id?: string | undefined;
|
|
948
1035
|
} | undefined;
|
|
1036
|
+
assa_abloy_vostio_metadata?: {
|
|
1037
|
+
endpoint_id?: string | undefined;
|
|
1038
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1039
|
+
key_id?: string | undefined;
|
|
1040
|
+
key_issuing_request_id?: string | undefined;
|
|
1041
|
+
door_names?: string[] | undefined;
|
|
1042
|
+
} | undefined;
|
|
949
1043
|
is_one_time_use?: boolean | undefined;
|
|
950
|
-
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;
|
|
951
1045
|
external_type_display_name?: string | undefined;
|
|
952
1046
|
acs_user_id?: string | undefined;
|
|
953
1047
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1040,8 +1134,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1040
1134
|
card_id?: string | undefined;
|
|
1041
1135
|
credential_id?: string | undefined;
|
|
1042
1136
|
} | undefined;
|
|
1137
|
+
assa_abloy_vostio_metadata?: {
|
|
1138
|
+
endpoint_id?: string | undefined;
|
|
1139
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1140
|
+
key_id?: string | undefined;
|
|
1141
|
+
key_issuing_request_id?: string | undefined;
|
|
1142
|
+
door_names?: string[] | undefined;
|
|
1143
|
+
} | undefined;
|
|
1043
1144
|
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;
|
|
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;
|
|
1045
1146
|
external_type_display_name?: string | undefined;
|
|
1046
1147
|
acs_user_id?: string | undefined;
|
|
1047
1148
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1102,8 +1203,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1102
1203
|
card_id?: string | undefined;
|
|
1103
1204
|
credential_id?: string | undefined;
|
|
1104
1205
|
} | undefined;
|
|
1206
|
+
assa_abloy_vostio_metadata?: {
|
|
1207
|
+
endpoint_id?: string | undefined;
|
|
1208
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1209
|
+
key_id?: string | undefined;
|
|
1210
|
+
key_issuing_request_id?: string | undefined;
|
|
1211
|
+
door_names?: string[] | undefined;
|
|
1212
|
+
} | undefined;
|
|
1105
1213
|
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;
|
|
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;
|
|
1107
1215
|
external_type_display_name?: string | undefined;
|
|
1108
1216
|
acs_user_id?: string | undefined;
|
|
1109
1217
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1197,8 +1305,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1197
1305
|
card_id?: string | undefined;
|
|
1198
1306
|
credential_id?: string | undefined;
|
|
1199
1307
|
} | undefined;
|
|
1308
|
+
assa_abloy_vostio_metadata?: {
|
|
1309
|
+
endpoint_id?: string | undefined;
|
|
1310
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1311
|
+
key_id?: string | undefined;
|
|
1312
|
+
key_issuing_request_id?: string | undefined;
|
|
1313
|
+
door_names?: string[] | undefined;
|
|
1314
|
+
} | undefined;
|
|
1200
1315
|
is_one_time_use?: boolean | undefined;
|
|
1201
|
-
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;
|
|
1202
1317
|
external_type_display_name?: string | undefined;
|
|
1203
1318
|
acs_user_id?: string | undefined;
|
|
1204
1319
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -1259,8 +1374,15 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1259
1374
|
card_id?: string | undefined;
|
|
1260
1375
|
credential_id?: string | undefined;
|
|
1261
1376
|
} | undefined;
|
|
1377
|
+
assa_abloy_vostio_metadata?: {
|
|
1378
|
+
endpoint_id?: string | undefined;
|
|
1379
|
+
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1380
|
+
key_id?: string | undefined;
|
|
1381
|
+
key_issuing_request_id?: string | undefined;
|
|
1382
|
+
door_names?: string[] | undefined;
|
|
1383
|
+
} | undefined;
|
|
1262
1384
|
is_one_time_use?: boolean | undefined;
|
|
1263
|
-
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;
|
|
1264
1386
|
external_type_display_name?: string | undefined;
|
|
1265
1387
|
acs_user_id?: string | undefined;
|
|
1266
1388
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -301,6 +301,33 @@ declare const _default: {
|
|
|
301
301
|
format: string;
|
|
302
302
|
type: string;
|
|
303
303
|
};
|
|
304
|
+
assa_abloy_vostio_metadata: {
|
|
305
|
+
description: string;
|
|
306
|
+
properties: {
|
|
307
|
+
door_names: {
|
|
308
|
+
items: {
|
|
309
|
+
type: string;
|
|
310
|
+
};
|
|
311
|
+
type: string;
|
|
312
|
+
};
|
|
313
|
+
endpoint_id: {
|
|
314
|
+
type: string;
|
|
315
|
+
};
|
|
316
|
+
key_id: {
|
|
317
|
+
type: string;
|
|
318
|
+
};
|
|
319
|
+
key_issuing_request_id: {
|
|
320
|
+
type: string;
|
|
321
|
+
};
|
|
322
|
+
override_guest_acs_entrance_ids: {
|
|
323
|
+
items: {
|
|
324
|
+
type: string;
|
|
325
|
+
};
|
|
326
|
+
type: string;
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
type: string;
|
|
330
|
+
};
|
|
304
331
|
card_number: {
|
|
305
332
|
nullable: boolean;
|
|
306
333
|
type: string;
|
|
@@ -1356,6 +1383,33 @@ declare const _default: {
|
|
|
1356
1383
|
format: string;
|
|
1357
1384
|
type: string;
|
|
1358
1385
|
};
|
|
1386
|
+
assa_abloy_vostio_metadata: {
|
|
1387
|
+
description: string;
|
|
1388
|
+
properties: {
|
|
1389
|
+
door_names: {
|
|
1390
|
+
items: {
|
|
1391
|
+
type: string;
|
|
1392
|
+
};
|
|
1393
|
+
type: string;
|
|
1394
|
+
};
|
|
1395
|
+
endpoint_id: {
|
|
1396
|
+
type: string;
|
|
1397
|
+
};
|
|
1398
|
+
key_id: {
|
|
1399
|
+
type: string;
|
|
1400
|
+
};
|
|
1401
|
+
key_issuing_request_id: {
|
|
1402
|
+
type: string;
|
|
1403
|
+
};
|
|
1404
|
+
override_guest_acs_entrance_ids: {
|
|
1405
|
+
items: {
|
|
1406
|
+
type: string;
|
|
1407
|
+
};
|
|
1408
|
+
type: string;
|
|
1409
|
+
};
|
|
1410
|
+
};
|
|
1411
|
+
type: string;
|
|
1412
|
+
};
|
|
1359
1413
|
card_number: {
|
|
1360
1414
|
nullable: boolean;
|
|
1361
1415
|
type: string;
|
|
@@ -1654,6 +1708,33 @@ declare const _default: {
|
|
|
1654
1708
|
format: string;
|
|
1655
1709
|
type: string;
|
|
1656
1710
|
};
|
|
1711
|
+
assa_abloy_vostio_metadata: {
|
|
1712
|
+
description: string;
|
|
1713
|
+
properties: {
|
|
1714
|
+
door_names: {
|
|
1715
|
+
items: {
|
|
1716
|
+
type: string;
|
|
1717
|
+
};
|
|
1718
|
+
type: string;
|
|
1719
|
+
};
|
|
1720
|
+
endpoint_id: {
|
|
1721
|
+
type: string;
|
|
1722
|
+
};
|
|
1723
|
+
key_id: {
|
|
1724
|
+
type: string;
|
|
1725
|
+
};
|
|
1726
|
+
key_issuing_request_id: {
|
|
1727
|
+
type: string;
|
|
1728
|
+
};
|
|
1729
|
+
override_guest_acs_entrance_ids: {
|
|
1730
|
+
items: {
|
|
1731
|
+
type: string;
|
|
1732
|
+
};
|
|
1733
|
+
type: string;
|
|
1734
|
+
};
|
|
1735
|
+
};
|
|
1736
|
+
type: string;
|
|
1737
|
+
};
|
|
1657
1738
|
card_number: {
|
|
1658
1739
|
nullable: boolean;
|
|
1659
1740
|
type: string;
|
|
@@ -11413,6 +11494,33 @@ declare const _default: {
|
|
|
11413
11494
|
format: string;
|
|
11414
11495
|
type: string;
|
|
11415
11496
|
};
|
|
11497
|
+
assa_abloy_vostio_metadata: {
|
|
11498
|
+
description: string;
|
|
11499
|
+
properties: {
|
|
11500
|
+
door_names: {
|
|
11501
|
+
items: {
|
|
11502
|
+
type: string;
|
|
11503
|
+
};
|
|
11504
|
+
type: string;
|
|
11505
|
+
};
|
|
11506
|
+
endpoint_id: {
|
|
11507
|
+
type: string;
|
|
11508
|
+
};
|
|
11509
|
+
key_id: {
|
|
11510
|
+
type: string;
|
|
11511
|
+
};
|
|
11512
|
+
key_issuing_request_id: {
|
|
11513
|
+
type: string;
|
|
11514
|
+
};
|
|
11515
|
+
override_guest_acs_entrance_ids: {
|
|
11516
|
+
items: {
|
|
11517
|
+
type: string;
|
|
11518
|
+
};
|
|
11519
|
+
type: string;
|
|
11520
|
+
};
|
|
11521
|
+
};
|
|
11522
|
+
type: string;
|
|
11523
|
+
};
|
|
11416
11524
|
card_number: {
|
|
11417
11525
|
nullable: boolean;
|
|
11418
11526
|
type: string;
|
|
@@ -11722,6 +11830,33 @@ declare const _default: {
|
|
|
11722
11830
|
format: string;
|
|
11723
11831
|
type: string;
|
|
11724
11832
|
};
|
|
11833
|
+
assa_abloy_vostio_metadata: {
|
|
11834
|
+
description: string;
|
|
11835
|
+
properties: {
|
|
11836
|
+
door_names: {
|
|
11837
|
+
items: {
|
|
11838
|
+
type: string;
|
|
11839
|
+
};
|
|
11840
|
+
type: string;
|
|
11841
|
+
};
|
|
11842
|
+
endpoint_id: {
|
|
11843
|
+
type: string;
|
|
11844
|
+
};
|
|
11845
|
+
key_id: {
|
|
11846
|
+
type: string;
|
|
11847
|
+
};
|
|
11848
|
+
key_issuing_request_id: {
|
|
11849
|
+
type: string;
|
|
11850
|
+
};
|
|
11851
|
+
override_guest_acs_entrance_ids: {
|
|
11852
|
+
items: {
|
|
11853
|
+
type: string;
|
|
11854
|
+
};
|
|
11855
|
+
type: string;
|
|
11856
|
+
};
|
|
11857
|
+
};
|
|
11858
|
+
type: string;
|
|
11859
|
+
};
|
|
11725
11860
|
card_number: {
|
|
11726
11861
|
nullable: boolean;
|
|
11727
11862
|
type: string;
|