@seamapi/types 1.391.0 → 1.392.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 +8 -47
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +212 -166
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -58
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -11
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -21
- package/lib/seam/connect/models/acs/acs-credential.d.ts +18 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js +1 -0
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +60 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +26 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +34 -16
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +7 -42
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +119 -75
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -12
- package/src/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +7 -48
- package/src/lib/seam/connect/route-types.ts +119 -72
|
@@ -150,24 +150,25 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
150
150
|
credential_id: z.ZodOptional<z.ZodString>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
152
|
card_function_type: "guest" | "staff";
|
|
153
|
+
auto_join?: boolean | undefined;
|
|
153
154
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
154
155
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
155
156
|
common_acs_entrance_ids?: string[] | undefined;
|
|
156
157
|
is_valid?: boolean | undefined;
|
|
157
|
-
auto_join?: boolean | undefined;
|
|
158
158
|
card_id?: string | undefined;
|
|
159
159
|
credential_id?: string | undefined;
|
|
160
160
|
}, {
|
|
161
161
|
card_function_type: "guest" | "staff";
|
|
162
|
+
auto_join?: boolean | undefined;
|
|
162
163
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
163
164
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
164
165
|
common_acs_entrance_ids?: string[] | undefined;
|
|
165
166
|
is_valid?: boolean | undefined;
|
|
166
|
-
auto_join?: boolean | undefined;
|
|
167
167
|
card_id?: string | undefined;
|
|
168
168
|
credential_id?: string | undefined;
|
|
169
169
|
}>>;
|
|
170
170
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
171
|
+
auto_join: z.ZodOptional<z.ZodBoolean>;
|
|
171
172
|
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
172
173
|
key_id: z.ZodOptional<z.ZodString>;
|
|
173
174
|
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
@@ -175,12 +176,14 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
175
176
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
176
177
|
}, "strip", z.ZodTypeAny, {
|
|
177
178
|
endpoint_id?: string | undefined;
|
|
179
|
+
auto_join?: boolean | undefined;
|
|
178
180
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
179
181
|
key_id?: string | undefined;
|
|
180
182
|
key_issuing_request_id?: string | undefined;
|
|
181
183
|
door_names?: string[] | undefined;
|
|
182
184
|
}, {
|
|
183
185
|
endpoint_id?: string | undefined;
|
|
186
|
+
auto_join?: boolean | undefined;
|
|
184
187
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
185
188
|
key_id?: string | undefined;
|
|
186
189
|
key_issuing_request_id?: string | undefined;
|
|
@@ -230,16 +233,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
230
233
|
ends_at?: string | undefined;
|
|
231
234
|
visionline_metadata?: {
|
|
232
235
|
card_function_type: "guest" | "staff";
|
|
236
|
+
auto_join?: boolean | undefined;
|
|
233
237
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
234
238
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
235
239
|
common_acs_entrance_ids?: string[] | undefined;
|
|
236
240
|
is_valid?: boolean | undefined;
|
|
237
|
-
auto_join?: boolean | undefined;
|
|
238
241
|
card_id?: string | undefined;
|
|
239
242
|
credential_id?: string | undefined;
|
|
240
243
|
} | undefined;
|
|
241
244
|
assa_abloy_vostio_metadata?: {
|
|
242
245
|
endpoint_id?: string | undefined;
|
|
246
|
+
auto_join?: boolean | undefined;
|
|
243
247
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
244
248
|
key_id?: string | undefined;
|
|
245
249
|
key_issuing_request_id?: string | undefined;
|
|
@@ -299,16 +303,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
299
303
|
ends_at?: string | undefined;
|
|
300
304
|
visionline_metadata?: {
|
|
301
305
|
card_function_type: "guest" | "staff";
|
|
306
|
+
auto_join?: boolean | undefined;
|
|
302
307
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
303
308
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
304
309
|
common_acs_entrance_ids?: string[] | undefined;
|
|
305
310
|
is_valid?: boolean | undefined;
|
|
306
|
-
auto_join?: boolean | undefined;
|
|
307
311
|
card_id?: string | undefined;
|
|
308
312
|
credential_id?: string | undefined;
|
|
309
313
|
} | undefined;
|
|
310
314
|
assa_abloy_vostio_metadata?: {
|
|
311
315
|
endpoint_id?: string | undefined;
|
|
316
|
+
auto_join?: boolean | undefined;
|
|
312
317
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
313
318
|
key_id?: string | undefined;
|
|
314
319
|
key_issuing_request_id?: string | undefined;
|
|
@@ -448,24 +453,25 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
448
453
|
credential_id: z.ZodOptional<z.ZodString>;
|
|
449
454
|
}, "strip", z.ZodTypeAny, {
|
|
450
455
|
card_function_type: "guest" | "staff";
|
|
456
|
+
auto_join?: boolean | undefined;
|
|
451
457
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
452
458
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
453
459
|
common_acs_entrance_ids?: string[] | undefined;
|
|
454
460
|
is_valid?: boolean | undefined;
|
|
455
|
-
auto_join?: boolean | undefined;
|
|
456
461
|
card_id?: string | undefined;
|
|
457
462
|
credential_id?: string | undefined;
|
|
458
463
|
}, {
|
|
459
464
|
card_function_type: "guest" | "staff";
|
|
465
|
+
auto_join?: boolean | undefined;
|
|
460
466
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
461
467
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
462
468
|
common_acs_entrance_ids?: string[] | undefined;
|
|
463
469
|
is_valid?: boolean | undefined;
|
|
464
|
-
auto_join?: boolean | undefined;
|
|
465
470
|
card_id?: string | undefined;
|
|
466
471
|
credential_id?: string | undefined;
|
|
467
472
|
}>>;
|
|
468
473
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
474
|
+
auto_join: z.ZodOptional<z.ZodBoolean>;
|
|
469
475
|
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
470
476
|
key_id: z.ZodOptional<z.ZodString>;
|
|
471
477
|
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
@@ -473,12 +479,14 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
473
479
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
474
480
|
}, "strip", z.ZodTypeAny, {
|
|
475
481
|
endpoint_id?: string | undefined;
|
|
482
|
+
auto_join?: boolean | undefined;
|
|
476
483
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
477
484
|
key_id?: string | undefined;
|
|
478
485
|
key_issuing_request_id?: string | undefined;
|
|
479
486
|
door_names?: string[] | undefined;
|
|
480
487
|
}, {
|
|
481
488
|
endpoint_id?: string | undefined;
|
|
489
|
+
auto_join?: boolean | undefined;
|
|
482
490
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
483
491
|
key_id?: string | undefined;
|
|
484
492
|
key_issuing_request_id?: string | undefined;
|
|
@@ -528,16 +536,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
528
536
|
ends_at?: string | undefined;
|
|
529
537
|
visionline_metadata?: {
|
|
530
538
|
card_function_type: "guest" | "staff";
|
|
539
|
+
auto_join?: boolean | undefined;
|
|
531
540
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
532
541
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
533
542
|
common_acs_entrance_ids?: string[] | undefined;
|
|
534
543
|
is_valid?: boolean | undefined;
|
|
535
|
-
auto_join?: boolean | undefined;
|
|
536
544
|
card_id?: string | undefined;
|
|
537
545
|
credential_id?: string | undefined;
|
|
538
546
|
} | undefined;
|
|
539
547
|
assa_abloy_vostio_metadata?: {
|
|
540
548
|
endpoint_id?: string | undefined;
|
|
549
|
+
auto_join?: boolean | undefined;
|
|
541
550
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
542
551
|
key_id?: string | undefined;
|
|
543
552
|
key_issuing_request_id?: string | undefined;
|
|
@@ -597,16 +606,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
597
606
|
ends_at?: string | undefined;
|
|
598
607
|
visionline_metadata?: {
|
|
599
608
|
card_function_type: "guest" | "staff";
|
|
609
|
+
auto_join?: boolean | undefined;
|
|
600
610
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
601
611
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
602
612
|
common_acs_entrance_ids?: string[] | undefined;
|
|
603
613
|
is_valid?: boolean | undefined;
|
|
604
|
-
auto_join?: boolean | undefined;
|
|
605
614
|
card_id?: string | undefined;
|
|
606
615
|
credential_id?: string | undefined;
|
|
607
616
|
} | undefined;
|
|
608
617
|
assa_abloy_vostio_metadata?: {
|
|
609
618
|
endpoint_id?: string | undefined;
|
|
619
|
+
auto_join?: boolean | undefined;
|
|
610
620
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
611
621
|
key_id?: string | undefined;
|
|
612
622
|
key_issuing_request_id?: string | undefined;
|
|
@@ -671,16 +681,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
671
681
|
ends_at?: string | undefined;
|
|
672
682
|
visionline_metadata?: {
|
|
673
683
|
card_function_type: "guest" | "staff";
|
|
684
|
+
auto_join?: boolean | undefined;
|
|
674
685
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
675
686
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
676
687
|
common_acs_entrance_ids?: string[] | undefined;
|
|
677
688
|
is_valid?: boolean | undefined;
|
|
678
|
-
auto_join?: boolean | undefined;
|
|
679
689
|
card_id?: string | undefined;
|
|
680
690
|
credential_id?: string | undefined;
|
|
681
691
|
} | undefined;
|
|
682
692
|
assa_abloy_vostio_metadata?: {
|
|
683
693
|
endpoint_id?: string | undefined;
|
|
694
|
+
auto_join?: boolean | undefined;
|
|
684
695
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
685
696
|
key_id?: string | undefined;
|
|
686
697
|
key_issuing_request_id?: string | undefined;
|
|
@@ -740,16 +751,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
740
751
|
ends_at?: string | undefined;
|
|
741
752
|
visionline_metadata?: {
|
|
742
753
|
card_function_type: "guest" | "staff";
|
|
754
|
+
auto_join?: boolean | undefined;
|
|
743
755
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
744
756
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
745
757
|
common_acs_entrance_ids?: string[] | undefined;
|
|
746
758
|
is_valid?: boolean | undefined;
|
|
747
|
-
auto_join?: boolean | undefined;
|
|
748
759
|
card_id?: string | undefined;
|
|
749
760
|
credential_id?: string | undefined;
|
|
750
761
|
} | undefined;
|
|
751
762
|
assa_abloy_vostio_metadata?: {
|
|
752
763
|
endpoint_id?: string | undefined;
|
|
764
|
+
auto_join?: boolean | undefined;
|
|
753
765
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
754
766
|
key_id?: string | undefined;
|
|
755
767
|
key_issuing_request_id?: string | undefined;
|
|
@@ -815,16 +827,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
815
827
|
ends_at?: string | undefined;
|
|
816
828
|
visionline_metadata?: {
|
|
817
829
|
card_function_type: "guest" | "staff";
|
|
830
|
+
auto_join?: boolean | undefined;
|
|
818
831
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
819
832
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
820
833
|
common_acs_entrance_ids?: string[] | undefined;
|
|
821
834
|
is_valid?: boolean | undefined;
|
|
822
|
-
auto_join?: boolean | undefined;
|
|
823
835
|
card_id?: string | undefined;
|
|
824
836
|
credential_id?: string | undefined;
|
|
825
837
|
} | undefined;
|
|
826
838
|
assa_abloy_vostio_metadata?: {
|
|
827
839
|
endpoint_id?: string | undefined;
|
|
840
|
+
auto_join?: boolean | undefined;
|
|
828
841
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
829
842
|
key_id?: string | undefined;
|
|
830
843
|
key_issuing_request_id?: string | undefined;
|
|
@@ -884,16 +897,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
884
897
|
ends_at?: string | undefined;
|
|
885
898
|
visionline_metadata?: {
|
|
886
899
|
card_function_type: "guest" | "staff";
|
|
900
|
+
auto_join?: boolean | undefined;
|
|
887
901
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
888
902
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
889
903
|
common_acs_entrance_ids?: string[] | undefined;
|
|
890
904
|
is_valid?: boolean | undefined;
|
|
891
|
-
auto_join?: boolean | undefined;
|
|
892
905
|
card_id?: string | undefined;
|
|
893
906
|
credential_id?: string | undefined;
|
|
894
907
|
} | undefined;
|
|
895
908
|
assa_abloy_vostio_metadata?: {
|
|
896
909
|
endpoint_id?: string | undefined;
|
|
910
|
+
auto_join?: boolean | undefined;
|
|
897
911
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
898
912
|
key_id?: string | undefined;
|
|
899
913
|
key_issuing_request_id?: string | undefined;
|
|
@@ -238,24 +238,25 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
238
238
|
credential_id: z.ZodOptional<z.ZodString>;
|
|
239
239
|
}, "strip", z.ZodTypeAny, {
|
|
240
240
|
card_function_type: "guest" | "staff";
|
|
241
|
+
auto_join?: boolean | undefined;
|
|
241
242
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
242
243
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
243
244
|
common_acs_entrance_ids?: string[] | undefined;
|
|
244
245
|
is_valid?: boolean | undefined;
|
|
245
|
-
auto_join?: boolean | undefined;
|
|
246
246
|
card_id?: string | undefined;
|
|
247
247
|
credential_id?: string | undefined;
|
|
248
248
|
}, {
|
|
249
249
|
card_function_type: "guest" | "staff";
|
|
250
|
+
auto_join?: boolean | undefined;
|
|
250
251
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
251
252
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
252
253
|
common_acs_entrance_ids?: string[] | undefined;
|
|
253
254
|
is_valid?: boolean | undefined;
|
|
254
|
-
auto_join?: boolean | undefined;
|
|
255
255
|
card_id?: string | undefined;
|
|
256
256
|
credential_id?: string | undefined;
|
|
257
257
|
}>>;
|
|
258
258
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
259
|
+
auto_join: z.ZodOptional<z.ZodBoolean>;
|
|
259
260
|
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
260
261
|
key_id: z.ZodOptional<z.ZodString>;
|
|
261
262
|
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
@@ -263,12 +264,14 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
263
264
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
264
265
|
}, "strip", z.ZodTypeAny, {
|
|
265
266
|
endpoint_id?: string | undefined;
|
|
267
|
+
auto_join?: boolean | undefined;
|
|
266
268
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
267
269
|
key_id?: string | undefined;
|
|
268
270
|
key_issuing_request_id?: string | undefined;
|
|
269
271
|
door_names?: string[] | undefined;
|
|
270
272
|
}, {
|
|
271
273
|
endpoint_id?: string | undefined;
|
|
274
|
+
auto_join?: boolean | undefined;
|
|
272
275
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
273
276
|
key_id?: string | undefined;
|
|
274
277
|
key_issuing_request_id?: string | undefined;
|
|
@@ -318,16 +321,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
318
321
|
ends_at?: string | undefined;
|
|
319
322
|
visionline_metadata?: {
|
|
320
323
|
card_function_type: "guest" | "staff";
|
|
324
|
+
auto_join?: boolean | undefined;
|
|
321
325
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
322
326
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
323
327
|
common_acs_entrance_ids?: string[] | undefined;
|
|
324
328
|
is_valid?: boolean | undefined;
|
|
325
|
-
auto_join?: boolean | undefined;
|
|
326
329
|
card_id?: string | undefined;
|
|
327
330
|
credential_id?: string | undefined;
|
|
328
331
|
} | undefined;
|
|
329
332
|
assa_abloy_vostio_metadata?: {
|
|
330
333
|
endpoint_id?: string | undefined;
|
|
334
|
+
auto_join?: boolean | undefined;
|
|
331
335
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
332
336
|
key_id?: string | undefined;
|
|
333
337
|
key_issuing_request_id?: string | undefined;
|
|
@@ -387,16 +391,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
387
391
|
ends_at?: string | undefined;
|
|
388
392
|
visionline_metadata?: {
|
|
389
393
|
card_function_type: "guest" | "staff";
|
|
394
|
+
auto_join?: boolean | undefined;
|
|
390
395
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
391
396
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
392
397
|
common_acs_entrance_ids?: string[] | undefined;
|
|
393
398
|
is_valid?: boolean | undefined;
|
|
394
|
-
auto_join?: boolean | undefined;
|
|
395
399
|
card_id?: string | undefined;
|
|
396
400
|
credential_id?: string | undefined;
|
|
397
401
|
} | undefined;
|
|
398
402
|
assa_abloy_vostio_metadata?: {
|
|
399
403
|
endpoint_id?: string | undefined;
|
|
404
|
+
auto_join?: boolean | undefined;
|
|
400
405
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
401
406
|
key_id?: string | undefined;
|
|
402
407
|
key_issuing_request_id?: string | undefined;
|
|
@@ -536,24 +541,25 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
536
541
|
credential_id: z.ZodOptional<z.ZodString>;
|
|
537
542
|
}, "strip", z.ZodTypeAny, {
|
|
538
543
|
card_function_type: "guest" | "staff";
|
|
544
|
+
auto_join?: boolean | undefined;
|
|
539
545
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
540
546
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
541
547
|
common_acs_entrance_ids?: string[] | undefined;
|
|
542
548
|
is_valid?: boolean | undefined;
|
|
543
|
-
auto_join?: boolean | undefined;
|
|
544
549
|
card_id?: string | undefined;
|
|
545
550
|
credential_id?: string | undefined;
|
|
546
551
|
}, {
|
|
547
552
|
card_function_type: "guest" | "staff";
|
|
553
|
+
auto_join?: boolean | undefined;
|
|
548
554
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
549
555
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
550
556
|
common_acs_entrance_ids?: string[] | undefined;
|
|
551
557
|
is_valid?: boolean | undefined;
|
|
552
|
-
auto_join?: boolean | undefined;
|
|
553
558
|
card_id?: string | undefined;
|
|
554
559
|
credential_id?: string | undefined;
|
|
555
560
|
}>>;
|
|
556
561
|
assa_abloy_vostio_metadata: z.ZodOptional<z.ZodObject<{
|
|
562
|
+
auto_join: z.ZodOptional<z.ZodBoolean>;
|
|
557
563
|
override_guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
558
564
|
key_id: z.ZodOptional<z.ZodString>;
|
|
559
565
|
key_issuing_request_id: z.ZodOptional<z.ZodString>;
|
|
@@ -561,12 +567,14 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
561
567
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
562
568
|
}, "strip", z.ZodTypeAny, {
|
|
563
569
|
endpoint_id?: string | undefined;
|
|
570
|
+
auto_join?: boolean | undefined;
|
|
564
571
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
565
572
|
key_id?: string | undefined;
|
|
566
573
|
key_issuing_request_id?: string | undefined;
|
|
567
574
|
door_names?: string[] | undefined;
|
|
568
575
|
}, {
|
|
569
576
|
endpoint_id?: string | undefined;
|
|
577
|
+
auto_join?: boolean | undefined;
|
|
570
578
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
571
579
|
key_id?: string | undefined;
|
|
572
580
|
key_issuing_request_id?: string | undefined;
|
|
@@ -616,16 +624,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
616
624
|
ends_at?: string | undefined;
|
|
617
625
|
visionline_metadata?: {
|
|
618
626
|
card_function_type: "guest" | "staff";
|
|
627
|
+
auto_join?: boolean | undefined;
|
|
619
628
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
620
629
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
621
630
|
common_acs_entrance_ids?: string[] | undefined;
|
|
622
631
|
is_valid?: boolean | undefined;
|
|
623
|
-
auto_join?: boolean | undefined;
|
|
624
632
|
card_id?: string | undefined;
|
|
625
633
|
credential_id?: string | undefined;
|
|
626
634
|
} | undefined;
|
|
627
635
|
assa_abloy_vostio_metadata?: {
|
|
628
636
|
endpoint_id?: string | undefined;
|
|
637
|
+
auto_join?: boolean | undefined;
|
|
629
638
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
630
639
|
key_id?: string | undefined;
|
|
631
640
|
key_issuing_request_id?: string | undefined;
|
|
@@ -685,16 +694,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
685
694
|
ends_at?: string | undefined;
|
|
686
695
|
visionline_metadata?: {
|
|
687
696
|
card_function_type: "guest" | "staff";
|
|
697
|
+
auto_join?: boolean | undefined;
|
|
688
698
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
689
699
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
690
700
|
common_acs_entrance_ids?: string[] | undefined;
|
|
691
701
|
is_valid?: boolean | undefined;
|
|
692
|
-
auto_join?: boolean | undefined;
|
|
693
702
|
card_id?: string | undefined;
|
|
694
703
|
credential_id?: string | undefined;
|
|
695
704
|
} | undefined;
|
|
696
705
|
assa_abloy_vostio_metadata?: {
|
|
697
706
|
endpoint_id?: string | undefined;
|
|
707
|
+
auto_join?: boolean | undefined;
|
|
698
708
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
699
709
|
key_id?: string | undefined;
|
|
700
710
|
key_issuing_request_id?: string | undefined;
|
|
@@ -791,16 +801,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
791
801
|
ends_at?: string | undefined;
|
|
792
802
|
visionline_metadata?: {
|
|
793
803
|
card_function_type: "guest" | "staff";
|
|
804
|
+
auto_join?: boolean | undefined;
|
|
794
805
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
795
806
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
796
807
|
common_acs_entrance_ids?: string[] | undefined;
|
|
797
808
|
is_valid?: boolean | undefined;
|
|
798
|
-
auto_join?: boolean | undefined;
|
|
799
809
|
card_id?: string | undefined;
|
|
800
810
|
credential_id?: string | undefined;
|
|
801
811
|
} | undefined;
|
|
802
812
|
assa_abloy_vostio_metadata?: {
|
|
803
813
|
endpoint_id?: string | undefined;
|
|
814
|
+
auto_join?: boolean | undefined;
|
|
804
815
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
805
816
|
key_id?: string | undefined;
|
|
806
817
|
key_issuing_request_id?: string | undefined;
|
|
@@ -860,16 +871,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
860
871
|
ends_at?: string | undefined;
|
|
861
872
|
visionline_metadata?: {
|
|
862
873
|
card_function_type: "guest" | "staff";
|
|
874
|
+
auto_join?: boolean | undefined;
|
|
863
875
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
864
876
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
865
877
|
common_acs_entrance_ids?: string[] | undefined;
|
|
866
878
|
is_valid?: boolean | undefined;
|
|
867
|
-
auto_join?: boolean | undefined;
|
|
868
879
|
card_id?: string | undefined;
|
|
869
880
|
credential_id?: string | undefined;
|
|
870
881
|
} | undefined;
|
|
871
882
|
assa_abloy_vostio_metadata?: {
|
|
872
883
|
endpoint_id?: string | undefined;
|
|
884
|
+
auto_join?: boolean | undefined;
|
|
873
885
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
874
886
|
key_id?: string | undefined;
|
|
875
887
|
key_issuing_request_id?: string | undefined;
|
|
@@ -956,16 +968,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
956
968
|
ends_at?: string | undefined;
|
|
957
969
|
visionline_metadata?: {
|
|
958
970
|
card_function_type: "guest" | "staff";
|
|
971
|
+
auto_join?: boolean | undefined;
|
|
959
972
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
960
973
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
961
974
|
common_acs_entrance_ids?: string[] | undefined;
|
|
962
975
|
is_valid?: boolean | undefined;
|
|
963
|
-
auto_join?: boolean | undefined;
|
|
964
976
|
card_id?: string | undefined;
|
|
965
977
|
credential_id?: string | undefined;
|
|
966
978
|
} | undefined;
|
|
967
979
|
assa_abloy_vostio_metadata?: {
|
|
968
980
|
endpoint_id?: string | undefined;
|
|
981
|
+
auto_join?: boolean | undefined;
|
|
969
982
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
970
983
|
key_id?: string | undefined;
|
|
971
984
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1025,16 +1038,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1025
1038
|
ends_at?: string | undefined;
|
|
1026
1039
|
visionline_metadata?: {
|
|
1027
1040
|
card_function_type: "guest" | "staff";
|
|
1041
|
+
auto_join?: boolean | undefined;
|
|
1028
1042
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1029
1043
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1030
1044
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1031
1045
|
is_valid?: boolean | undefined;
|
|
1032
|
-
auto_join?: boolean | undefined;
|
|
1033
1046
|
card_id?: string | undefined;
|
|
1034
1047
|
credential_id?: string | undefined;
|
|
1035
1048
|
} | undefined;
|
|
1036
1049
|
assa_abloy_vostio_metadata?: {
|
|
1037
1050
|
endpoint_id?: string | undefined;
|
|
1051
|
+
auto_join?: boolean | undefined;
|
|
1038
1052
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1039
1053
|
key_id?: string | undefined;
|
|
1040
1054
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1126,16 +1140,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1126
1140
|
ends_at?: string | undefined;
|
|
1127
1141
|
visionline_metadata?: {
|
|
1128
1142
|
card_function_type: "guest" | "staff";
|
|
1143
|
+
auto_join?: boolean | undefined;
|
|
1129
1144
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1130
1145
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1131
1146
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1132
1147
|
is_valid?: boolean | undefined;
|
|
1133
|
-
auto_join?: boolean | undefined;
|
|
1134
1148
|
card_id?: string | undefined;
|
|
1135
1149
|
credential_id?: string | undefined;
|
|
1136
1150
|
} | undefined;
|
|
1137
1151
|
assa_abloy_vostio_metadata?: {
|
|
1138
1152
|
endpoint_id?: string | undefined;
|
|
1153
|
+
auto_join?: boolean | undefined;
|
|
1139
1154
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1140
1155
|
key_id?: string | undefined;
|
|
1141
1156
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1195,16 +1210,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1195
1210
|
ends_at?: string | undefined;
|
|
1196
1211
|
visionline_metadata?: {
|
|
1197
1212
|
card_function_type: "guest" | "staff";
|
|
1213
|
+
auto_join?: boolean | undefined;
|
|
1198
1214
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1199
1215
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1200
1216
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1201
1217
|
is_valid?: boolean | undefined;
|
|
1202
|
-
auto_join?: boolean | undefined;
|
|
1203
1218
|
card_id?: string | undefined;
|
|
1204
1219
|
credential_id?: string | undefined;
|
|
1205
1220
|
} | undefined;
|
|
1206
1221
|
assa_abloy_vostio_metadata?: {
|
|
1207
1222
|
endpoint_id?: string | undefined;
|
|
1223
|
+
auto_join?: boolean | undefined;
|
|
1208
1224
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1209
1225
|
key_id?: string | undefined;
|
|
1210
1226
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1297,16 +1313,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1297
1313
|
ends_at?: string | undefined;
|
|
1298
1314
|
visionline_metadata?: {
|
|
1299
1315
|
card_function_type: "guest" | "staff";
|
|
1316
|
+
auto_join?: boolean | undefined;
|
|
1300
1317
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1301
1318
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1302
1319
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1303
1320
|
is_valid?: boolean | undefined;
|
|
1304
|
-
auto_join?: boolean | undefined;
|
|
1305
1321
|
card_id?: string | undefined;
|
|
1306
1322
|
credential_id?: string | undefined;
|
|
1307
1323
|
} | undefined;
|
|
1308
1324
|
assa_abloy_vostio_metadata?: {
|
|
1309
1325
|
endpoint_id?: string | undefined;
|
|
1326
|
+
auto_join?: boolean | undefined;
|
|
1310
1327
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1311
1328
|
key_id?: string | undefined;
|
|
1312
1329
|
key_issuing_request_id?: string | undefined;
|
|
@@ -1366,16 +1383,17 @@ export declare const scan_credential_action_attempt: z.ZodDiscriminatedUnion<"st
|
|
|
1366
1383
|
ends_at?: string | undefined;
|
|
1367
1384
|
visionline_metadata?: {
|
|
1368
1385
|
card_function_type: "guest" | "staff";
|
|
1386
|
+
auto_join?: boolean | undefined;
|
|
1369
1387
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
1370
1388
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
1371
1389
|
common_acs_entrance_ids?: string[] | undefined;
|
|
1372
1390
|
is_valid?: boolean | undefined;
|
|
1373
|
-
auto_join?: boolean | undefined;
|
|
1374
1391
|
card_id?: string | undefined;
|
|
1375
1392
|
credential_id?: string | undefined;
|
|
1376
1393
|
} | undefined;
|
|
1377
1394
|
assa_abloy_vostio_metadata?: {
|
|
1378
1395
|
endpoint_id?: string | undefined;
|
|
1396
|
+
auto_join?: boolean | undefined;
|
|
1379
1397
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1380
1398
|
key_id?: string | undefined;
|
|
1381
1399
|
key_issuing_request_id?: string | undefined;
|
|
@@ -369,6 +369,9 @@ declare const _default: {
|
|
|
369
369
|
assa_abloy_vostio_metadata: {
|
|
370
370
|
description: string;
|
|
371
371
|
properties: {
|
|
372
|
+
auto_join: {
|
|
373
|
+
type: string;
|
|
374
|
+
};
|
|
372
375
|
door_names: {
|
|
373
376
|
items: {
|
|
374
377
|
type: string;
|
|
@@ -1854,6 +1857,9 @@ declare const _default: {
|
|
|
1854
1857
|
assa_abloy_vostio_metadata: {
|
|
1855
1858
|
description: string;
|
|
1856
1859
|
properties: {
|
|
1860
|
+
auto_join: {
|
|
1861
|
+
type: string;
|
|
1862
|
+
};
|
|
1857
1863
|
door_names: {
|
|
1858
1864
|
items: {
|
|
1859
1865
|
type: string;
|
|
@@ -2396,6 +2402,9 @@ declare const _default: {
|
|
|
2396
2402
|
assa_abloy_vostio_metadata: {
|
|
2397
2403
|
description: string;
|
|
2398
2404
|
properties: {
|
|
2405
|
+
auto_join: {
|
|
2406
|
+
type: string;
|
|
2407
|
+
};
|
|
2399
2408
|
door_names: {
|
|
2400
2409
|
items: {
|
|
2401
2410
|
type: string;
|
|
@@ -8846,6 +8855,9 @@ declare const _default: {
|
|
|
8846
8855
|
assa_abloy_vostio_metadata: {
|
|
8847
8856
|
description: string;
|
|
8848
8857
|
properties: {
|
|
8858
|
+
auto_join: {
|
|
8859
|
+
type: string;
|
|
8860
|
+
};
|
|
8849
8861
|
door_names: {
|
|
8850
8862
|
items: {
|
|
8851
8863
|
type: string;
|
|
@@ -13317,6 +13329,9 @@ declare const _default: {
|
|
|
13317
13329
|
assa_abloy_vostio_metadata: {
|
|
13318
13330
|
description: string;
|
|
13319
13331
|
properties: {
|
|
13332
|
+
auto_join: {
|
|
13333
|
+
type: string;
|
|
13334
|
+
};
|
|
13320
13335
|
join_all_guest_acs_entrances: {
|
|
13321
13336
|
type: string;
|
|
13322
13337
|
};
|