@seamapi/types 1.551.0 → 1.552.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 +168 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1355 -125
- package/dist/index.cjs +168 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +1176 -131
- package/lib/seam/connect/models/devices/device-metadata.d.ts +95 -0
- package/lib/seam/connect/models/devices/device-metadata.js +62 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +8 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +136 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +98 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +90 -0
- package/lib/seam/connect/openapi.js +140 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +671 -25
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +62 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +152 -0
- package/src/lib/seam/connect/route-types.ts +671 -0
|
@@ -314,17 +314,17 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
314
314
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
315
315
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
316
316
|
}, "strip", z.ZodTypeAny, {
|
|
317
|
+
key_id?: string | undefined;
|
|
317
318
|
endpoint_id?: string | undefined;
|
|
318
319
|
auto_join?: boolean | undefined;
|
|
319
320
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
320
|
-
key_id?: string | undefined;
|
|
321
321
|
key_issuing_request_id?: string | undefined;
|
|
322
322
|
door_names?: string[] | undefined;
|
|
323
323
|
}, {
|
|
324
|
+
key_id?: string | undefined;
|
|
324
325
|
endpoint_id?: string | undefined;
|
|
325
326
|
auto_join?: boolean | undefined;
|
|
326
327
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
327
|
-
key_id?: string | undefined;
|
|
328
328
|
key_issuing_request_id?: string | undefined;
|
|
329
329
|
door_names?: string[] | undefined;
|
|
330
330
|
}>>;
|
|
@@ -382,10 +382,10 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
382
382
|
credential_id?: string | undefined;
|
|
383
383
|
} | undefined;
|
|
384
384
|
assa_abloy_vostio_metadata?: {
|
|
385
|
+
key_id?: string | undefined;
|
|
385
386
|
endpoint_id?: string | undefined;
|
|
386
387
|
auto_join?: boolean | undefined;
|
|
387
388
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
388
|
-
key_id?: string | undefined;
|
|
389
389
|
key_issuing_request_id?: string | undefined;
|
|
390
390
|
door_names?: string[] | undefined;
|
|
391
391
|
} | undefined;
|
|
@@ -454,10 +454,10 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
454
454
|
credential_id?: string | undefined;
|
|
455
455
|
} | undefined;
|
|
456
456
|
assa_abloy_vostio_metadata?: {
|
|
457
|
+
key_id?: string | undefined;
|
|
457
458
|
endpoint_id?: string | undefined;
|
|
458
459
|
auto_join?: boolean | undefined;
|
|
459
460
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
460
|
-
key_id?: string | undefined;
|
|
461
461
|
key_issuing_request_id?: string | undefined;
|
|
462
462
|
door_names?: string[] | undefined;
|
|
463
463
|
} | undefined;
|
|
@@ -624,17 +624,17 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
624
624
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
625
625
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
626
626
|
}, "strip", z.ZodTypeAny, {
|
|
627
|
+
key_id?: string | undefined;
|
|
627
628
|
endpoint_id?: string | undefined;
|
|
628
629
|
auto_join?: boolean | undefined;
|
|
629
630
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
630
|
-
key_id?: string | undefined;
|
|
631
631
|
key_issuing_request_id?: string | undefined;
|
|
632
632
|
door_names?: string[] | undefined;
|
|
633
633
|
}, {
|
|
634
|
+
key_id?: string | undefined;
|
|
634
635
|
endpoint_id?: string | undefined;
|
|
635
636
|
auto_join?: boolean | undefined;
|
|
636
637
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
637
|
-
key_id?: string | undefined;
|
|
638
638
|
key_issuing_request_id?: string | undefined;
|
|
639
639
|
door_names?: string[] | undefined;
|
|
640
640
|
}>>;
|
|
@@ -692,10 +692,10 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
692
692
|
credential_id?: string | undefined;
|
|
693
693
|
} | undefined;
|
|
694
694
|
assa_abloy_vostio_metadata?: {
|
|
695
|
+
key_id?: string | undefined;
|
|
695
696
|
endpoint_id?: string | undefined;
|
|
696
697
|
auto_join?: boolean | undefined;
|
|
697
698
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
698
|
-
key_id?: string | undefined;
|
|
699
699
|
key_issuing_request_id?: string | undefined;
|
|
700
700
|
door_names?: string[] | undefined;
|
|
701
701
|
} | undefined;
|
|
@@ -764,10 +764,10 @@ export declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
764
764
|
credential_id?: string | undefined;
|
|
765
765
|
} | undefined;
|
|
766
766
|
assa_abloy_vostio_metadata?: {
|
|
767
|
+
key_id?: string | undefined;
|
|
767
768
|
endpoint_id?: string | undefined;
|
|
768
769
|
auto_join?: boolean | undefined;
|
|
769
770
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
770
|
-
key_id?: string | undefined;
|
|
771
771
|
key_issuing_request_id?: string | undefined;
|
|
772
772
|
door_names?: string[] | undefined;
|
|
773
773
|
} | undefined;
|
|
@@ -27,17 +27,17 @@ export declare const acs_credential_vostio_metadata: z.ZodObject<{
|
|
|
27
27
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28
28
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
key_id?: string | undefined;
|
|
30
31
|
endpoint_id?: string | undefined;
|
|
31
32
|
auto_join?: boolean | undefined;
|
|
32
33
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
33
|
-
key_id?: string | undefined;
|
|
34
34
|
key_issuing_request_id?: string | undefined;
|
|
35
35
|
door_names?: string[] | undefined;
|
|
36
36
|
}, {
|
|
37
|
+
key_id?: string | undefined;
|
|
37
38
|
endpoint_id?: string | undefined;
|
|
38
39
|
auto_join?: boolean | undefined;
|
|
39
40
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
40
|
-
key_id?: string | undefined;
|
|
41
41
|
key_issuing_request_id?: string | undefined;
|
|
42
42
|
door_names?: string[] | undefined;
|
|
43
43
|
}>;
|
|
@@ -413,17 +413,17 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
413
413
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
414
414
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
415
415
|
}, "strip", z.ZodTypeAny, {
|
|
416
|
+
key_id?: string | undefined;
|
|
416
417
|
endpoint_id?: string | undefined;
|
|
417
418
|
auto_join?: boolean | undefined;
|
|
418
419
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
419
|
-
key_id?: string | undefined;
|
|
420
420
|
key_issuing_request_id?: string | undefined;
|
|
421
421
|
door_names?: string[] | undefined;
|
|
422
422
|
}, {
|
|
423
|
+
key_id?: string | undefined;
|
|
423
424
|
endpoint_id?: string | undefined;
|
|
424
425
|
auto_join?: boolean | undefined;
|
|
425
426
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
426
|
-
key_id?: string | undefined;
|
|
427
427
|
key_issuing_request_id?: string | undefined;
|
|
428
428
|
door_names?: string[] | undefined;
|
|
429
429
|
}>>;
|
|
@@ -481,10 +481,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
481
481
|
credential_id?: string | undefined;
|
|
482
482
|
} | undefined;
|
|
483
483
|
assa_abloy_vostio_metadata?: {
|
|
484
|
+
key_id?: string | undefined;
|
|
484
485
|
endpoint_id?: string | undefined;
|
|
485
486
|
auto_join?: boolean | undefined;
|
|
486
487
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
487
|
-
key_id?: string | undefined;
|
|
488
488
|
key_issuing_request_id?: string | undefined;
|
|
489
489
|
door_names?: string[] | undefined;
|
|
490
490
|
} | undefined;
|
|
@@ -553,10 +553,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
553
553
|
credential_id?: string | undefined;
|
|
554
554
|
} | undefined;
|
|
555
555
|
assa_abloy_vostio_metadata?: {
|
|
556
|
+
key_id?: string | undefined;
|
|
556
557
|
endpoint_id?: string | undefined;
|
|
557
558
|
auto_join?: boolean | undefined;
|
|
558
559
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
559
|
-
key_id?: string | undefined;
|
|
560
560
|
key_issuing_request_id?: string | undefined;
|
|
561
561
|
door_names?: string[] | undefined;
|
|
562
562
|
} | undefined;
|
|
@@ -722,17 +722,17 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
722
722
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
723
723
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
724
724
|
}, "strip", z.ZodTypeAny, {
|
|
725
|
+
key_id?: string | undefined;
|
|
725
726
|
endpoint_id?: string | undefined;
|
|
726
727
|
auto_join?: boolean | undefined;
|
|
727
728
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
728
|
-
key_id?: string | undefined;
|
|
729
729
|
key_issuing_request_id?: string | undefined;
|
|
730
730
|
door_names?: string[] | undefined;
|
|
731
731
|
}, {
|
|
732
|
+
key_id?: string | undefined;
|
|
732
733
|
endpoint_id?: string | undefined;
|
|
733
734
|
auto_join?: boolean | undefined;
|
|
734
735
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
735
|
-
key_id?: string | undefined;
|
|
736
736
|
key_issuing_request_id?: string | undefined;
|
|
737
737
|
door_names?: string[] | undefined;
|
|
738
738
|
}>>;
|
|
@@ -790,10 +790,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
790
790
|
credential_id?: string | undefined;
|
|
791
791
|
} | undefined;
|
|
792
792
|
assa_abloy_vostio_metadata?: {
|
|
793
|
+
key_id?: string | undefined;
|
|
793
794
|
endpoint_id?: string | undefined;
|
|
794
795
|
auto_join?: boolean | undefined;
|
|
795
796
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
796
|
-
key_id?: string | undefined;
|
|
797
797
|
key_issuing_request_id?: string | undefined;
|
|
798
798
|
door_names?: string[] | undefined;
|
|
799
799
|
} | undefined;
|
|
@@ -862,10 +862,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
862
862
|
credential_id?: string | undefined;
|
|
863
863
|
} | undefined;
|
|
864
864
|
assa_abloy_vostio_metadata?: {
|
|
865
|
+
key_id?: string | undefined;
|
|
865
866
|
endpoint_id?: string | undefined;
|
|
866
867
|
auto_join?: boolean | undefined;
|
|
867
868
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
868
|
-
key_id?: string | undefined;
|
|
869
869
|
key_issuing_request_id?: string | undefined;
|
|
870
870
|
door_names?: string[] | undefined;
|
|
871
871
|
} | undefined;
|
|
@@ -971,10 +971,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
971
971
|
credential_id?: string | undefined;
|
|
972
972
|
} | undefined;
|
|
973
973
|
assa_abloy_vostio_metadata?: {
|
|
974
|
+
key_id?: string | undefined;
|
|
974
975
|
endpoint_id?: string | undefined;
|
|
975
976
|
auto_join?: boolean | undefined;
|
|
976
977
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
977
|
-
key_id?: string | undefined;
|
|
978
978
|
key_issuing_request_id?: string | undefined;
|
|
979
979
|
door_names?: string[] | undefined;
|
|
980
980
|
} | undefined;
|
|
@@ -1043,10 +1043,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1043
1043
|
credential_id?: string | undefined;
|
|
1044
1044
|
} | undefined;
|
|
1045
1045
|
assa_abloy_vostio_metadata?: {
|
|
1046
|
+
key_id?: string | undefined;
|
|
1046
1047
|
endpoint_id?: string | undefined;
|
|
1047
1048
|
auto_join?: boolean | undefined;
|
|
1048
1049
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1049
|
-
key_id?: string | undefined;
|
|
1050
1050
|
key_issuing_request_id?: string | undefined;
|
|
1051
1051
|
door_names?: string[] | undefined;
|
|
1052
1052
|
} | undefined;
|
|
@@ -1142,10 +1142,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1142
1142
|
credential_id?: string | undefined;
|
|
1143
1143
|
} | undefined;
|
|
1144
1144
|
assa_abloy_vostio_metadata?: {
|
|
1145
|
+
key_id?: string | undefined;
|
|
1145
1146
|
endpoint_id?: string | undefined;
|
|
1146
1147
|
auto_join?: boolean | undefined;
|
|
1147
1148
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1148
|
-
key_id?: string | undefined;
|
|
1149
1149
|
key_issuing_request_id?: string | undefined;
|
|
1150
1150
|
door_names?: string[] | undefined;
|
|
1151
1151
|
} | undefined;
|
|
@@ -1214,10 +1214,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1214
1214
|
credential_id?: string | undefined;
|
|
1215
1215
|
} | undefined;
|
|
1216
1216
|
assa_abloy_vostio_metadata?: {
|
|
1217
|
+
key_id?: string | undefined;
|
|
1217
1218
|
endpoint_id?: string | undefined;
|
|
1218
1219
|
auto_join?: boolean | undefined;
|
|
1219
1220
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1220
|
-
key_id?: string | undefined;
|
|
1221
1221
|
key_issuing_request_id?: string | undefined;
|
|
1222
1222
|
door_names?: string[] | undefined;
|
|
1223
1223
|
} | undefined;
|
|
@@ -1318,10 +1318,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1318
1318
|
credential_id?: string | undefined;
|
|
1319
1319
|
} | undefined;
|
|
1320
1320
|
assa_abloy_vostio_metadata?: {
|
|
1321
|
+
key_id?: string | undefined;
|
|
1321
1322
|
endpoint_id?: string | undefined;
|
|
1322
1323
|
auto_join?: boolean | undefined;
|
|
1323
1324
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1324
|
-
key_id?: string | undefined;
|
|
1325
1325
|
key_issuing_request_id?: string | undefined;
|
|
1326
1326
|
door_names?: string[] | undefined;
|
|
1327
1327
|
} | undefined;
|
|
@@ -1390,10 +1390,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1390
1390
|
credential_id?: string | undefined;
|
|
1391
1391
|
} | undefined;
|
|
1392
1392
|
assa_abloy_vostio_metadata?: {
|
|
1393
|
+
key_id?: string | undefined;
|
|
1393
1394
|
endpoint_id?: string | undefined;
|
|
1394
1395
|
auto_join?: boolean | undefined;
|
|
1395
1396
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1396
|
-
key_id?: string | undefined;
|
|
1397
1397
|
key_issuing_request_id?: string | undefined;
|
|
1398
1398
|
door_names?: string[] | undefined;
|
|
1399
1399
|
} | undefined;
|
|
@@ -1495,10 +1495,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1495
1495
|
credential_id?: string | undefined;
|
|
1496
1496
|
} | undefined;
|
|
1497
1497
|
assa_abloy_vostio_metadata?: {
|
|
1498
|
+
key_id?: string | undefined;
|
|
1498
1499
|
endpoint_id?: string | undefined;
|
|
1499
1500
|
auto_join?: boolean | undefined;
|
|
1500
1501
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1501
|
-
key_id?: string | undefined;
|
|
1502
1502
|
key_issuing_request_id?: string | undefined;
|
|
1503
1503
|
door_names?: string[] | undefined;
|
|
1504
1504
|
} | undefined;
|
|
@@ -1567,10 +1567,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1567
1567
|
credential_id?: string | undefined;
|
|
1568
1568
|
} | undefined;
|
|
1569
1569
|
assa_abloy_vostio_metadata?: {
|
|
1570
|
+
key_id?: string | undefined;
|
|
1570
1571
|
endpoint_id?: string | undefined;
|
|
1571
1572
|
auto_join?: boolean | undefined;
|
|
1572
1573
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1573
|
-
key_id?: string | undefined;
|
|
1574
1574
|
key_issuing_request_id?: string | undefined;
|
|
1575
1575
|
door_names?: string[] | undefined;
|
|
1576
1576
|
} | undefined;
|
|
@@ -1831,17 +1831,17 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1831
1831
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1832
1832
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
1833
1833
|
}, "strip", z.ZodTypeAny, {
|
|
1834
|
+
key_id?: string | undefined;
|
|
1834
1835
|
endpoint_id?: string | undefined;
|
|
1835
1836
|
auto_join?: boolean | undefined;
|
|
1836
1837
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1837
|
-
key_id?: string | undefined;
|
|
1838
1838
|
key_issuing_request_id?: string | undefined;
|
|
1839
1839
|
door_names?: string[] | undefined;
|
|
1840
1840
|
}, {
|
|
1841
|
+
key_id?: string | undefined;
|
|
1841
1842
|
endpoint_id?: string | undefined;
|
|
1842
1843
|
auto_join?: boolean | undefined;
|
|
1843
1844
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1844
|
-
key_id?: string | undefined;
|
|
1845
1845
|
key_issuing_request_id?: string | undefined;
|
|
1846
1846
|
door_names?: string[] | undefined;
|
|
1847
1847
|
}>>;
|
|
@@ -1899,10 +1899,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1899
1899
|
credential_id?: string | undefined;
|
|
1900
1900
|
} | undefined;
|
|
1901
1901
|
assa_abloy_vostio_metadata?: {
|
|
1902
|
+
key_id?: string | undefined;
|
|
1902
1903
|
endpoint_id?: string | undefined;
|
|
1903
1904
|
auto_join?: boolean | undefined;
|
|
1904
1905
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1905
|
-
key_id?: string | undefined;
|
|
1906
1906
|
key_issuing_request_id?: string | undefined;
|
|
1907
1907
|
door_names?: string[] | undefined;
|
|
1908
1908
|
} | undefined;
|
|
@@ -1971,10 +1971,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
1971
1971
|
credential_id?: string | undefined;
|
|
1972
1972
|
} | undefined;
|
|
1973
1973
|
assa_abloy_vostio_metadata?: {
|
|
1974
|
+
key_id?: string | undefined;
|
|
1974
1975
|
endpoint_id?: string | undefined;
|
|
1975
1976
|
auto_join?: boolean | undefined;
|
|
1976
1977
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
1977
|
-
key_id?: string | undefined;
|
|
1978
1978
|
key_issuing_request_id?: string | undefined;
|
|
1979
1979
|
door_names?: string[] | undefined;
|
|
1980
1980
|
} | undefined;
|
|
@@ -2140,17 +2140,17 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2140
2140
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2141
2141
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
2142
2142
|
}, "strip", z.ZodTypeAny, {
|
|
2143
|
+
key_id?: string | undefined;
|
|
2143
2144
|
endpoint_id?: string | undefined;
|
|
2144
2145
|
auto_join?: boolean | undefined;
|
|
2145
2146
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2146
|
-
key_id?: string | undefined;
|
|
2147
2147
|
key_issuing_request_id?: string | undefined;
|
|
2148
2148
|
door_names?: string[] | undefined;
|
|
2149
2149
|
}, {
|
|
2150
|
+
key_id?: string | undefined;
|
|
2150
2151
|
endpoint_id?: string | undefined;
|
|
2151
2152
|
auto_join?: boolean | undefined;
|
|
2152
2153
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2153
|
-
key_id?: string | undefined;
|
|
2154
2154
|
key_issuing_request_id?: string | undefined;
|
|
2155
2155
|
door_names?: string[] | undefined;
|
|
2156
2156
|
}>>;
|
|
@@ -2208,10 +2208,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2208
2208
|
credential_id?: string | undefined;
|
|
2209
2209
|
} | undefined;
|
|
2210
2210
|
assa_abloy_vostio_metadata?: {
|
|
2211
|
+
key_id?: string | undefined;
|
|
2211
2212
|
endpoint_id?: string | undefined;
|
|
2212
2213
|
auto_join?: boolean | undefined;
|
|
2213
2214
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2214
|
-
key_id?: string | undefined;
|
|
2215
2215
|
key_issuing_request_id?: string | undefined;
|
|
2216
2216
|
door_names?: string[] | undefined;
|
|
2217
2217
|
} | undefined;
|
|
@@ -2280,10 +2280,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2280
2280
|
credential_id?: string | undefined;
|
|
2281
2281
|
} | undefined;
|
|
2282
2282
|
assa_abloy_vostio_metadata?: {
|
|
2283
|
+
key_id?: string | undefined;
|
|
2283
2284
|
endpoint_id?: string | undefined;
|
|
2284
2285
|
auto_join?: boolean | undefined;
|
|
2285
2286
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2286
|
-
key_id?: string | undefined;
|
|
2287
2287
|
key_issuing_request_id?: string | undefined;
|
|
2288
2288
|
door_names?: string[] | undefined;
|
|
2289
2289
|
} | undefined;
|
|
@@ -2357,10 +2357,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2357
2357
|
credential_id?: string | undefined;
|
|
2358
2358
|
} | undefined;
|
|
2359
2359
|
assa_abloy_vostio_metadata?: {
|
|
2360
|
+
key_id?: string | undefined;
|
|
2360
2361
|
endpoint_id?: string | undefined;
|
|
2361
2362
|
auto_join?: boolean | undefined;
|
|
2362
2363
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2363
|
-
key_id?: string | undefined;
|
|
2364
2364
|
key_issuing_request_id?: string | undefined;
|
|
2365
2365
|
door_names?: string[] | undefined;
|
|
2366
2366
|
} | undefined;
|
|
@@ -2429,10 +2429,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2429
2429
|
credential_id?: string | undefined;
|
|
2430
2430
|
} | undefined;
|
|
2431
2431
|
assa_abloy_vostio_metadata?: {
|
|
2432
|
+
key_id?: string | undefined;
|
|
2432
2433
|
endpoint_id?: string | undefined;
|
|
2433
2434
|
auto_join?: boolean | undefined;
|
|
2434
2435
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2435
|
-
key_id?: string | undefined;
|
|
2436
2436
|
key_issuing_request_id?: string | undefined;
|
|
2437
2437
|
door_names?: string[] | undefined;
|
|
2438
2438
|
} | undefined;
|
|
@@ -2507,10 +2507,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2507
2507
|
credential_id?: string | undefined;
|
|
2508
2508
|
} | undefined;
|
|
2509
2509
|
assa_abloy_vostio_metadata?: {
|
|
2510
|
+
key_id?: string | undefined;
|
|
2510
2511
|
endpoint_id?: string | undefined;
|
|
2511
2512
|
auto_join?: boolean | undefined;
|
|
2512
2513
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2513
|
-
key_id?: string | undefined;
|
|
2514
2514
|
key_issuing_request_id?: string | undefined;
|
|
2515
2515
|
door_names?: string[] | undefined;
|
|
2516
2516
|
} | undefined;
|
|
@@ -2579,10 +2579,10 @@ export declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
2579
2579
|
credential_id?: string | undefined;
|
|
2580
2580
|
} | undefined;
|
|
2581
2581
|
assa_abloy_vostio_metadata?: {
|
|
2582
|
+
key_id?: string | undefined;
|
|
2582
2583
|
endpoint_id?: string | undefined;
|
|
2583
2584
|
auto_join?: boolean | undefined;
|
|
2584
2585
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
2585
|
-
key_id?: string | undefined;
|
|
2586
2586
|
key_issuing_request_id?: string | undefined;
|
|
2587
2587
|
door_names?: string[] | undefined;
|
|
2588
2588
|
} | undefined;
|
|
@@ -175,17 +175,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
175
175
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
176
176
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
177
177
|
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
key_id?: string | undefined;
|
|
178
179
|
endpoint_id?: string | undefined;
|
|
179
180
|
auto_join?: boolean | undefined;
|
|
180
181
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
181
|
-
key_id?: string | undefined;
|
|
182
182
|
key_issuing_request_id?: string | undefined;
|
|
183
183
|
door_names?: string[] | undefined;
|
|
184
184
|
}, {
|
|
185
|
+
key_id?: string | undefined;
|
|
185
186
|
endpoint_id?: string | undefined;
|
|
186
187
|
auto_join?: boolean | undefined;
|
|
187
188
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
188
|
-
key_id?: string | undefined;
|
|
189
189
|
key_issuing_request_id?: string | undefined;
|
|
190
190
|
door_names?: string[] | undefined;
|
|
191
191
|
}>>;
|
|
@@ -243,10 +243,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
243
243
|
credential_id?: string | undefined;
|
|
244
244
|
} | undefined;
|
|
245
245
|
assa_abloy_vostio_metadata?: {
|
|
246
|
+
key_id?: string | undefined;
|
|
246
247
|
endpoint_id?: string | undefined;
|
|
247
248
|
auto_join?: boolean | undefined;
|
|
248
249
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
249
|
-
key_id?: string | undefined;
|
|
250
250
|
key_issuing_request_id?: string | undefined;
|
|
251
251
|
door_names?: string[] | undefined;
|
|
252
252
|
} | undefined;
|
|
@@ -315,10 +315,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
315
315
|
credential_id?: string | undefined;
|
|
316
316
|
} | undefined;
|
|
317
317
|
assa_abloy_vostio_metadata?: {
|
|
318
|
+
key_id?: string | undefined;
|
|
318
319
|
endpoint_id?: string | undefined;
|
|
319
320
|
auto_join?: boolean | undefined;
|
|
320
321
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
321
|
-
key_id?: string | undefined;
|
|
322
322
|
key_issuing_request_id?: string | undefined;
|
|
323
323
|
door_names?: string[] | undefined;
|
|
324
324
|
} | undefined;
|
|
@@ -484,17 +484,17 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
484
484
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
485
485
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
486
486
|
}, "strip", z.ZodTypeAny, {
|
|
487
|
+
key_id?: string | undefined;
|
|
487
488
|
endpoint_id?: string | undefined;
|
|
488
489
|
auto_join?: boolean | undefined;
|
|
489
490
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
490
|
-
key_id?: string | undefined;
|
|
491
491
|
key_issuing_request_id?: string | undefined;
|
|
492
492
|
door_names?: string[] | undefined;
|
|
493
493
|
}, {
|
|
494
|
+
key_id?: string | undefined;
|
|
494
495
|
endpoint_id?: string | undefined;
|
|
495
496
|
auto_join?: boolean | undefined;
|
|
496
497
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
497
|
-
key_id?: string | undefined;
|
|
498
498
|
key_issuing_request_id?: string | undefined;
|
|
499
499
|
door_names?: string[] | undefined;
|
|
500
500
|
}>>;
|
|
@@ -552,10 +552,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
552
552
|
credential_id?: string | undefined;
|
|
553
553
|
} | undefined;
|
|
554
554
|
assa_abloy_vostio_metadata?: {
|
|
555
|
+
key_id?: string | undefined;
|
|
555
556
|
endpoint_id?: string | undefined;
|
|
556
557
|
auto_join?: boolean | undefined;
|
|
557
558
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
558
|
-
key_id?: string | undefined;
|
|
559
559
|
key_issuing_request_id?: string | undefined;
|
|
560
560
|
door_names?: string[] | undefined;
|
|
561
561
|
} | undefined;
|
|
@@ -624,10 +624,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
624
624
|
credential_id?: string | undefined;
|
|
625
625
|
} | undefined;
|
|
626
626
|
assa_abloy_vostio_metadata?: {
|
|
627
|
+
key_id?: string | undefined;
|
|
627
628
|
endpoint_id?: string | undefined;
|
|
628
629
|
auto_join?: boolean | undefined;
|
|
629
630
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
630
|
-
key_id?: string | undefined;
|
|
631
631
|
key_issuing_request_id?: string | undefined;
|
|
632
632
|
door_names?: string[] | undefined;
|
|
633
633
|
} | undefined;
|
|
@@ -701,10 +701,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
701
701
|
credential_id?: string | undefined;
|
|
702
702
|
} | undefined;
|
|
703
703
|
assa_abloy_vostio_metadata?: {
|
|
704
|
+
key_id?: string | undefined;
|
|
704
705
|
endpoint_id?: string | undefined;
|
|
705
706
|
auto_join?: boolean | undefined;
|
|
706
707
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
707
|
-
key_id?: string | undefined;
|
|
708
708
|
key_issuing_request_id?: string | undefined;
|
|
709
709
|
door_names?: string[] | undefined;
|
|
710
710
|
} | undefined;
|
|
@@ -773,10 +773,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
773
773
|
credential_id?: string | undefined;
|
|
774
774
|
} | undefined;
|
|
775
775
|
assa_abloy_vostio_metadata?: {
|
|
776
|
+
key_id?: string | undefined;
|
|
776
777
|
endpoint_id?: string | undefined;
|
|
777
778
|
auto_join?: boolean | undefined;
|
|
778
779
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
779
|
-
key_id?: string | undefined;
|
|
780
780
|
key_issuing_request_id?: string | undefined;
|
|
781
781
|
door_names?: string[] | undefined;
|
|
782
782
|
} | undefined;
|
|
@@ -851,10 +851,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
851
851
|
credential_id?: string | undefined;
|
|
852
852
|
} | undefined;
|
|
853
853
|
assa_abloy_vostio_metadata?: {
|
|
854
|
+
key_id?: string | undefined;
|
|
854
855
|
endpoint_id?: string | undefined;
|
|
855
856
|
auto_join?: boolean | undefined;
|
|
856
857
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
857
|
-
key_id?: string | undefined;
|
|
858
858
|
key_issuing_request_id?: string | undefined;
|
|
859
859
|
door_names?: string[] | undefined;
|
|
860
860
|
} | undefined;
|
|
@@ -923,10 +923,10 @@ export declare const encode_credential_action_attempt: z.ZodDiscriminatedUnion<"
|
|
|
923
923
|
credential_id?: string | undefined;
|
|
924
924
|
} | undefined;
|
|
925
925
|
assa_abloy_vostio_metadata?: {
|
|
926
|
+
key_id?: string | undefined;
|
|
926
927
|
endpoint_id?: string | undefined;
|
|
927
928
|
auto_join?: boolean | undefined;
|
|
928
929
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
929
|
-
key_id?: string | undefined;
|
|
930
930
|
key_issuing_request_id?: string | undefined;
|
|
931
931
|
door_names?: string[] | undefined;
|
|
932
932
|
} | undefined;
|