@seamapi/types 1.501.0 → 1.503.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 +18 -133
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +179 -1358
- package/dist/index.cjs +18 -133
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +3 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +4 -0
- 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 +3 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +1 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.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 +171 -1196
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -100
- package/lib/seam/connect/models/devices/device-metadata.js +1 -62
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -140
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -100
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +10 -91
- package/lib/seam/connect/openapi.js +12 -112
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +43 -663
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +6 -0
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -62
- package/src/lib/seam/connect/openapi.ts +14 -124
- package/src/lib/seam/connect/route-types.ts +43 -663
|
@@ -989,68 +989,11 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
989
989
|
product_type: string;
|
|
990
990
|
}>>;
|
|
991
991
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
992
|
-
|
|
993
|
-
device_name: z.ZodString;
|
|
994
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
995
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
996
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
997
|
-
subscription_plan: z.ZodString;
|
|
998
|
-
status_type: z.ZodString;
|
|
999
|
-
current_or_last_store_id: z.ZodNumber;
|
|
1000
|
-
last_movement: z.ZodString;
|
|
1001
|
-
address: z.ZodNullable<z.ZodString>;
|
|
1002
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
1003
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
1004
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
1005
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
1006
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
1007
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
1008
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
1009
|
-
default_office_id: z.ZodNumber;
|
|
1010
|
-
fob_id: z.ZodNumber;
|
|
1011
|
-
has_photo: z.ZodBoolean;
|
|
992
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
1012
993
|
}, "strip", z.ZodTypeAny, {
|
|
1013
|
-
device_name
|
|
1014
|
-
key_id: string;
|
|
1015
|
-
property_id: string | null;
|
|
1016
|
-
property_postcode: string | null;
|
|
1017
|
-
key_notes: string | null;
|
|
1018
|
-
subscription_plan: string;
|
|
1019
|
-
status_type: string;
|
|
1020
|
-
current_or_last_store_id: number;
|
|
1021
|
-
last_movement: string;
|
|
1022
|
-
address: string | null;
|
|
1023
|
-
current_status: string | null;
|
|
1024
|
-
current_user_name: string | null;
|
|
1025
|
-
current_user_email: string | null;
|
|
1026
|
-
current_user_phone_number: string | null;
|
|
1027
|
-
current_user_company: string | null;
|
|
1028
|
-
handover_method: string | null;
|
|
1029
|
-
keynest_app_user: string | null;
|
|
1030
|
-
default_office_id: number;
|
|
1031
|
-
fob_id: number;
|
|
1032
|
-
has_photo: boolean;
|
|
994
|
+
device_name?: string | undefined;
|
|
1033
995
|
}, {
|
|
1034
|
-
device_name
|
|
1035
|
-
key_id: string;
|
|
1036
|
-
property_id: string | null;
|
|
1037
|
-
property_postcode: string | null;
|
|
1038
|
-
key_notes: string | null;
|
|
1039
|
-
subscription_plan: string;
|
|
1040
|
-
status_type: string;
|
|
1041
|
-
current_or_last_store_id: number;
|
|
1042
|
-
last_movement: string;
|
|
1043
|
-
address: string | null;
|
|
1044
|
-
current_status: string | null;
|
|
1045
|
-
current_user_name: string | null;
|
|
1046
|
-
current_user_email: string | null;
|
|
1047
|
-
current_user_phone_number: string | null;
|
|
1048
|
-
current_user_company: string | null;
|
|
1049
|
-
handover_method: string | null;
|
|
1050
|
-
keynest_app_user: string | null;
|
|
1051
|
-
default_office_id: number;
|
|
1052
|
-
fob_id: number;
|
|
1053
|
-
has_photo: boolean;
|
|
996
|
+
device_name?: string | undefined;
|
|
1054
997
|
}>>;
|
|
1055
998
|
}, "strip", z.ZodTypeAny, {
|
|
1056
999
|
ecobee_metadata?: {
|
|
@@ -1286,26 +1229,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1286
1229
|
product_type: string;
|
|
1287
1230
|
} | undefined;
|
|
1288
1231
|
keynest_metadata?: {
|
|
1289
|
-
device_name
|
|
1290
|
-
key_id: string;
|
|
1291
|
-
property_id: string | null;
|
|
1292
|
-
property_postcode: string | null;
|
|
1293
|
-
key_notes: string | null;
|
|
1294
|
-
subscription_plan: string;
|
|
1295
|
-
status_type: string;
|
|
1296
|
-
current_or_last_store_id: number;
|
|
1297
|
-
last_movement: string;
|
|
1298
|
-
address: string | null;
|
|
1299
|
-
current_status: string | null;
|
|
1300
|
-
current_user_name: string | null;
|
|
1301
|
-
current_user_email: string | null;
|
|
1302
|
-
current_user_phone_number: string | null;
|
|
1303
|
-
current_user_company: string | null;
|
|
1304
|
-
handover_method: string | null;
|
|
1305
|
-
keynest_app_user: string | null;
|
|
1306
|
-
default_office_id: number;
|
|
1307
|
-
fob_id: number;
|
|
1308
|
-
has_photo: boolean;
|
|
1232
|
+
device_name?: string | undefined;
|
|
1309
1233
|
} | undefined;
|
|
1310
1234
|
}, {
|
|
1311
1235
|
ecobee_metadata?: {
|
|
@@ -1541,26 +1465,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1541
1465
|
product_type: string;
|
|
1542
1466
|
} | undefined;
|
|
1543
1467
|
keynest_metadata?: {
|
|
1544
|
-
device_name
|
|
1545
|
-
key_id: string;
|
|
1546
|
-
property_id: string | null;
|
|
1547
|
-
property_postcode: string | null;
|
|
1548
|
-
key_notes: string | null;
|
|
1549
|
-
subscription_plan: string;
|
|
1550
|
-
status_type: string;
|
|
1551
|
-
current_or_last_store_id: number;
|
|
1552
|
-
last_movement: string;
|
|
1553
|
-
address: string | null;
|
|
1554
|
-
current_status: string | null;
|
|
1555
|
-
current_user_name: string | null;
|
|
1556
|
-
current_user_email: string | null;
|
|
1557
|
-
current_user_phone_number: string | null;
|
|
1558
|
-
current_user_company: string | null;
|
|
1559
|
-
handover_method: string | null;
|
|
1560
|
-
keynest_app_user: string | null;
|
|
1561
|
-
default_office_id: number;
|
|
1562
|
-
fob_id: number;
|
|
1563
|
-
has_photo: boolean;
|
|
1468
|
+
device_name?: string | undefined;
|
|
1564
1469
|
} | undefined;
|
|
1565
1470
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
1566
1471
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -3337,26 +3242,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3337
3242
|
product_type: string;
|
|
3338
3243
|
} | undefined;
|
|
3339
3244
|
keynest_metadata?: {
|
|
3340
|
-
device_name
|
|
3341
|
-
key_id: string;
|
|
3342
|
-
property_id: string | null;
|
|
3343
|
-
property_postcode: string | null;
|
|
3344
|
-
key_notes: string | null;
|
|
3345
|
-
subscription_plan: string;
|
|
3346
|
-
status_type: string;
|
|
3347
|
-
current_or_last_store_id: number;
|
|
3348
|
-
last_movement: string;
|
|
3349
|
-
address: string | null;
|
|
3350
|
-
current_status: string | null;
|
|
3351
|
-
current_user_name: string | null;
|
|
3352
|
-
current_user_email: string | null;
|
|
3353
|
-
current_user_phone_number: string | null;
|
|
3354
|
-
current_user_company: string | null;
|
|
3355
|
-
handover_method: string | null;
|
|
3356
|
-
keynest_app_user: string | null;
|
|
3357
|
-
default_office_id: number;
|
|
3358
|
-
fob_id: number;
|
|
3359
|
-
has_photo: boolean;
|
|
3245
|
+
device_name?: string | undefined;
|
|
3360
3246
|
} | undefined;
|
|
3361
3247
|
} & {
|
|
3362
3248
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -3995,26 +3881,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3995
3881
|
product_type: string;
|
|
3996
3882
|
} | undefined;
|
|
3997
3883
|
keynest_metadata?: {
|
|
3998
|
-
device_name
|
|
3999
|
-
key_id: string;
|
|
4000
|
-
property_id: string | null;
|
|
4001
|
-
property_postcode: string | null;
|
|
4002
|
-
key_notes: string | null;
|
|
4003
|
-
subscription_plan: string;
|
|
4004
|
-
status_type: string;
|
|
4005
|
-
current_or_last_store_id: number;
|
|
4006
|
-
last_movement: string;
|
|
4007
|
-
address: string | null;
|
|
4008
|
-
current_status: string | null;
|
|
4009
|
-
current_user_name: string | null;
|
|
4010
|
-
current_user_email: string | null;
|
|
4011
|
-
current_user_phone_number: string | null;
|
|
4012
|
-
current_user_company: string | null;
|
|
4013
|
-
handover_method: string | null;
|
|
4014
|
-
keynest_app_user: string | null;
|
|
4015
|
-
default_office_id: number;
|
|
4016
|
-
fob_id: number;
|
|
4017
|
-
has_photo: boolean;
|
|
3884
|
+
device_name?: string | undefined;
|
|
4018
3885
|
} | undefined;
|
|
4019
3886
|
} & {
|
|
4020
3887
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -5605,26 +5472,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5605
5472
|
product_type: string;
|
|
5606
5473
|
} | undefined;
|
|
5607
5474
|
keynest_metadata?: {
|
|
5608
|
-
device_name
|
|
5609
|
-
key_id: string;
|
|
5610
|
-
property_id: string | null;
|
|
5611
|
-
property_postcode: string | null;
|
|
5612
|
-
key_notes: string | null;
|
|
5613
|
-
subscription_plan: string;
|
|
5614
|
-
status_type: string;
|
|
5615
|
-
current_or_last_store_id: number;
|
|
5616
|
-
last_movement: string;
|
|
5617
|
-
address: string | null;
|
|
5618
|
-
current_status: string | null;
|
|
5619
|
-
current_user_name: string | null;
|
|
5620
|
-
current_user_email: string | null;
|
|
5621
|
-
current_user_phone_number: string | null;
|
|
5622
|
-
current_user_company: string | null;
|
|
5623
|
-
handover_method: string | null;
|
|
5624
|
-
keynest_app_user: string | null;
|
|
5625
|
-
default_office_id: number;
|
|
5626
|
-
fob_id: number;
|
|
5627
|
-
has_photo: boolean;
|
|
5475
|
+
device_name?: string | undefined;
|
|
5628
5476
|
} | undefined;
|
|
5629
5477
|
} & {
|
|
5630
5478
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -6472,26 +6320,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6472
6320
|
product_type: string;
|
|
6473
6321
|
} | undefined;
|
|
6474
6322
|
keynest_metadata?: {
|
|
6475
|
-
device_name
|
|
6476
|
-
key_id: string;
|
|
6477
|
-
property_id: string | null;
|
|
6478
|
-
property_postcode: string | null;
|
|
6479
|
-
key_notes: string | null;
|
|
6480
|
-
subscription_plan: string;
|
|
6481
|
-
status_type: string;
|
|
6482
|
-
current_or_last_store_id: number;
|
|
6483
|
-
last_movement: string;
|
|
6484
|
-
address: string | null;
|
|
6485
|
-
current_status: string | null;
|
|
6486
|
-
current_user_name: string | null;
|
|
6487
|
-
current_user_email: string | null;
|
|
6488
|
-
current_user_phone_number: string | null;
|
|
6489
|
-
current_user_company: string | null;
|
|
6490
|
-
handover_method: string | null;
|
|
6491
|
-
keynest_app_user: string | null;
|
|
6492
|
-
default_office_id: number;
|
|
6493
|
-
fob_id: number;
|
|
6494
|
-
has_photo: boolean;
|
|
6323
|
+
device_name?: string | undefined;
|
|
6495
6324
|
} | undefined;
|
|
6496
6325
|
} & {
|
|
6497
6326
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -7853,68 +7682,11 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
7853
7682
|
product_type: string;
|
|
7854
7683
|
}>>;
|
|
7855
7684
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
7856
|
-
|
|
7857
|
-
device_name: z.ZodString;
|
|
7858
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
7859
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
7860
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
7861
|
-
subscription_plan: z.ZodString;
|
|
7862
|
-
status_type: z.ZodString;
|
|
7863
|
-
current_or_last_store_id: z.ZodNumber;
|
|
7864
|
-
last_movement: z.ZodString;
|
|
7865
|
-
address: z.ZodNullable<z.ZodString>;
|
|
7866
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
7867
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
7868
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
7869
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
7870
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
7871
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
7872
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
7873
|
-
default_office_id: z.ZodNumber;
|
|
7874
|
-
fob_id: z.ZodNumber;
|
|
7875
|
-
has_photo: z.ZodBoolean;
|
|
7685
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
7876
7686
|
}, "strip", z.ZodTypeAny, {
|
|
7877
|
-
device_name
|
|
7878
|
-
key_id: string;
|
|
7879
|
-
property_id: string | null;
|
|
7880
|
-
property_postcode: string | null;
|
|
7881
|
-
key_notes: string | null;
|
|
7882
|
-
subscription_plan: string;
|
|
7883
|
-
status_type: string;
|
|
7884
|
-
current_or_last_store_id: number;
|
|
7885
|
-
last_movement: string;
|
|
7886
|
-
address: string | null;
|
|
7887
|
-
current_status: string | null;
|
|
7888
|
-
current_user_name: string | null;
|
|
7889
|
-
current_user_email: string | null;
|
|
7890
|
-
current_user_phone_number: string | null;
|
|
7891
|
-
current_user_company: string | null;
|
|
7892
|
-
handover_method: string | null;
|
|
7893
|
-
keynest_app_user: string | null;
|
|
7894
|
-
default_office_id: number;
|
|
7895
|
-
fob_id: number;
|
|
7896
|
-
has_photo: boolean;
|
|
7687
|
+
device_name?: string | undefined;
|
|
7897
7688
|
}, {
|
|
7898
|
-
device_name
|
|
7899
|
-
key_id: string;
|
|
7900
|
-
property_id: string | null;
|
|
7901
|
-
property_postcode: string | null;
|
|
7902
|
-
key_notes: string | null;
|
|
7903
|
-
subscription_plan: string;
|
|
7904
|
-
status_type: string;
|
|
7905
|
-
current_or_last_store_id: number;
|
|
7906
|
-
last_movement: string;
|
|
7907
|
-
address: string | null;
|
|
7908
|
-
current_status: string | null;
|
|
7909
|
-
current_user_name: string | null;
|
|
7910
|
-
current_user_email: string | null;
|
|
7911
|
-
current_user_phone_number: string | null;
|
|
7912
|
-
current_user_company: string | null;
|
|
7913
|
-
handover_method: string | null;
|
|
7914
|
-
keynest_app_user: string | null;
|
|
7915
|
-
default_office_id: number;
|
|
7916
|
-
fob_id: number;
|
|
7917
|
-
has_photo: boolean;
|
|
7689
|
+
device_name?: string | undefined;
|
|
7918
7690
|
}>>;
|
|
7919
7691
|
}, "strip", z.ZodTypeAny, {
|
|
7920
7692
|
ecobee_metadata?: {
|
|
@@ -8150,26 +7922,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8150
7922
|
product_type: string;
|
|
8151
7923
|
} | undefined;
|
|
8152
7924
|
keynest_metadata?: {
|
|
8153
|
-
device_name
|
|
8154
|
-
key_id: string;
|
|
8155
|
-
property_id: string | null;
|
|
8156
|
-
property_postcode: string | null;
|
|
8157
|
-
key_notes: string | null;
|
|
8158
|
-
subscription_plan: string;
|
|
8159
|
-
status_type: string;
|
|
8160
|
-
current_or_last_store_id: number;
|
|
8161
|
-
last_movement: string;
|
|
8162
|
-
address: string | null;
|
|
8163
|
-
current_status: string | null;
|
|
8164
|
-
current_user_name: string | null;
|
|
8165
|
-
current_user_email: string | null;
|
|
8166
|
-
current_user_phone_number: string | null;
|
|
8167
|
-
current_user_company: string | null;
|
|
8168
|
-
handover_method: string | null;
|
|
8169
|
-
keynest_app_user: string | null;
|
|
8170
|
-
default_office_id: number;
|
|
8171
|
-
fob_id: number;
|
|
8172
|
-
has_photo: boolean;
|
|
7925
|
+
device_name?: string | undefined;
|
|
8173
7926
|
} | undefined;
|
|
8174
7927
|
}, {
|
|
8175
7928
|
ecobee_metadata?: {
|
|
@@ -8405,26 +8158,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8405
8158
|
product_type: string;
|
|
8406
8159
|
} | undefined;
|
|
8407
8160
|
keynest_metadata?: {
|
|
8408
|
-
device_name
|
|
8409
|
-
key_id: string;
|
|
8410
|
-
property_id: string | null;
|
|
8411
|
-
property_postcode: string | null;
|
|
8412
|
-
key_notes: string | null;
|
|
8413
|
-
subscription_plan: string;
|
|
8414
|
-
status_type: string;
|
|
8415
|
-
current_or_last_store_id: number;
|
|
8416
|
-
last_movement: string;
|
|
8417
|
-
address: string | null;
|
|
8418
|
-
current_status: string | null;
|
|
8419
|
-
current_user_name: string | null;
|
|
8420
|
-
current_user_email: string | null;
|
|
8421
|
-
current_user_phone_number: string | null;
|
|
8422
|
-
current_user_company: string | null;
|
|
8423
|
-
handover_method: string | null;
|
|
8424
|
-
keynest_app_user: string | null;
|
|
8425
|
-
default_office_id: number;
|
|
8426
|
-
fob_id: number;
|
|
8427
|
-
has_photo: boolean;
|
|
8161
|
+
device_name?: string | undefined;
|
|
8428
8162
|
} | undefined;
|
|
8429
8163
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
8430
8164
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -10201,26 +9935,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10201
9935
|
product_type: string;
|
|
10202
9936
|
} | undefined;
|
|
10203
9937
|
keynest_metadata?: {
|
|
10204
|
-
device_name
|
|
10205
|
-
key_id: string;
|
|
10206
|
-
property_id: string | null;
|
|
10207
|
-
property_postcode: string | null;
|
|
10208
|
-
key_notes: string | null;
|
|
10209
|
-
subscription_plan: string;
|
|
10210
|
-
status_type: string;
|
|
10211
|
-
current_or_last_store_id: number;
|
|
10212
|
-
last_movement: string;
|
|
10213
|
-
address: string | null;
|
|
10214
|
-
current_status: string | null;
|
|
10215
|
-
current_user_name: string | null;
|
|
10216
|
-
current_user_email: string | null;
|
|
10217
|
-
current_user_phone_number: string | null;
|
|
10218
|
-
current_user_company: string | null;
|
|
10219
|
-
handover_method: string | null;
|
|
10220
|
-
keynest_app_user: string | null;
|
|
10221
|
-
default_office_id: number;
|
|
10222
|
-
fob_id: number;
|
|
10223
|
-
has_photo: boolean;
|
|
9938
|
+
device_name?: string | undefined;
|
|
10224
9939
|
} | undefined;
|
|
10225
9940
|
} & {
|
|
10226
9941
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -10859,26 +10574,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10859
10574
|
product_type: string;
|
|
10860
10575
|
} | undefined;
|
|
10861
10576
|
keynest_metadata?: {
|
|
10862
|
-
device_name
|
|
10863
|
-
key_id: string;
|
|
10864
|
-
property_id: string | null;
|
|
10865
|
-
property_postcode: string | null;
|
|
10866
|
-
key_notes: string | null;
|
|
10867
|
-
subscription_plan: string;
|
|
10868
|
-
status_type: string;
|
|
10869
|
-
current_or_last_store_id: number;
|
|
10870
|
-
last_movement: string;
|
|
10871
|
-
address: string | null;
|
|
10872
|
-
current_status: string | null;
|
|
10873
|
-
current_user_name: string | null;
|
|
10874
|
-
current_user_email: string | null;
|
|
10875
|
-
current_user_phone_number: string | null;
|
|
10876
|
-
current_user_company: string | null;
|
|
10877
|
-
handover_method: string | null;
|
|
10878
|
-
keynest_app_user: string | null;
|
|
10879
|
-
default_office_id: number;
|
|
10880
|
-
fob_id: number;
|
|
10881
|
-
has_photo: boolean;
|
|
10577
|
+
device_name?: string | undefined;
|
|
10882
10578
|
} | undefined;
|
|
10883
10579
|
} & {
|
|
10884
10580
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -12644,26 +12340,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12644
12340
|
product_type: string;
|
|
12645
12341
|
} | undefined;
|
|
12646
12342
|
keynest_metadata?: {
|
|
12647
|
-
device_name
|
|
12648
|
-
key_id: string;
|
|
12649
|
-
property_id: string | null;
|
|
12650
|
-
property_postcode: string | null;
|
|
12651
|
-
key_notes: string | null;
|
|
12652
|
-
subscription_plan: string;
|
|
12653
|
-
status_type: string;
|
|
12654
|
-
current_or_last_store_id: number;
|
|
12655
|
-
last_movement: string;
|
|
12656
|
-
address: string | null;
|
|
12657
|
-
current_status: string | null;
|
|
12658
|
-
current_user_name: string | null;
|
|
12659
|
-
current_user_email: string | null;
|
|
12660
|
-
current_user_phone_number: string | null;
|
|
12661
|
-
current_user_company: string | null;
|
|
12662
|
-
handover_method: string | null;
|
|
12663
|
-
keynest_app_user: string | null;
|
|
12664
|
-
default_office_id: number;
|
|
12665
|
-
fob_id: number;
|
|
12666
|
-
has_photo: boolean;
|
|
12343
|
+
device_name?: string | undefined;
|
|
12667
12344
|
} | undefined;
|
|
12668
12345
|
} & {
|
|
12669
12346
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -13557,26 +13234,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13557
13234
|
product_type: string;
|
|
13558
13235
|
} | undefined;
|
|
13559
13236
|
keynest_metadata?: {
|
|
13560
|
-
device_name
|
|
13561
|
-
key_id: string;
|
|
13562
|
-
property_id: string | null;
|
|
13563
|
-
property_postcode: string | null;
|
|
13564
|
-
key_notes: string | null;
|
|
13565
|
-
subscription_plan: string;
|
|
13566
|
-
status_type: string;
|
|
13567
|
-
current_or_last_store_id: number;
|
|
13568
|
-
last_movement: string;
|
|
13569
|
-
address: string | null;
|
|
13570
|
-
current_status: string | null;
|
|
13571
|
-
current_user_name: string | null;
|
|
13572
|
-
current_user_email: string | null;
|
|
13573
|
-
current_user_phone_number: string | null;
|
|
13574
|
-
current_user_company: string | null;
|
|
13575
|
-
handover_method: string | null;
|
|
13576
|
-
keynest_app_user: string | null;
|
|
13577
|
-
default_office_id: number;
|
|
13578
|
-
fob_id: number;
|
|
13579
|
-
has_photo: boolean;
|
|
13237
|
+
device_name?: string | undefined;
|
|
13580
13238
|
} | undefined;
|
|
13581
13239
|
} & {
|
|
13582
13240
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -14984,68 +14642,11 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
14984
14642
|
product_type: string;
|
|
14985
14643
|
}>>;
|
|
14986
14644
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
14987
|
-
|
|
14988
|
-
device_name: z.ZodString;
|
|
14989
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
14990
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
14991
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
14992
|
-
subscription_plan: z.ZodString;
|
|
14993
|
-
status_type: z.ZodString;
|
|
14994
|
-
current_or_last_store_id: z.ZodNumber;
|
|
14995
|
-
last_movement: z.ZodString;
|
|
14996
|
-
address: z.ZodNullable<z.ZodString>;
|
|
14997
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
14998
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
14999
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
15000
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
15001
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
15002
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
15003
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
15004
|
-
default_office_id: z.ZodNumber;
|
|
15005
|
-
fob_id: z.ZodNumber;
|
|
15006
|
-
has_photo: z.ZodBoolean;
|
|
14645
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
15007
14646
|
}, "strip", z.ZodTypeAny, {
|
|
15008
|
-
device_name
|
|
15009
|
-
key_id: string;
|
|
15010
|
-
property_id: string | null;
|
|
15011
|
-
property_postcode: string | null;
|
|
15012
|
-
key_notes: string | null;
|
|
15013
|
-
subscription_plan: string;
|
|
15014
|
-
status_type: string;
|
|
15015
|
-
current_or_last_store_id: number;
|
|
15016
|
-
last_movement: string;
|
|
15017
|
-
address: string | null;
|
|
15018
|
-
current_status: string | null;
|
|
15019
|
-
current_user_name: string | null;
|
|
15020
|
-
current_user_email: string | null;
|
|
15021
|
-
current_user_phone_number: string | null;
|
|
15022
|
-
current_user_company: string | null;
|
|
15023
|
-
handover_method: string | null;
|
|
15024
|
-
keynest_app_user: string | null;
|
|
15025
|
-
default_office_id: number;
|
|
15026
|
-
fob_id: number;
|
|
15027
|
-
has_photo: boolean;
|
|
14647
|
+
device_name?: string | undefined;
|
|
15028
14648
|
}, {
|
|
15029
|
-
device_name
|
|
15030
|
-
key_id: string;
|
|
15031
|
-
property_id: string | null;
|
|
15032
|
-
property_postcode: string | null;
|
|
15033
|
-
key_notes: string | null;
|
|
15034
|
-
subscription_plan: string;
|
|
15035
|
-
status_type: string;
|
|
15036
|
-
current_or_last_store_id: number;
|
|
15037
|
-
last_movement: string;
|
|
15038
|
-
address: string | null;
|
|
15039
|
-
current_status: string | null;
|
|
15040
|
-
current_user_name: string | null;
|
|
15041
|
-
current_user_email: string | null;
|
|
15042
|
-
current_user_phone_number: string | null;
|
|
15043
|
-
current_user_company: string | null;
|
|
15044
|
-
handover_method: string | null;
|
|
15045
|
-
keynest_app_user: string | null;
|
|
15046
|
-
default_office_id: number;
|
|
15047
|
-
fob_id: number;
|
|
15048
|
-
has_photo: boolean;
|
|
14649
|
+
device_name?: string | undefined;
|
|
15049
14650
|
}>>;
|
|
15050
14651
|
}, "strip", z.ZodTypeAny, {
|
|
15051
14652
|
ecobee_metadata?: {
|
|
@@ -15281,26 +14882,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15281
14882
|
product_type: string;
|
|
15282
14883
|
} | undefined;
|
|
15283
14884
|
keynest_metadata?: {
|
|
15284
|
-
device_name
|
|
15285
|
-
key_id: string;
|
|
15286
|
-
property_id: string | null;
|
|
15287
|
-
property_postcode: string | null;
|
|
15288
|
-
key_notes: string | null;
|
|
15289
|
-
subscription_plan: string;
|
|
15290
|
-
status_type: string;
|
|
15291
|
-
current_or_last_store_id: number;
|
|
15292
|
-
last_movement: string;
|
|
15293
|
-
address: string | null;
|
|
15294
|
-
current_status: string | null;
|
|
15295
|
-
current_user_name: string | null;
|
|
15296
|
-
current_user_email: string | null;
|
|
15297
|
-
current_user_phone_number: string | null;
|
|
15298
|
-
current_user_company: string | null;
|
|
15299
|
-
handover_method: string | null;
|
|
15300
|
-
keynest_app_user: string | null;
|
|
15301
|
-
default_office_id: number;
|
|
15302
|
-
fob_id: number;
|
|
15303
|
-
has_photo: boolean;
|
|
14885
|
+
device_name?: string | undefined;
|
|
15304
14886
|
} | undefined;
|
|
15305
14887
|
}, {
|
|
15306
14888
|
ecobee_metadata?: {
|
|
@@ -15536,26 +15118,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15536
15118
|
product_type: string;
|
|
15537
15119
|
} | undefined;
|
|
15538
15120
|
keynest_metadata?: {
|
|
15539
|
-
device_name
|
|
15540
|
-
key_id: string;
|
|
15541
|
-
property_id: string | null;
|
|
15542
|
-
property_postcode: string | null;
|
|
15543
|
-
key_notes: string | null;
|
|
15544
|
-
subscription_plan: string;
|
|
15545
|
-
status_type: string;
|
|
15546
|
-
current_or_last_store_id: number;
|
|
15547
|
-
last_movement: string;
|
|
15548
|
-
address: string | null;
|
|
15549
|
-
current_status: string | null;
|
|
15550
|
-
current_user_name: string | null;
|
|
15551
|
-
current_user_email: string | null;
|
|
15552
|
-
current_user_phone_number: string | null;
|
|
15553
|
-
current_user_company: string | null;
|
|
15554
|
-
handover_method: string | null;
|
|
15555
|
-
keynest_app_user: string | null;
|
|
15556
|
-
default_office_id: number;
|
|
15557
|
-
fob_id: number;
|
|
15558
|
-
has_photo: boolean;
|
|
15121
|
+
device_name?: string | undefined;
|
|
15559
15122
|
} | undefined;
|
|
15560
15123
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
15561
15124
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -17332,26 +16895,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17332
16895
|
product_type: string;
|
|
17333
16896
|
} | undefined;
|
|
17334
16897
|
keynest_metadata?: {
|
|
17335
|
-
device_name
|
|
17336
|
-
key_id: string;
|
|
17337
|
-
property_id: string | null;
|
|
17338
|
-
property_postcode: string | null;
|
|
17339
|
-
key_notes: string | null;
|
|
17340
|
-
subscription_plan: string;
|
|
17341
|
-
status_type: string;
|
|
17342
|
-
current_or_last_store_id: number;
|
|
17343
|
-
last_movement: string;
|
|
17344
|
-
address: string | null;
|
|
17345
|
-
current_status: string | null;
|
|
17346
|
-
current_user_name: string | null;
|
|
17347
|
-
current_user_email: string | null;
|
|
17348
|
-
current_user_phone_number: string | null;
|
|
17349
|
-
current_user_company: string | null;
|
|
17350
|
-
handover_method: string | null;
|
|
17351
|
-
keynest_app_user: string | null;
|
|
17352
|
-
default_office_id: number;
|
|
17353
|
-
fob_id: number;
|
|
17354
|
-
has_photo: boolean;
|
|
16898
|
+
device_name?: string | undefined;
|
|
17355
16899
|
} | undefined;
|
|
17356
16900
|
} & {
|
|
17357
16901
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -17990,26 +17534,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17990
17534
|
product_type: string;
|
|
17991
17535
|
} | undefined;
|
|
17992
17536
|
keynest_metadata?: {
|
|
17993
|
-
device_name
|
|
17994
|
-
key_id: string;
|
|
17995
|
-
property_id: string | null;
|
|
17996
|
-
property_postcode: string | null;
|
|
17997
|
-
key_notes: string | null;
|
|
17998
|
-
subscription_plan: string;
|
|
17999
|
-
status_type: string;
|
|
18000
|
-
current_or_last_store_id: number;
|
|
18001
|
-
last_movement: string;
|
|
18002
|
-
address: string | null;
|
|
18003
|
-
current_status: string | null;
|
|
18004
|
-
current_user_name: string | null;
|
|
18005
|
-
current_user_email: string | null;
|
|
18006
|
-
current_user_phone_number: string | null;
|
|
18007
|
-
current_user_company: string | null;
|
|
18008
|
-
handover_method: string | null;
|
|
18009
|
-
keynest_app_user: string | null;
|
|
18010
|
-
default_office_id: number;
|
|
18011
|
-
fob_id: number;
|
|
18012
|
-
has_photo: boolean;
|
|
17537
|
+
device_name?: string | undefined;
|
|
18013
17538
|
} | undefined;
|
|
18014
17539
|
} & {
|
|
18015
17540
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -18925,26 +18450,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18925
18450
|
product_type: string;
|
|
18926
18451
|
} | undefined;
|
|
18927
18452
|
keynest_metadata?: {
|
|
18928
|
-
device_name
|
|
18929
|
-
key_id: string;
|
|
18930
|
-
property_id: string | null;
|
|
18931
|
-
property_postcode: string | null;
|
|
18932
|
-
key_notes: string | null;
|
|
18933
|
-
subscription_plan: string;
|
|
18934
|
-
status_type: string;
|
|
18935
|
-
current_or_last_store_id: number;
|
|
18936
|
-
last_movement: string;
|
|
18937
|
-
address: string | null;
|
|
18938
|
-
current_status: string | null;
|
|
18939
|
-
current_user_name: string | null;
|
|
18940
|
-
current_user_email: string | null;
|
|
18941
|
-
current_user_phone_number: string | null;
|
|
18942
|
-
current_user_company: string | null;
|
|
18943
|
-
handover_method: string | null;
|
|
18944
|
-
keynest_app_user: string | null;
|
|
18945
|
-
default_office_id: number;
|
|
18946
|
-
fob_id: number;
|
|
18947
|
-
has_photo: boolean;
|
|
18453
|
+
device_name?: string | undefined;
|
|
18948
18454
|
} | undefined;
|
|
18949
18455
|
} & {
|
|
18950
18456
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -19655,26 +19161,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19655
19161
|
product_type: string;
|
|
19656
19162
|
} | undefined;
|
|
19657
19163
|
keynest_metadata?: {
|
|
19658
|
-
device_name
|
|
19659
|
-
key_id: string;
|
|
19660
|
-
property_id: string | null;
|
|
19661
|
-
property_postcode: string | null;
|
|
19662
|
-
key_notes: string | null;
|
|
19663
|
-
subscription_plan: string;
|
|
19664
|
-
status_type: string;
|
|
19665
|
-
current_or_last_store_id: number;
|
|
19666
|
-
last_movement: string;
|
|
19667
|
-
address: string | null;
|
|
19668
|
-
current_status: string | null;
|
|
19669
|
-
current_user_name: string | null;
|
|
19670
|
-
current_user_email: string | null;
|
|
19671
|
-
current_user_phone_number: string | null;
|
|
19672
|
-
current_user_company: string | null;
|
|
19673
|
-
handover_method: string | null;
|
|
19674
|
-
keynest_app_user: string | null;
|
|
19675
|
-
default_office_id: number;
|
|
19676
|
-
fob_id: number;
|
|
19677
|
-
has_photo: boolean;
|
|
19164
|
+
device_name?: string | undefined;
|
|
19678
19165
|
} | undefined;
|
|
19679
19166
|
} & {
|
|
19680
19167
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -21064,68 +20551,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21064
20551
|
product_type: string;
|
|
21065
20552
|
}>>;
|
|
21066
20553
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
21067
|
-
|
|
21068
|
-
device_name: z.ZodString;
|
|
21069
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
21070
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
21071
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
21072
|
-
subscription_plan: z.ZodString;
|
|
21073
|
-
status_type: z.ZodString;
|
|
21074
|
-
current_or_last_store_id: z.ZodNumber;
|
|
21075
|
-
last_movement: z.ZodString;
|
|
21076
|
-
address: z.ZodNullable<z.ZodString>;
|
|
21077
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
21078
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
21079
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
21080
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
21081
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
21082
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
21083
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
21084
|
-
default_office_id: z.ZodNumber;
|
|
21085
|
-
fob_id: z.ZodNumber;
|
|
21086
|
-
has_photo: z.ZodBoolean;
|
|
20554
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
21087
20555
|
}, "strip", z.ZodTypeAny, {
|
|
21088
|
-
device_name
|
|
21089
|
-
key_id: string;
|
|
21090
|
-
property_id: string | null;
|
|
21091
|
-
property_postcode: string | null;
|
|
21092
|
-
key_notes: string | null;
|
|
21093
|
-
subscription_plan: string;
|
|
21094
|
-
status_type: string;
|
|
21095
|
-
current_or_last_store_id: number;
|
|
21096
|
-
last_movement: string;
|
|
21097
|
-
address: string | null;
|
|
21098
|
-
current_status: string | null;
|
|
21099
|
-
current_user_name: string | null;
|
|
21100
|
-
current_user_email: string | null;
|
|
21101
|
-
current_user_phone_number: string | null;
|
|
21102
|
-
current_user_company: string | null;
|
|
21103
|
-
handover_method: string | null;
|
|
21104
|
-
keynest_app_user: string | null;
|
|
21105
|
-
default_office_id: number;
|
|
21106
|
-
fob_id: number;
|
|
21107
|
-
has_photo: boolean;
|
|
20556
|
+
device_name?: string | undefined;
|
|
21108
20557
|
}, {
|
|
21109
|
-
device_name
|
|
21110
|
-
key_id: string;
|
|
21111
|
-
property_id: string | null;
|
|
21112
|
-
property_postcode: string | null;
|
|
21113
|
-
key_notes: string | null;
|
|
21114
|
-
subscription_plan: string;
|
|
21115
|
-
status_type: string;
|
|
21116
|
-
current_or_last_store_id: number;
|
|
21117
|
-
last_movement: string;
|
|
21118
|
-
address: string | null;
|
|
21119
|
-
current_status: string | null;
|
|
21120
|
-
current_user_name: string | null;
|
|
21121
|
-
current_user_email: string | null;
|
|
21122
|
-
current_user_phone_number: string | null;
|
|
21123
|
-
current_user_company: string | null;
|
|
21124
|
-
handover_method: string | null;
|
|
21125
|
-
keynest_app_user: string | null;
|
|
21126
|
-
default_office_id: number;
|
|
21127
|
-
fob_id: number;
|
|
21128
|
-
has_photo: boolean;
|
|
20558
|
+
device_name?: string | undefined;
|
|
21129
20559
|
}>>;
|
|
21130
20560
|
}, "strip", z.ZodTypeAny, {
|
|
21131
20561
|
ecobee_metadata?: {
|
|
@@ -21361,26 +20791,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21361
20791
|
product_type: string;
|
|
21362
20792
|
} | undefined;
|
|
21363
20793
|
keynest_metadata?: {
|
|
21364
|
-
device_name
|
|
21365
|
-
key_id: string;
|
|
21366
|
-
property_id: string | null;
|
|
21367
|
-
property_postcode: string | null;
|
|
21368
|
-
key_notes: string | null;
|
|
21369
|
-
subscription_plan: string;
|
|
21370
|
-
status_type: string;
|
|
21371
|
-
current_or_last_store_id: number;
|
|
21372
|
-
last_movement: string;
|
|
21373
|
-
address: string | null;
|
|
21374
|
-
current_status: string | null;
|
|
21375
|
-
current_user_name: string | null;
|
|
21376
|
-
current_user_email: string | null;
|
|
21377
|
-
current_user_phone_number: string | null;
|
|
21378
|
-
current_user_company: string | null;
|
|
21379
|
-
handover_method: string | null;
|
|
21380
|
-
keynest_app_user: string | null;
|
|
21381
|
-
default_office_id: number;
|
|
21382
|
-
fob_id: number;
|
|
21383
|
-
has_photo: boolean;
|
|
20794
|
+
device_name?: string | undefined;
|
|
21384
20795
|
} | undefined;
|
|
21385
20796
|
}, {
|
|
21386
20797
|
ecobee_metadata?: {
|
|
@@ -21616,26 +21027,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21616
21027
|
product_type: string;
|
|
21617
21028
|
} | undefined;
|
|
21618
21029
|
keynest_metadata?: {
|
|
21619
|
-
device_name
|
|
21620
|
-
key_id: string;
|
|
21621
|
-
property_id: string | null;
|
|
21622
|
-
property_postcode: string | null;
|
|
21623
|
-
key_notes: string | null;
|
|
21624
|
-
subscription_plan: string;
|
|
21625
|
-
status_type: string;
|
|
21626
|
-
current_or_last_store_id: number;
|
|
21627
|
-
last_movement: string;
|
|
21628
|
-
address: string | null;
|
|
21629
|
-
current_status: string | null;
|
|
21630
|
-
current_user_name: string | null;
|
|
21631
|
-
current_user_email: string | null;
|
|
21632
|
-
current_user_phone_number: string | null;
|
|
21633
|
-
current_user_company: string | null;
|
|
21634
|
-
handover_method: string | null;
|
|
21635
|
-
keynest_app_user: string | null;
|
|
21636
|
-
default_office_id: number;
|
|
21637
|
-
fob_id: number;
|
|
21638
|
-
has_photo: boolean;
|
|
21030
|
+
device_name?: string | undefined;
|
|
21639
21031
|
} | undefined;
|
|
21640
21032
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
21641
21033
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -23412,26 +22804,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23412
22804
|
product_type: string;
|
|
23413
22805
|
} | undefined;
|
|
23414
22806
|
keynest_metadata?: {
|
|
23415
|
-
device_name
|
|
23416
|
-
key_id: string;
|
|
23417
|
-
property_id: string | null;
|
|
23418
|
-
property_postcode: string | null;
|
|
23419
|
-
key_notes: string | null;
|
|
23420
|
-
subscription_plan: string;
|
|
23421
|
-
status_type: string;
|
|
23422
|
-
current_or_last_store_id: number;
|
|
23423
|
-
last_movement: string;
|
|
23424
|
-
address: string | null;
|
|
23425
|
-
current_status: string | null;
|
|
23426
|
-
current_user_name: string | null;
|
|
23427
|
-
current_user_email: string | null;
|
|
23428
|
-
current_user_phone_number: string | null;
|
|
23429
|
-
current_user_company: string | null;
|
|
23430
|
-
handover_method: string | null;
|
|
23431
|
-
keynest_app_user: string | null;
|
|
23432
|
-
default_office_id: number;
|
|
23433
|
-
fob_id: number;
|
|
23434
|
-
has_photo: boolean;
|
|
22807
|
+
device_name?: string | undefined;
|
|
23435
22808
|
} | undefined;
|
|
23436
22809
|
} & {
|
|
23437
22810
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -24070,26 +23443,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24070
23443
|
product_type: string;
|
|
24071
23444
|
} | undefined;
|
|
24072
23445
|
keynest_metadata?: {
|
|
24073
|
-
device_name
|
|
24074
|
-
key_id: string;
|
|
24075
|
-
property_id: string | null;
|
|
24076
|
-
property_postcode: string | null;
|
|
24077
|
-
key_notes: string | null;
|
|
24078
|
-
subscription_plan: string;
|
|
24079
|
-
status_type: string;
|
|
24080
|
-
current_or_last_store_id: number;
|
|
24081
|
-
last_movement: string;
|
|
24082
|
-
address: string | null;
|
|
24083
|
-
current_status: string | null;
|
|
24084
|
-
current_user_name: string | null;
|
|
24085
|
-
current_user_email: string | null;
|
|
24086
|
-
current_user_phone_number: string | null;
|
|
24087
|
-
current_user_company: string | null;
|
|
24088
|
-
handover_method: string | null;
|
|
24089
|
-
keynest_app_user: string | null;
|
|
24090
|
-
default_office_id: number;
|
|
24091
|
-
fob_id: number;
|
|
24092
|
-
has_photo: boolean;
|
|
23446
|
+
device_name?: string | undefined;
|
|
24093
23447
|
} | undefined;
|
|
24094
23448
|
} & {
|
|
24095
23449
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -25704,17 +25058,17 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25704
25058
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
25705
25059
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
25706
25060
|
}, "strip", z.ZodTypeAny, {
|
|
25707
|
-
key_id?: string | undefined;
|
|
25708
25061
|
endpoint_id?: string | undefined;
|
|
25709
25062
|
auto_join?: boolean | undefined;
|
|
25710
25063
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25064
|
+
key_id?: string | undefined;
|
|
25711
25065
|
key_issuing_request_id?: string | undefined;
|
|
25712
25066
|
door_names?: string[] | undefined;
|
|
25713
25067
|
}, {
|
|
25714
|
-
key_id?: string | undefined;
|
|
25715
25068
|
endpoint_id?: string | undefined;
|
|
25716
25069
|
auto_join?: boolean | undefined;
|
|
25717
25070
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25071
|
+
key_id?: string | undefined;
|
|
25718
25072
|
key_issuing_request_id?: string | undefined;
|
|
25719
25073
|
door_names?: string[] | undefined;
|
|
25720
25074
|
}>>;
|
|
@@ -25772,10 +25126,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25772
25126
|
credential_id?: string | undefined;
|
|
25773
25127
|
} | undefined;
|
|
25774
25128
|
assa_abloy_vostio_metadata?: {
|
|
25775
|
-
key_id?: string | undefined;
|
|
25776
25129
|
endpoint_id?: string | undefined;
|
|
25777
25130
|
auto_join?: boolean | undefined;
|
|
25778
25131
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25132
|
+
key_id?: string | undefined;
|
|
25779
25133
|
key_issuing_request_id?: string | undefined;
|
|
25780
25134
|
door_names?: string[] | undefined;
|
|
25781
25135
|
} | undefined;
|
|
@@ -25844,10 +25198,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25844
25198
|
credential_id?: string | undefined;
|
|
25845
25199
|
} | undefined;
|
|
25846
25200
|
assa_abloy_vostio_metadata?: {
|
|
25847
|
-
key_id?: string | undefined;
|
|
25848
25201
|
endpoint_id?: string | undefined;
|
|
25849
25202
|
auto_join?: boolean | undefined;
|
|
25850
25203
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25204
|
+
key_id?: string | undefined;
|
|
25851
25205
|
key_issuing_request_id?: string | undefined;
|
|
25852
25206
|
door_names?: string[] | undefined;
|
|
25853
25207
|
} | undefined;
|
|
@@ -26014,17 +25368,17 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26014
25368
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26015
25369
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
26016
25370
|
}, "strip", z.ZodTypeAny, {
|
|
26017
|
-
key_id?: string | undefined;
|
|
26018
25371
|
endpoint_id?: string | undefined;
|
|
26019
25372
|
auto_join?: boolean | undefined;
|
|
26020
25373
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25374
|
+
key_id?: string | undefined;
|
|
26021
25375
|
key_issuing_request_id?: string | undefined;
|
|
26022
25376
|
door_names?: string[] | undefined;
|
|
26023
25377
|
}, {
|
|
26024
|
-
key_id?: string | undefined;
|
|
26025
25378
|
endpoint_id?: string | undefined;
|
|
26026
25379
|
auto_join?: boolean | undefined;
|
|
26027
25380
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25381
|
+
key_id?: string | undefined;
|
|
26028
25382
|
key_issuing_request_id?: string | undefined;
|
|
26029
25383
|
door_names?: string[] | undefined;
|
|
26030
25384
|
}>>;
|
|
@@ -26082,10 +25436,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26082
25436
|
credential_id?: string | undefined;
|
|
26083
25437
|
} | undefined;
|
|
26084
25438
|
assa_abloy_vostio_metadata?: {
|
|
26085
|
-
key_id?: string | undefined;
|
|
26086
25439
|
endpoint_id?: string | undefined;
|
|
26087
25440
|
auto_join?: boolean | undefined;
|
|
26088
25441
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25442
|
+
key_id?: string | undefined;
|
|
26089
25443
|
key_issuing_request_id?: string | undefined;
|
|
26090
25444
|
door_names?: string[] | undefined;
|
|
26091
25445
|
} | undefined;
|
|
@@ -26154,10 +25508,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26154
25508
|
credential_id?: string | undefined;
|
|
26155
25509
|
} | undefined;
|
|
26156
25510
|
assa_abloy_vostio_metadata?: {
|
|
26157
|
-
key_id?: string | undefined;
|
|
26158
25511
|
endpoint_id?: string | undefined;
|
|
26159
25512
|
auto_join?: boolean | undefined;
|
|
26160
25513
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25514
|
+
key_id?: string | undefined;
|
|
26161
25515
|
key_issuing_request_id?: string | undefined;
|
|
26162
25516
|
door_names?: string[] | undefined;
|
|
26163
25517
|
} | undefined;
|
|
@@ -26589,17 +25943,17 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26589
25943
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26590
25944
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
26591
25945
|
}, "strip", z.ZodTypeAny, {
|
|
26592
|
-
key_id?: string | undefined;
|
|
26593
25946
|
endpoint_id?: string | undefined;
|
|
26594
25947
|
auto_join?: boolean | undefined;
|
|
26595
25948
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25949
|
+
key_id?: string | undefined;
|
|
26596
25950
|
key_issuing_request_id?: string | undefined;
|
|
26597
25951
|
door_names?: string[] | undefined;
|
|
26598
25952
|
}, {
|
|
26599
|
-
key_id?: string | undefined;
|
|
26600
25953
|
endpoint_id?: string | undefined;
|
|
26601
25954
|
auto_join?: boolean | undefined;
|
|
26602
25955
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
25956
|
+
key_id?: string | undefined;
|
|
26603
25957
|
key_issuing_request_id?: string | undefined;
|
|
26604
25958
|
door_names?: string[] | undefined;
|
|
26605
25959
|
}>>;
|
|
@@ -26657,10 +26011,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26657
26011
|
credential_id?: string | undefined;
|
|
26658
26012
|
} | undefined;
|
|
26659
26013
|
assa_abloy_vostio_metadata?: {
|
|
26660
|
-
key_id?: string | undefined;
|
|
26661
26014
|
endpoint_id?: string | undefined;
|
|
26662
26015
|
auto_join?: boolean | undefined;
|
|
26663
26016
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26017
|
+
key_id?: string | undefined;
|
|
26664
26018
|
key_issuing_request_id?: string | undefined;
|
|
26665
26019
|
door_names?: string[] | undefined;
|
|
26666
26020
|
} | undefined;
|
|
@@ -26729,10 +26083,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26729
26083
|
credential_id?: string | undefined;
|
|
26730
26084
|
} | undefined;
|
|
26731
26085
|
assa_abloy_vostio_metadata?: {
|
|
26732
|
-
key_id?: string | undefined;
|
|
26733
26086
|
endpoint_id?: string | undefined;
|
|
26734
26087
|
auto_join?: boolean | undefined;
|
|
26735
26088
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26089
|
+
key_id?: string | undefined;
|
|
26736
26090
|
key_issuing_request_id?: string | undefined;
|
|
26737
26091
|
door_names?: string[] | undefined;
|
|
26738
26092
|
} | undefined;
|
|
@@ -26898,17 +26252,17 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26898
26252
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
26899
26253
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
26900
26254
|
}, "strip", z.ZodTypeAny, {
|
|
26901
|
-
key_id?: string | undefined;
|
|
26902
26255
|
endpoint_id?: string | undefined;
|
|
26903
26256
|
auto_join?: boolean | undefined;
|
|
26904
26257
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26258
|
+
key_id?: string | undefined;
|
|
26905
26259
|
key_issuing_request_id?: string | undefined;
|
|
26906
26260
|
door_names?: string[] | undefined;
|
|
26907
26261
|
}, {
|
|
26908
|
-
key_id?: string | undefined;
|
|
26909
26262
|
endpoint_id?: string | undefined;
|
|
26910
26263
|
auto_join?: boolean | undefined;
|
|
26911
26264
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26265
|
+
key_id?: string | undefined;
|
|
26912
26266
|
key_issuing_request_id?: string | undefined;
|
|
26913
26267
|
door_names?: string[] | undefined;
|
|
26914
26268
|
}>>;
|
|
@@ -26966,10 +26320,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26966
26320
|
credential_id?: string | undefined;
|
|
26967
26321
|
} | undefined;
|
|
26968
26322
|
assa_abloy_vostio_metadata?: {
|
|
26969
|
-
key_id?: string | undefined;
|
|
26970
26323
|
endpoint_id?: string | undefined;
|
|
26971
26324
|
auto_join?: boolean | undefined;
|
|
26972
26325
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26326
|
+
key_id?: string | undefined;
|
|
26973
26327
|
key_issuing_request_id?: string | undefined;
|
|
26974
26328
|
door_names?: string[] | undefined;
|
|
26975
26329
|
} | undefined;
|
|
@@ -27038,10 +26392,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27038
26392
|
credential_id?: string | undefined;
|
|
27039
26393
|
} | undefined;
|
|
27040
26394
|
assa_abloy_vostio_metadata?: {
|
|
27041
|
-
key_id?: string | undefined;
|
|
27042
26395
|
endpoint_id?: string | undefined;
|
|
27043
26396
|
auto_join?: boolean | undefined;
|
|
27044
26397
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26398
|
+
key_id?: string | undefined;
|
|
27045
26399
|
key_issuing_request_id?: string | undefined;
|
|
27046
26400
|
door_names?: string[] | undefined;
|
|
27047
26401
|
} | undefined;
|
|
@@ -27147,10 +26501,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27147
26501
|
credential_id?: string | undefined;
|
|
27148
26502
|
} | undefined;
|
|
27149
26503
|
assa_abloy_vostio_metadata?: {
|
|
27150
|
-
key_id?: string | undefined;
|
|
27151
26504
|
endpoint_id?: string | undefined;
|
|
27152
26505
|
auto_join?: boolean | undefined;
|
|
27153
26506
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26507
|
+
key_id?: string | undefined;
|
|
27154
26508
|
key_issuing_request_id?: string | undefined;
|
|
27155
26509
|
door_names?: string[] | undefined;
|
|
27156
26510
|
} | undefined;
|
|
@@ -27219,10 +26573,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27219
26573
|
credential_id?: string | undefined;
|
|
27220
26574
|
} | undefined;
|
|
27221
26575
|
assa_abloy_vostio_metadata?: {
|
|
27222
|
-
key_id?: string | undefined;
|
|
27223
26576
|
endpoint_id?: string | undefined;
|
|
27224
26577
|
auto_join?: boolean | undefined;
|
|
27225
26578
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26579
|
+
key_id?: string | undefined;
|
|
27226
26580
|
key_issuing_request_id?: string | undefined;
|
|
27227
26581
|
door_names?: string[] | undefined;
|
|
27228
26582
|
} | undefined;
|
|
@@ -27318,10 +26672,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27318
26672
|
credential_id?: string | undefined;
|
|
27319
26673
|
} | undefined;
|
|
27320
26674
|
assa_abloy_vostio_metadata?: {
|
|
27321
|
-
key_id?: string | undefined;
|
|
27322
26675
|
endpoint_id?: string | undefined;
|
|
27323
26676
|
auto_join?: boolean | undefined;
|
|
27324
26677
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26678
|
+
key_id?: string | undefined;
|
|
27325
26679
|
key_issuing_request_id?: string | undefined;
|
|
27326
26680
|
door_names?: string[] | undefined;
|
|
27327
26681
|
} | undefined;
|
|
@@ -27390,10 +26744,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27390
26744
|
credential_id?: string | undefined;
|
|
27391
26745
|
} | undefined;
|
|
27392
26746
|
assa_abloy_vostio_metadata?: {
|
|
27393
|
-
key_id?: string | undefined;
|
|
27394
26747
|
endpoint_id?: string | undefined;
|
|
27395
26748
|
auto_join?: boolean | undefined;
|
|
27396
26749
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26750
|
+
key_id?: string | undefined;
|
|
27397
26751
|
key_issuing_request_id?: string | undefined;
|
|
27398
26752
|
door_names?: string[] | undefined;
|
|
27399
26753
|
} | undefined;
|
|
@@ -27494,10 +26848,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27494
26848
|
credential_id?: string | undefined;
|
|
27495
26849
|
} | undefined;
|
|
27496
26850
|
assa_abloy_vostio_metadata?: {
|
|
27497
|
-
key_id?: string | undefined;
|
|
27498
26851
|
endpoint_id?: string | undefined;
|
|
27499
26852
|
auto_join?: boolean | undefined;
|
|
27500
26853
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26854
|
+
key_id?: string | undefined;
|
|
27501
26855
|
key_issuing_request_id?: string | undefined;
|
|
27502
26856
|
door_names?: string[] | undefined;
|
|
27503
26857
|
} | undefined;
|
|
@@ -27566,10 +26920,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27566
26920
|
credential_id?: string | undefined;
|
|
27567
26921
|
} | undefined;
|
|
27568
26922
|
assa_abloy_vostio_metadata?: {
|
|
27569
|
-
key_id?: string | undefined;
|
|
27570
26923
|
endpoint_id?: string | undefined;
|
|
27571
26924
|
auto_join?: boolean | undefined;
|
|
27572
26925
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
26926
|
+
key_id?: string | undefined;
|
|
27573
26927
|
key_issuing_request_id?: string | undefined;
|
|
27574
26928
|
door_names?: string[] | undefined;
|
|
27575
26929
|
} | undefined;
|
|
@@ -27671,10 +27025,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27671
27025
|
credential_id?: string | undefined;
|
|
27672
27026
|
} | undefined;
|
|
27673
27027
|
assa_abloy_vostio_metadata?: {
|
|
27674
|
-
key_id?: string | undefined;
|
|
27675
27028
|
endpoint_id?: string | undefined;
|
|
27676
27029
|
auto_join?: boolean | undefined;
|
|
27677
27030
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27031
|
+
key_id?: string | undefined;
|
|
27678
27032
|
key_issuing_request_id?: string | undefined;
|
|
27679
27033
|
door_names?: string[] | undefined;
|
|
27680
27034
|
} | undefined;
|
|
@@ -27743,10 +27097,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27743
27097
|
credential_id?: string | undefined;
|
|
27744
27098
|
} | undefined;
|
|
27745
27099
|
assa_abloy_vostio_metadata?: {
|
|
27746
|
-
key_id?: string | undefined;
|
|
27747
27100
|
endpoint_id?: string | undefined;
|
|
27748
27101
|
auto_join?: boolean | undefined;
|
|
27749
27102
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27103
|
+
key_id?: string | undefined;
|
|
27750
27104
|
key_issuing_request_id?: string | undefined;
|
|
27751
27105
|
door_names?: string[] | undefined;
|
|
27752
27106
|
} | undefined;
|
|
@@ -28007,17 +27361,17 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28007
27361
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28008
27362
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
28009
27363
|
}, "strip", z.ZodTypeAny, {
|
|
28010
|
-
key_id?: string | undefined;
|
|
28011
27364
|
endpoint_id?: string | undefined;
|
|
28012
27365
|
auto_join?: boolean | undefined;
|
|
28013
27366
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27367
|
+
key_id?: string | undefined;
|
|
28014
27368
|
key_issuing_request_id?: string | undefined;
|
|
28015
27369
|
door_names?: string[] | undefined;
|
|
28016
27370
|
}, {
|
|
28017
|
-
key_id?: string | undefined;
|
|
28018
27371
|
endpoint_id?: string | undefined;
|
|
28019
27372
|
auto_join?: boolean | undefined;
|
|
28020
27373
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27374
|
+
key_id?: string | undefined;
|
|
28021
27375
|
key_issuing_request_id?: string | undefined;
|
|
28022
27376
|
door_names?: string[] | undefined;
|
|
28023
27377
|
}>>;
|
|
@@ -28075,10 +27429,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28075
27429
|
credential_id?: string | undefined;
|
|
28076
27430
|
} | undefined;
|
|
28077
27431
|
assa_abloy_vostio_metadata?: {
|
|
28078
|
-
key_id?: string | undefined;
|
|
28079
27432
|
endpoint_id?: string | undefined;
|
|
28080
27433
|
auto_join?: boolean | undefined;
|
|
28081
27434
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27435
|
+
key_id?: string | undefined;
|
|
28082
27436
|
key_issuing_request_id?: string | undefined;
|
|
28083
27437
|
door_names?: string[] | undefined;
|
|
28084
27438
|
} | undefined;
|
|
@@ -28147,10 +27501,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28147
27501
|
credential_id?: string | undefined;
|
|
28148
27502
|
} | undefined;
|
|
28149
27503
|
assa_abloy_vostio_metadata?: {
|
|
28150
|
-
key_id?: string | undefined;
|
|
28151
27504
|
endpoint_id?: string | undefined;
|
|
28152
27505
|
auto_join?: boolean | undefined;
|
|
28153
27506
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27507
|
+
key_id?: string | undefined;
|
|
28154
27508
|
key_issuing_request_id?: string | undefined;
|
|
28155
27509
|
door_names?: string[] | undefined;
|
|
28156
27510
|
} | undefined;
|
|
@@ -28316,17 +27670,17 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28316
27670
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28317
27671
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
28318
27672
|
}, "strip", z.ZodTypeAny, {
|
|
28319
|
-
key_id?: string | undefined;
|
|
28320
27673
|
endpoint_id?: string | undefined;
|
|
28321
27674
|
auto_join?: boolean | undefined;
|
|
28322
27675
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27676
|
+
key_id?: string | undefined;
|
|
28323
27677
|
key_issuing_request_id?: string | undefined;
|
|
28324
27678
|
door_names?: string[] | undefined;
|
|
28325
27679
|
}, {
|
|
28326
|
-
key_id?: string | undefined;
|
|
28327
27680
|
endpoint_id?: string | undefined;
|
|
28328
27681
|
auto_join?: boolean | undefined;
|
|
28329
27682
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27683
|
+
key_id?: string | undefined;
|
|
28330
27684
|
key_issuing_request_id?: string | undefined;
|
|
28331
27685
|
door_names?: string[] | undefined;
|
|
28332
27686
|
}>>;
|
|
@@ -28384,10 +27738,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28384
27738
|
credential_id?: string | undefined;
|
|
28385
27739
|
} | undefined;
|
|
28386
27740
|
assa_abloy_vostio_metadata?: {
|
|
28387
|
-
key_id?: string | undefined;
|
|
28388
27741
|
endpoint_id?: string | undefined;
|
|
28389
27742
|
auto_join?: boolean | undefined;
|
|
28390
27743
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27744
|
+
key_id?: string | undefined;
|
|
28391
27745
|
key_issuing_request_id?: string | undefined;
|
|
28392
27746
|
door_names?: string[] | undefined;
|
|
28393
27747
|
} | undefined;
|
|
@@ -28456,10 +27810,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28456
27810
|
credential_id?: string | undefined;
|
|
28457
27811
|
} | undefined;
|
|
28458
27812
|
assa_abloy_vostio_metadata?: {
|
|
28459
|
-
key_id?: string | undefined;
|
|
28460
27813
|
endpoint_id?: string | undefined;
|
|
28461
27814
|
auto_join?: boolean | undefined;
|
|
28462
27815
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27816
|
+
key_id?: string | undefined;
|
|
28463
27817
|
key_issuing_request_id?: string | undefined;
|
|
28464
27818
|
door_names?: string[] | undefined;
|
|
28465
27819
|
} | undefined;
|
|
@@ -28533,10 +27887,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28533
27887
|
credential_id?: string | undefined;
|
|
28534
27888
|
} | undefined;
|
|
28535
27889
|
assa_abloy_vostio_metadata?: {
|
|
28536
|
-
key_id?: string | undefined;
|
|
28537
27890
|
endpoint_id?: string | undefined;
|
|
28538
27891
|
auto_join?: boolean | undefined;
|
|
28539
27892
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27893
|
+
key_id?: string | undefined;
|
|
28540
27894
|
key_issuing_request_id?: string | undefined;
|
|
28541
27895
|
door_names?: string[] | undefined;
|
|
28542
27896
|
} | undefined;
|
|
@@ -28605,10 +27959,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28605
27959
|
credential_id?: string | undefined;
|
|
28606
27960
|
} | undefined;
|
|
28607
27961
|
assa_abloy_vostio_metadata?: {
|
|
28608
|
-
key_id?: string | undefined;
|
|
28609
27962
|
endpoint_id?: string | undefined;
|
|
28610
27963
|
auto_join?: boolean | undefined;
|
|
28611
27964
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
27965
|
+
key_id?: string | undefined;
|
|
28612
27966
|
key_issuing_request_id?: string | undefined;
|
|
28613
27967
|
door_names?: string[] | undefined;
|
|
28614
27968
|
} | undefined;
|
|
@@ -28683,10 +28037,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28683
28037
|
credential_id?: string | undefined;
|
|
28684
28038
|
} | undefined;
|
|
28685
28039
|
assa_abloy_vostio_metadata?: {
|
|
28686
|
-
key_id?: string | undefined;
|
|
28687
28040
|
endpoint_id?: string | undefined;
|
|
28688
28041
|
auto_join?: boolean | undefined;
|
|
28689
28042
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28043
|
+
key_id?: string | undefined;
|
|
28690
28044
|
key_issuing_request_id?: string | undefined;
|
|
28691
28045
|
door_names?: string[] | undefined;
|
|
28692
28046
|
} | undefined;
|
|
@@ -28755,10 +28109,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28755
28109
|
credential_id?: string | undefined;
|
|
28756
28110
|
} | undefined;
|
|
28757
28111
|
assa_abloy_vostio_metadata?: {
|
|
28758
|
-
key_id?: string | undefined;
|
|
28759
28112
|
endpoint_id?: string | undefined;
|
|
28760
28113
|
auto_join?: boolean | undefined;
|
|
28761
28114
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
28115
|
+
key_id?: string | undefined;
|
|
28762
28116
|
key_issuing_request_id?: string | undefined;
|
|
28763
28117
|
door_names?: string[] | undefined;
|
|
28764
28118
|
} | undefined;
|
|
@@ -31651,68 +31005,11 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31651
31005
|
product_type: string;
|
|
31652
31006
|
}>>;
|
|
31653
31007
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
31654
|
-
|
|
31655
|
-
device_name: z.ZodString;
|
|
31656
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
31657
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
31658
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
31659
|
-
subscription_plan: z.ZodString;
|
|
31660
|
-
status_type: z.ZodString;
|
|
31661
|
-
current_or_last_store_id: z.ZodNumber;
|
|
31662
|
-
last_movement: z.ZodString;
|
|
31663
|
-
address: z.ZodNullable<z.ZodString>;
|
|
31664
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
31665
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
31666
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
31667
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
31668
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
31669
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
31670
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
31671
|
-
default_office_id: z.ZodNumber;
|
|
31672
|
-
fob_id: z.ZodNumber;
|
|
31673
|
-
has_photo: z.ZodBoolean;
|
|
31008
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
31674
31009
|
}, "strip", z.ZodTypeAny, {
|
|
31675
|
-
device_name
|
|
31676
|
-
key_id: string;
|
|
31677
|
-
property_id: string | null;
|
|
31678
|
-
property_postcode: string | null;
|
|
31679
|
-
key_notes: string | null;
|
|
31680
|
-
subscription_plan: string;
|
|
31681
|
-
status_type: string;
|
|
31682
|
-
current_or_last_store_id: number;
|
|
31683
|
-
last_movement: string;
|
|
31684
|
-
address: string | null;
|
|
31685
|
-
current_status: string | null;
|
|
31686
|
-
current_user_name: string | null;
|
|
31687
|
-
current_user_email: string | null;
|
|
31688
|
-
current_user_phone_number: string | null;
|
|
31689
|
-
current_user_company: string | null;
|
|
31690
|
-
handover_method: string | null;
|
|
31691
|
-
keynest_app_user: string | null;
|
|
31692
|
-
default_office_id: number;
|
|
31693
|
-
fob_id: number;
|
|
31694
|
-
has_photo: boolean;
|
|
31010
|
+
device_name?: string | undefined;
|
|
31695
31011
|
}, {
|
|
31696
|
-
device_name
|
|
31697
|
-
key_id: string;
|
|
31698
|
-
property_id: string | null;
|
|
31699
|
-
property_postcode: string | null;
|
|
31700
|
-
key_notes: string | null;
|
|
31701
|
-
subscription_plan: string;
|
|
31702
|
-
status_type: string;
|
|
31703
|
-
current_or_last_store_id: number;
|
|
31704
|
-
last_movement: string;
|
|
31705
|
-
address: string | null;
|
|
31706
|
-
current_status: string | null;
|
|
31707
|
-
current_user_name: string | null;
|
|
31708
|
-
current_user_email: string | null;
|
|
31709
|
-
current_user_phone_number: string | null;
|
|
31710
|
-
current_user_company: string | null;
|
|
31711
|
-
handover_method: string | null;
|
|
31712
|
-
keynest_app_user: string | null;
|
|
31713
|
-
default_office_id: number;
|
|
31714
|
-
fob_id: number;
|
|
31715
|
-
has_photo: boolean;
|
|
31012
|
+
device_name?: string | undefined;
|
|
31716
31013
|
}>>;
|
|
31717
31014
|
}, "strip", z.ZodTypeAny, {
|
|
31718
31015
|
ecobee_metadata?: {
|
|
@@ -31948,26 +31245,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31948
31245
|
product_type: string;
|
|
31949
31246
|
} | undefined;
|
|
31950
31247
|
keynest_metadata?: {
|
|
31951
|
-
device_name
|
|
31952
|
-
key_id: string;
|
|
31953
|
-
property_id: string | null;
|
|
31954
|
-
property_postcode: string | null;
|
|
31955
|
-
key_notes: string | null;
|
|
31956
|
-
subscription_plan: string;
|
|
31957
|
-
status_type: string;
|
|
31958
|
-
current_or_last_store_id: number;
|
|
31959
|
-
last_movement: string;
|
|
31960
|
-
address: string | null;
|
|
31961
|
-
current_status: string | null;
|
|
31962
|
-
current_user_name: string | null;
|
|
31963
|
-
current_user_email: string | null;
|
|
31964
|
-
current_user_phone_number: string | null;
|
|
31965
|
-
current_user_company: string | null;
|
|
31966
|
-
handover_method: string | null;
|
|
31967
|
-
keynest_app_user: string | null;
|
|
31968
|
-
default_office_id: number;
|
|
31969
|
-
fob_id: number;
|
|
31970
|
-
has_photo: boolean;
|
|
31248
|
+
device_name?: string | undefined;
|
|
31971
31249
|
} | undefined;
|
|
31972
31250
|
}, {
|
|
31973
31251
|
ecobee_metadata?: {
|
|
@@ -32203,26 +31481,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32203
31481
|
product_type: string;
|
|
32204
31482
|
} | undefined;
|
|
32205
31483
|
keynest_metadata?: {
|
|
32206
|
-
device_name
|
|
32207
|
-
key_id: string;
|
|
32208
|
-
property_id: string | null;
|
|
32209
|
-
property_postcode: string | null;
|
|
32210
|
-
key_notes: string | null;
|
|
32211
|
-
subscription_plan: string;
|
|
32212
|
-
status_type: string;
|
|
32213
|
-
current_or_last_store_id: number;
|
|
32214
|
-
last_movement: string;
|
|
32215
|
-
address: string | null;
|
|
32216
|
-
current_status: string | null;
|
|
32217
|
-
current_user_name: string | null;
|
|
32218
|
-
current_user_email: string | null;
|
|
32219
|
-
current_user_phone_number: string | null;
|
|
32220
|
-
current_user_company: string | null;
|
|
32221
|
-
handover_method: string | null;
|
|
32222
|
-
keynest_app_user: string | null;
|
|
32223
|
-
default_office_id: number;
|
|
32224
|
-
fob_id: number;
|
|
32225
|
-
has_photo: boolean;
|
|
31484
|
+
device_name?: string | undefined;
|
|
32226
31485
|
} | undefined;
|
|
32227
31486
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
32228
31487
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -37661,6 +36920,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37661
36920
|
} | undefined;
|
|
37662
36921
|
}>, "many">>;
|
|
37663
36922
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
36923
|
+
workspace_id: z.ZodString;
|
|
37664
36924
|
common_code_key: z.ZodNullable<z.ZodString>;
|
|
37665
36925
|
is_scheduled_on_device: z.ZodOptional<z.ZodBoolean>;
|
|
37666
36926
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
@@ -38598,6 +37858,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
38598
37858
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
38599
37859
|
name: string | null;
|
|
38600
37860
|
device_id: string;
|
|
37861
|
+
workspace_id: string;
|
|
38601
37862
|
created_at: string;
|
|
38602
37863
|
errors: ({
|
|
38603
37864
|
message: string;
|
|
@@ -38897,6 +38158,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
38897
38158
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
38898
38159
|
name: string | null;
|
|
38899
38160
|
device_id: string;
|
|
38161
|
+
workspace_id: string;
|
|
38900
38162
|
created_at: string;
|
|
38901
38163
|
errors: ({
|
|
38902
38164
|
message: string;
|
|
@@ -39196,6 +38458,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
39196
38458
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
39197
38459
|
name: z.ZodNullable<z.ZodString>;
|
|
39198
38460
|
device_id: z.ZodString;
|
|
38461
|
+
workspace_id: z.ZodString;
|
|
39199
38462
|
created_at: z.ZodString;
|
|
39200
38463
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39201
38464
|
ends_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -40121,6 +39384,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40121
39384
|
status: "set";
|
|
40122
39385
|
name: string | null;
|
|
40123
39386
|
device_id: string;
|
|
39387
|
+
workspace_id: string;
|
|
40124
39388
|
created_at: string;
|
|
40125
39389
|
errors: ({
|
|
40126
39390
|
message: string;
|
|
@@ -40411,6 +39675,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40411
39675
|
status: "set";
|
|
40412
39676
|
name: string | null;
|
|
40413
39677
|
device_id: string;
|
|
39678
|
+
workspace_id: string;
|
|
40414
39679
|
created_at: string;
|
|
40415
39680
|
errors: ({
|
|
40416
39681
|
message: string;
|
|
@@ -41323,26 +40588,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41323
40588
|
product_type: string;
|
|
41324
40589
|
} | undefined;
|
|
41325
40590
|
keynest_metadata?: {
|
|
41326
|
-
device_name
|
|
41327
|
-
key_id: string;
|
|
41328
|
-
property_id: string | null;
|
|
41329
|
-
property_postcode: string | null;
|
|
41330
|
-
key_notes: string | null;
|
|
41331
|
-
subscription_plan: string;
|
|
41332
|
-
status_type: string;
|
|
41333
|
-
current_or_last_store_id: number;
|
|
41334
|
-
last_movement: string;
|
|
41335
|
-
address: string | null;
|
|
41336
|
-
current_status: string | null;
|
|
41337
|
-
current_user_name: string | null;
|
|
41338
|
-
current_user_email: string | null;
|
|
41339
|
-
current_user_phone_number: string | null;
|
|
41340
|
-
current_user_company: string | null;
|
|
41341
|
-
handover_method: string | null;
|
|
41342
|
-
keynest_app_user: string | null;
|
|
41343
|
-
default_office_id: number;
|
|
41344
|
-
fob_id: number;
|
|
41345
|
-
has_photo: boolean;
|
|
40591
|
+
device_name?: string | undefined;
|
|
41346
40592
|
} | undefined;
|
|
41347
40593
|
} & {
|
|
41348
40594
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -41997,10 +41243,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41997
41243
|
credential_id?: string | undefined;
|
|
41998
41244
|
} | undefined;
|
|
41999
41245
|
assa_abloy_vostio_metadata?: {
|
|
42000
|
-
key_id?: string | undefined;
|
|
42001
41246
|
endpoint_id?: string | undefined;
|
|
42002
41247
|
auto_join?: boolean | undefined;
|
|
42003
41248
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41249
|
+
key_id?: string | undefined;
|
|
42004
41250
|
key_issuing_request_id?: string | undefined;
|
|
42005
41251
|
door_names?: string[] | undefined;
|
|
42006
41252
|
} | undefined;
|
|
@@ -42070,10 +41316,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42070
41316
|
credential_id?: string | undefined;
|
|
42071
41317
|
} | undefined;
|
|
42072
41318
|
assa_abloy_vostio_metadata?: {
|
|
42073
|
-
key_id?: string | undefined;
|
|
42074
41319
|
endpoint_id?: string | undefined;
|
|
42075
41320
|
auto_join?: boolean | undefined;
|
|
42076
41321
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41322
|
+
key_id?: string | undefined;
|
|
42077
41323
|
key_issuing_request_id?: string | undefined;
|
|
42078
41324
|
door_names?: string[] | undefined;
|
|
42079
41325
|
} | undefined;
|
|
@@ -42329,10 +41575,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42329
41575
|
credential_id?: string | undefined;
|
|
42330
41576
|
} | undefined;
|
|
42331
41577
|
assa_abloy_vostio_metadata?: {
|
|
42332
|
-
key_id?: string | undefined;
|
|
42333
41578
|
endpoint_id?: string | undefined;
|
|
42334
41579
|
auto_join?: boolean | undefined;
|
|
42335
41580
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41581
|
+
key_id?: string | undefined;
|
|
42336
41582
|
key_issuing_request_id?: string | undefined;
|
|
42337
41583
|
door_names?: string[] | undefined;
|
|
42338
41584
|
} | undefined;
|
|
@@ -42401,10 +41647,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42401
41647
|
credential_id?: string | undefined;
|
|
42402
41648
|
} | undefined;
|
|
42403
41649
|
assa_abloy_vostio_metadata?: {
|
|
42404
|
-
key_id?: string | undefined;
|
|
42405
41650
|
endpoint_id?: string | undefined;
|
|
42406
41651
|
auto_join?: boolean | undefined;
|
|
42407
41652
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41653
|
+
key_id?: string | undefined;
|
|
42408
41654
|
key_issuing_request_id?: string | undefined;
|
|
42409
41655
|
door_names?: string[] | undefined;
|
|
42410
41656
|
} | undefined;
|
|
@@ -42595,10 +41841,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42595
41841
|
credential_id?: string | undefined;
|
|
42596
41842
|
} | undefined;
|
|
42597
41843
|
assa_abloy_vostio_metadata?: {
|
|
42598
|
-
key_id?: string | undefined;
|
|
42599
41844
|
endpoint_id?: string | undefined;
|
|
42600
41845
|
auto_join?: boolean | undefined;
|
|
42601
41846
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41847
|
+
key_id?: string | undefined;
|
|
42602
41848
|
key_issuing_request_id?: string | undefined;
|
|
42603
41849
|
door_names?: string[] | undefined;
|
|
42604
41850
|
} | undefined;
|
|
@@ -42667,10 +41913,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42667
41913
|
credential_id?: string | undefined;
|
|
42668
41914
|
} | undefined;
|
|
42669
41915
|
assa_abloy_vostio_metadata?: {
|
|
42670
|
-
key_id?: string | undefined;
|
|
42671
41916
|
endpoint_id?: string | undefined;
|
|
42672
41917
|
auto_join?: boolean | undefined;
|
|
42673
41918
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41919
|
+
key_id?: string | undefined;
|
|
42674
41920
|
key_issuing_request_id?: string | undefined;
|
|
42675
41921
|
door_names?: string[] | undefined;
|
|
42676
41922
|
} | undefined;
|
|
@@ -44139,6 +43385,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44139
43385
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
44140
43386
|
name: string | null;
|
|
44141
43387
|
device_id: string;
|
|
43388
|
+
workspace_id: string;
|
|
44142
43389
|
created_at: string;
|
|
44143
43390
|
errors: ({
|
|
44144
43391
|
message: string;
|
|
@@ -44439,6 +43686,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44439
43686
|
status: "set";
|
|
44440
43687
|
name: string | null;
|
|
44441
43688
|
device_id: string;
|
|
43689
|
+
workspace_id: string;
|
|
44442
43690
|
created_at: string;
|
|
44443
43691
|
errors: ({
|
|
44444
43692
|
message: string;
|
|
@@ -45246,26 +44494,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45246
44494
|
product_type: string;
|
|
45247
44495
|
} | undefined;
|
|
45248
44496
|
keynest_metadata?: {
|
|
45249
|
-
device_name
|
|
45250
|
-
key_id: string;
|
|
45251
|
-
property_id: string | null;
|
|
45252
|
-
property_postcode: string | null;
|
|
45253
|
-
key_notes: string | null;
|
|
45254
|
-
subscription_plan: string;
|
|
45255
|
-
status_type: string;
|
|
45256
|
-
current_or_last_store_id: number;
|
|
45257
|
-
last_movement: string;
|
|
45258
|
-
address: string | null;
|
|
45259
|
-
current_status: string | null;
|
|
45260
|
-
current_user_name: string | null;
|
|
45261
|
-
current_user_email: string | null;
|
|
45262
|
-
current_user_phone_number: string | null;
|
|
45263
|
-
current_user_company: string | null;
|
|
45264
|
-
handover_method: string | null;
|
|
45265
|
-
keynest_app_user: string | null;
|
|
45266
|
-
default_office_id: number;
|
|
45267
|
-
fob_id: number;
|
|
45268
|
-
has_photo: boolean;
|
|
44497
|
+
device_name?: string | undefined;
|
|
45269
44498
|
} | undefined;
|
|
45270
44499
|
} & {
|
|
45271
44500
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -45920,10 +45149,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45920
45149
|
credential_id?: string | undefined;
|
|
45921
45150
|
} | undefined;
|
|
45922
45151
|
assa_abloy_vostio_metadata?: {
|
|
45923
|
-
key_id?: string | undefined;
|
|
45924
45152
|
endpoint_id?: string | undefined;
|
|
45925
45153
|
auto_join?: boolean | undefined;
|
|
45926
45154
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45155
|
+
key_id?: string | undefined;
|
|
45927
45156
|
key_issuing_request_id?: string | undefined;
|
|
45928
45157
|
door_names?: string[] | undefined;
|
|
45929
45158
|
} | undefined;
|
|
@@ -45993,10 +45222,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45993
45222
|
credential_id?: string | undefined;
|
|
45994
45223
|
} | undefined;
|
|
45995
45224
|
assa_abloy_vostio_metadata?: {
|
|
45996
|
-
key_id?: string | undefined;
|
|
45997
45225
|
endpoint_id?: string | undefined;
|
|
45998
45226
|
auto_join?: boolean | undefined;
|
|
45999
45227
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45228
|
+
key_id?: string | undefined;
|
|
46000
45229
|
key_issuing_request_id?: string | undefined;
|
|
46001
45230
|
door_names?: string[] | undefined;
|
|
46002
45231
|
} | undefined;
|
|
@@ -46252,10 +45481,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46252
45481
|
credential_id?: string | undefined;
|
|
46253
45482
|
} | undefined;
|
|
46254
45483
|
assa_abloy_vostio_metadata?: {
|
|
46255
|
-
key_id?: string | undefined;
|
|
46256
45484
|
endpoint_id?: string | undefined;
|
|
46257
45485
|
auto_join?: boolean | undefined;
|
|
46258
45486
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45487
|
+
key_id?: string | undefined;
|
|
46259
45488
|
key_issuing_request_id?: string | undefined;
|
|
46260
45489
|
door_names?: string[] | undefined;
|
|
46261
45490
|
} | undefined;
|
|
@@ -46324,10 +45553,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46324
45553
|
credential_id?: string | undefined;
|
|
46325
45554
|
} | undefined;
|
|
46326
45555
|
assa_abloy_vostio_metadata?: {
|
|
46327
|
-
key_id?: string | undefined;
|
|
46328
45556
|
endpoint_id?: string | undefined;
|
|
46329
45557
|
auto_join?: boolean | undefined;
|
|
46330
45558
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45559
|
+
key_id?: string | undefined;
|
|
46331
45560
|
key_issuing_request_id?: string | undefined;
|
|
46332
45561
|
door_names?: string[] | undefined;
|
|
46333
45562
|
} | undefined;
|
|
@@ -46518,10 +45747,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46518
45747
|
credential_id?: string | undefined;
|
|
46519
45748
|
} | undefined;
|
|
46520
45749
|
assa_abloy_vostio_metadata?: {
|
|
46521
|
-
key_id?: string | undefined;
|
|
46522
45750
|
endpoint_id?: string | undefined;
|
|
46523
45751
|
auto_join?: boolean | undefined;
|
|
46524
45752
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45753
|
+
key_id?: string | undefined;
|
|
46525
45754
|
key_issuing_request_id?: string | undefined;
|
|
46526
45755
|
door_names?: string[] | undefined;
|
|
46527
45756
|
} | undefined;
|
|
@@ -46590,10 +45819,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46590
45819
|
credential_id?: string | undefined;
|
|
46591
45820
|
} | undefined;
|
|
46592
45821
|
assa_abloy_vostio_metadata?: {
|
|
46593
|
-
key_id?: string | undefined;
|
|
46594
45822
|
endpoint_id?: string | undefined;
|
|
46595
45823
|
auto_join?: boolean | undefined;
|
|
46596
45824
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45825
|
+
key_id?: string | undefined;
|
|
46597
45826
|
key_issuing_request_id?: string | undefined;
|
|
46598
45827
|
door_names?: string[] | undefined;
|
|
46599
45828
|
} | undefined;
|
|
@@ -48062,6 +47291,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
48062
47291
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
48063
47292
|
name: string | null;
|
|
48064
47293
|
device_id: string;
|
|
47294
|
+
workspace_id: string;
|
|
48065
47295
|
created_at: string;
|
|
48066
47296
|
errors: ({
|
|
48067
47297
|
message: string;
|
|
@@ -48362,6 +47592,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
48362
47592
|
status: "set";
|
|
48363
47593
|
name: string | null;
|
|
48364
47594
|
device_id: string;
|
|
47595
|
+
workspace_id: string;
|
|
48365
47596
|
created_at: string;
|
|
48366
47597
|
errors: ({
|
|
48367
47598
|
message: string;
|
|
@@ -49837,68 +49068,11 @@ export declare const batch: z.ZodObject<{
|
|
|
49837
49068
|
product_type: string;
|
|
49838
49069
|
}>>;
|
|
49839
49070
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
49840
|
-
|
|
49841
|
-
device_name: z.ZodString;
|
|
49842
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
49843
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
49844
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
49845
|
-
subscription_plan: z.ZodString;
|
|
49846
|
-
status_type: z.ZodString;
|
|
49847
|
-
current_or_last_store_id: z.ZodNumber;
|
|
49848
|
-
last_movement: z.ZodString;
|
|
49849
|
-
address: z.ZodNullable<z.ZodString>;
|
|
49850
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
49851
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
49852
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
49853
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
49854
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
49855
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
49856
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
49857
|
-
default_office_id: z.ZodNumber;
|
|
49858
|
-
fob_id: z.ZodNumber;
|
|
49859
|
-
has_photo: z.ZodBoolean;
|
|
49071
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
49860
49072
|
}, "strip", z.ZodTypeAny, {
|
|
49861
|
-
device_name
|
|
49862
|
-
key_id: string;
|
|
49863
|
-
property_id: string | null;
|
|
49864
|
-
property_postcode: string | null;
|
|
49865
|
-
key_notes: string | null;
|
|
49866
|
-
subscription_plan: string;
|
|
49867
|
-
status_type: string;
|
|
49868
|
-
current_or_last_store_id: number;
|
|
49869
|
-
last_movement: string;
|
|
49870
|
-
address: string | null;
|
|
49871
|
-
current_status: string | null;
|
|
49872
|
-
current_user_name: string | null;
|
|
49873
|
-
current_user_email: string | null;
|
|
49874
|
-
current_user_phone_number: string | null;
|
|
49875
|
-
current_user_company: string | null;
|
|
49876
|
-
handover_method: string | null;
|
|
49877
|
-
keynest_app_user: string | null;
|
|
49878
|
-
default_office_id: number;
|
|
49879
|
-
fob_id: number;
|
|
49880
|
-
has_photo: boolean;
|
|
49073
|
+
device_name?: string | undefined;
|
|
49881
49074
|
}, {
|
|
49882
|
-
device_name
|
|
49883
|
-
key_id: string;
|
|
49884
|
-
property_id: string | null;
|
|
49885
|
-
property_postcode: string | null;
|
|
49886
|
-
key_notes: string | null;
|
|
49887
|
-
subscription_plan: string;
|
|
49888
|
-
status_type: string;
|
|
49889
|
-
current_or_last_store_id: number;
|
|
49890
|
-
last_movement: string;
|
|
49891
|
-
address: string | null;
|
|
49892
|
-
current_status: string | null;
|
|
49893
|
-
current_user_name: string | null;
|
|
49894
|
-
current_user_email: string | null;
|
|
49895
|
-
current_user_phone_number: string | null;
|
|
49896
|
-
current_user_company: string | null;
|
|
49897
|
-
handover_method: string | null;
|
|
49898
|
-
keynest_app_user: string | null;
|
|
49899
|
-
default_office_id: number;
|
|
49900
|
-
fob_id: number;
|
|
49901
|
-
has_photo: boolean;
|
|
49075
|
+
device_name?: string | undefined;
|
|
49902
49076
|
}>>;
|
|
49903
49077
|
}, "strip", z.ZodTypeAny, {
|
|
49904
49078
|
ecobee_metadata?: {
|
|
@@ -50134,26 +49308,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50134
49308
|
product_type: string;
|
|
50135
49309
|
} | undefined;
|
|
50136
49310
|
keynest_metadata?: {
|
|
50137
|
-
device_name
|
|
50138
|
-
key_id: string;
|
|
50139
|
-
property_id: string | null;
|
|
50140
|
-
property_postcode: string | null;
|
|
50141
|
-
key_notes: string | null;
|
|
50142
|
-
subscription_plan: string;
|
|
50143
|
-
status_type: string;
|
|
50144
|
-
current_or_last_store_id: number;
|
|
50145
|
-
last_movement: string;
|
|
50146
|
-
address: string | null;
|
|
50147
|
-
current_status: string | null;
|
|
50148
|
-
current_user_name: string | null;
|
|
50149
|
-
current_user_email: string | null;
|
|
50150
|
-
current_user_phone_number: string | null;
|
|
50151
|
-
current_user_company: string | null;
|
|
50152
|
-
handover_method: string | null;
|
|
50153
|
-
keynest_app_user: string | null;
|
|
50154
|
-
default_office_id: number;
|
|
50155
|
-
fob_id: number;
|
|
50156
|
-
has_photo: boolean;
|
|
49311
|
+
device_name?: string | undefined;
|
|
50157
49312
|
} | undefined;
|
|
50158
49313
|
}, {
|
|
50159
49314
|
ecobee_metadata?: {
|
|
@@ -50389,26 +49544,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50389
49544
|
product_type: string;
|
|
50390
49545
|
} | undefined;
|
|
50391
49546
|
keynest_metadata?: {
|
|
50392
|
-
device_name
|
|
50393
|
-
key_id: string;
|
|
50394
|
-
property_id: string | null;
|
|
50395
|
-
property_postcode: string | null;
|
|
50396
|
-
key_notes: string | null;
|
|
50397
|
-
subscription_plan: string;
|
|
50398
|
-
status_type: string;
|
|
50399
|
-
current_or_last_store_id: number;
|
|
50400
|
-
last_movement: string;
|
|
50401
|
-
address: string | null;
|
|
50402
|
-
current_status: string | null;
|
|
50403
|
-
current_user_name: string | null;
|
|
50404
|
-
current_user_email: string | null;
|
|
50405
|
-
current_user_phone_number: string | null;
|
|
50406
|
-
current_user_company: string | null;
|
|
50407
|
-
handover_method: string | null;
|
|
50408
|
-
keynest_app_user: string | null;
|
|
50409
|
-
default_office_id: number;
|
|
50410
|
-
fob_id: number;
|
|
50411
|
-
has_photo: boolean;
|
|
49547
|
+
device_name?: string | undefined;
|
|
50412
49548
|
} | undefined;
|
|
50413
49549
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
50414
49550
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -52185,26 +51321,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52185
51321
|
product_type: string;
|
|
52186
51322
|
} | undefined;
|
|
52187
51323
|
keynest_metadata?: {
|
|
52188
|
-
device_name
|
|
52189
|
-
key_id: string;
|
|
52190
|
-
property_id: string | null;
|
|
52191
|
-
property_postcode: string | null;
|
|
52192
|
-
key_notes: string | null;
|
|
52193
|
-
subscription_plan: string;
|
|
52194
|
-
status_type: string;
|
|
52195
|
-
current_or_last_store_id: number;
|
|
52196
|
-
last_movement: string;
|
|
52197
|
-
address: string | null;
|
|
52198
|
-
current_status: string | null;
|
|
52199
|
-
current_user_name: string | null;
|
|
52200
|
-
current_user_email: string | null;
|
|
52201
|
-
current_user_phone_number: string | null;
|
|
52202
|
-
current_user_company: string | null;
|
|
52203
|
-
handover_method: string | null;
|
|
52204
|
-
keynest_app_user: string | null;
|
|
52205
|
-
default_office_id: number;
|
|
52206
|
-
fob_id: number;
|
|
52207
|
-
has_photo: boolean;
|
|
51324
|
+
device_name?: string | undefined;
|
|
52208
51325
|
} | undefined;
|
|
52209
51326
|
} & {
|
|
52210
51327
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -52843,26 +51960,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52843
51960
|
product_type: string;
|
|
52844
51961
|
} | undefined;
|
|
52845
51962
|
keynest_metadata?: {
|
|
52846
|
-
device_name
|
|
52847
|
-
key_id: string;
|
|
52848
|
-
property_id: string | null;
|
|
52849
|
-
property_postcode: string | null;
|
|
52850
|
-
key_notes: string | null;
|
|
52851
|
-
subscription_plan: string;
|
|
52852
|
-
status_type: string;
|
|
52853
|
-
current_or_last_store_id: number;
|
|
52854
|
-
last_movement: string;
|
|
52855
|
-
address: string | null;
|
|
52856
|
-
current_status: string | null;
|
|
52857
|
-
current_user_name: string | null;
|
|
52858
|
-
current_user_email: string | null;
|
|
52859
|
-
current_user_phone_number: string | null;
|
|
52860
|
-
current_user_company: string | null;
|
|
52861
|
-
handover_method: string | null;
|
|
52862
|
-
keynest_app_user: string | null;
|
|
52863
|
-
default_office_id: number;
|
|
52864
|
-
fob_id: number;
|
|
52865
|
-
has_photo: boolean;
|
|
51963
|
+
device_name?: string | undefined;
|
|
52866
51964
|
} | undefined;
|
|
52867
51965
|
} & {
|
|
52868
51966
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -54477,17 +53575,17 @@ export declare const batch: z.ZodObject<{
|
|
|
54477
53575
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54478
53576
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
54479
53577
|
}, "strip", z.ZodTypeAny, {
|
|
54480
|
-
key_id?: string | undefined;
|
|
54481
53578
|
endpoint_id?: string | undefined;
|
|
54482
53579
|
auto_join?: boolean | undefined;
|
|
54483
53580
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53581
|
+
key_id?: string | undefined;
|
|
54484
53582
|
key_issuing_request_id?: string | undefined;
|
|
54485
53583
|
door_names?: string[] | undefined;
|
|
54486
53584
|
}, {
|
|
54487
|
-
key_id?: string | undefined;
|
|
54488
53585
|
endpoint_id?: string | undefined;
|
|
54489
53586
|
auto_join?: boolean | undefined;
|
|
54490
53587
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53588
|
+
key_id?: string | undefined;
|
|
54491
53589
|
key_issuing_request_id?: string | undefined;
|
|
54492
53590
|
door_names?: string[] | undefined;
|
|
54493
53591
|
}>>;
|
|
@@ -54545,10 +53643,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54545
53643
|
credential_id?: string | undefined;
|
|
54546
53644
|
} | undefined;
|
|
54547
53645
|
assa_abloy_vostio_metadata?: {
|
|
54548
|
-
key_id?: string | undefined;
|
|
54549
53646
|
endpoint_id?: string | undefined;
|
|
54550
53647
|
auto_join?: boolean | undefined;
|
|
54551
53648
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53649
|
+
key_id?: string | undefined;
|
|
54552
53650
|
key_issuing_request_id?: string | undefined;
|
|
54553
53651
|
door_names?: string[] | undefined;
|
|
54554
53652
|
} | undefined;
|
|
@@ -54617,10 +53715,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54617
53715
|
credential_id?: string | undefined;
|
|
54618
53716
|
} | undefined;
|
|
54619
53717
|
assa_abloy_vostio_metadata?: {
|
|
54620
|
-
key_id?: string | undefined;
|
|
54621
53718
|
endpoint_id?: string | undefined;
|
|
54622
53719
|
auto_join?: boolean | undefined;
|
|
54623
53720
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53721
|
+
key_id?: string | undefined;
|
|
54624
53722
|
key_issuing_request_id?: string | undefined;
|
|
54625
53723
|
door_names?: string[] | undefined;
|
|
54626
53724
|
} | undefined;
|
|
@@ -54787,17 +53885,17 @@ export declare const batch: z.ZodObject<{
|
|
|
54787
53885
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54788
53886
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
54789
53887
|
}, "strip", z.ZodTypeAny, {
|
|
54790
|
-
key_id?: string | undefined;
|
|
54791
53888
|
endpoint_id?: string | undefined;
|
|
54792
53889
|
auto_join?: boolean | undefined;
|
|
54793
53890
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53891
|
+
key_id?: string | undefined;
|
|
54794
53892
|
key_issuing_request_id?: string | undefined;
|
|
54795
53893
|
door_names?: string[] | undefined;
|
|
54796
53894
|
}, {
|
|
54797
|
-
key_id?: string | undefined;
|
|
54798
53895
|
endpoint_id?: string | undefined;
|
|
54799
53896
|
auto_join?: boolean | undefined;
|
|
54800
53897
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53898
|
+
key_id?: string | undefined;
|
|
54801
53899
|
key_issuing_request_id?: string | undefined;
|
|
54802
53900
|
door_names?: string[] | undefined;
|
|
54803
53901
|
}>>;
|
|
@@ -54855,10 +53953,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54855
53953
|
credential_id?: string | undefined;
|
|
54856
53954
|
} | undefined;
|
|
54857
53955
|
assa_abloy_vostio_metadata?: {
|
|
54858
|
-
key_id?: string | undefined;
|
|
54859
53956
|
endpoint_id?: string | undefined;
|
|
54860
53957
|
auto_join?: boolean | undefined;
|
|
54861
53958
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53959
|
+
key_id?: string | undefined;
|
|
54862
53960
|
key_issuing_request_id?: string | undefined;
|
|
54863
53961
|
door_names?: string[] | undefined;
|
|
54864
53962
|
} | undefined;
|
|
@@ -54927,10 +54025,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54927
54025
|
credential_id?: string | undefined;
|
|
54928
54026
|
} | undefined;
|
|
54929
54027
|
assa_abloy_vostio_metadata?: {
|
|
54930
|
-
key_id?: string | undefined;
|
|
54931
54028
|
endpoint_id?: string | undefined;
|
|
54932
54029
|
auto_join?: boolean | undefined;
|
|
54933
54030
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54031
|
+
key_id?: string | undefined;
|
|
54934
54032
|
key_issuing_request_id?: string | undefined;
|
|
54935
54033
|
door_names?: string[] | undefined;
|
|
54936
54034
|
} | undefined;
|
|
@@ -55362,17 +54460,17 @@ export declare const batch: z.ZodObject<{
|
|
|
55362
54460
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55363
54461
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
55364
54462
|
}, "strip", z.ZodTypeAny, {
|
|
55365
|
-
key_id?: string | undefined;
|
|
55366
54463
|
endpoint_id?: string | undefined;
|
|
55367
54464
|
auto_join?: boolean | undefined;
|
|
55368
54465
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54466
|
+
key_id?: string | undefined;
|
|
55369
54467
|
key_issuing_request_id?: string | undefined;
|
|
55370
54468
|
door_names?: string[] | undefined;
|
|
55371
54469
|
}, {
|
|
55372
|
-
key_id?: string | undefined;
|
|
55373
54470
|
endpoint_id?: string | undefined;
|
|
55374
54471
|
auto_join?: boolean | undefined;
|
|
55375
54472
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54473
|
+
key_id?: string | undefined;
|
|
55376
54474
|
key_issuing_request_id?: string | undefined;
|
|
55377
54475
|
door_names?: string[] | undefined;
|
|
55378
54476
|
}>>;
|
|
@@ -55430,10 +54528,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55430
54528
|
credential_id?: string | undefined;
|
|
55431
54529
|
} | undefined;
|
|
55432
54530
|
assa_abloy_vostio_metadata?: {
|
|
55433
|
-
key_id?: string | undefined;
|
|
55434
54531
|
endpoint_id?: string | undefined;
|
|
55435
54532
|
auto_join?: boolean | undefined;
|
|
55436
54533
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54534
|
+
key_id?: string | undefined;
|
|
55437
54535
|
key_issuing_request_id?: string | undefined;
|
|
55438
54536
|
door_names?: string[] | undefined;
|
|
55439
54537
|
} | undefined;
|
|
@@ -55502,10 +54600,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55502
54600
|
credential_id?: string | undefined;
|
|
55503
54601
|
} | undefined;
|
|
55504
54602
|
assa_abloy_vostio_metadata?: {
|
|
55505
|
-
key_id?: string | undefined;
|
|
55506
54603
|
endpoint_id?: string | undefined;
|
|
55507
54604
|
auto_join?: boolean | undefined;
|
|
55508
54605
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54606
|
+
key_id?: string | undefined;
|
|
55509
54607
|
key_issuing_request_id?: string | undefined;
|
|
55510
54608
|
door_names?: string[] | undefined;
|
|
55511
54609
|
} | undefined;
|
|
@@ -55671,17 +54769,17 @@ export declare const batch: z.ZodObject<{
|
|
|
55671
54769
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55672
54770
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
55673
54771
|
}, "strip", z.ZodTypeAny, {
|
|
55674
|
-
key_id?: string | undefined;
|
|
55675
54772
|
endpoint_id?: string | undefined;
|
|
55676
54773
|
auto_join?: boolean | undefined;
|
|
55677
54774
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54775
|
+
key_id?: string | undefined;
|
|
55678
54776
|
key_issuing_request_id?: string | undefined;
|
|
55679
54777
|
door_names?: string[] | undefined;
|
|
55680
54778
|
}, {
|
|
55681
|
-
key_id?: string | undefined;
|
|
55682
54779
|
endpoint_id?: string | undefined;
|
|
55683
54780
|
auto_join?: boolean | undefined;
|
|
55684
54781
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54782
|
+
key_id?: string | undefined;
|
|
55685
54783
|
key_issuing_request_id?: string | undefined;
|
|
55686
54784
|
door_names?: string[] | undefined;
|
|
55687
54785
|
}>>;
|
|
@@ -55739,10 +54837,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55739
54837
|
credential_id?: string | undefined;
|
|
55740
54838
|
} | undefined;
|
|
55741
54839
|
assa_abloy_vostio_metadata?: {
|
|
55742
|
-
key_id?: string | undefined;
|
|
55743
54840
|
endpoint_id?: string | undefined;
|
|
55744
54841
|
auto_join?: boolean | undefined;
|
|
55745
54842
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54843
|
+
key_id?: string | undefined;
|
|
55746
54844
|
key_issuing_request_id?: string | undefined;
|
|
55747
54845
|
door_names?: string[] | undefined;
|
|
55748
54846
|
} | undefined;
|
|
@@ -55811,10 +54909,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55811
54909
|
credential_id?: string | undefined;
|
|
55812
54910
|
} | undefined;
|
|
55813
54911
|
assa_abloy_vostio_metadata?: {
|
|
55814
|
-
key_id?: string | undefined;
|
|
55815
54912
|
endpoint_id?: string | undefined;
|
|
55816
54913
|
auto_join?: boolean | undefined;
|
|
55817
54914
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54915
|
+
key_id?: string | undefined;
|
|
55818
54916
|
key_issuing_request_id?: string | undefined;
|
|
55819
54917
|
door_names?: string[] | undefined;
|
|
55820
54918
|
} | undefined;
|
|
@@ -55920,10 +55018,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55920
55018
|
credential_id?: string | undefined;
|
|
55921
55019
|
} | undefined;
|
|
55922
55020
|
assa_abloy_vostio_metadata?: {
|
|
55923
|
-
key_id?: string | undefined;
|
|
55924
55021
|
endpoint_id?: string | undefined;
|
|
55925
55022
|
auto_join?: boolean | undefined;
|
|
55926
55023
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55024
|
+
key_id?: string | undefined;
|
|
55927
55025
|
key_issuing_request_id?: string | undefined;
|
|
55928
55026
|
door_names?: string[] | undefined;
|
|
55929
55027
|
} | undefined;
|
|
@@ -55992,10 +55090,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55992
55090
|
credential_id?: string | undefined;
|
|
55993
55091
|
} | undefined;
|
|
55994
55092
|
assa_abloy_vostio_metadata?: {
|
|
55995
|
-
key_id?: string | undefined;
|
|
55996
55093
|
endpoint_id?: string | undefined;
|
|
55997
55094
|
auto_join?: boolean | undefined;
|
|
55998
55095
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55096
|
+
key_id?: string | undefined;
|
|
55999
55097
|
key_issuing_request_id?: string | undefined;
|
|
56000
55098
|
door_names?: string[] | undefined;
|
|
56001
55099
|
} | undefined;
|
|
@@ -56091,10 +55189,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56091
55189
|
credential_id?: string | undefined;
|
|
56092
55190
|
} | undefined;
|
|
56093
55191
|
assa_abloy_vostio_metadata?: {
|
|
56094
|
-
key_id?: string | undefined;
|
|
56095
55192
|
endpoint_id?: string | undefined;
|
|
56096
55193
|
auto_join?: boolean | undefined;
|
|
56097
55194
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55195
|
+
key_id?: string | undefined;
|
|
56098
55196
|
key_issuing_request_id?: string | undefined;
|
|
56099
55197
|
door_names?: string[] | undefined;
|
|
56100
55198
|
} | undefined;
|
|
@@ -56163,10 +55261,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56163
55261
|
credential_id?: string | undefined;
|
|
56164
55262
|
} | undefined;
|
|
56165
55263
|
assa_abloy_vostio_metadata?: {
|
|
56166
|
-
key_id?: string | undefined;
|
|
56167
55264
|
endpoint_id?: string | undefined;
|
|
56168
55265
|
auto_join?: boolean | undefined;
|
|
56169
55266
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55267
|
+
key_id?: string | undefined;
|
|
56170
55268
|
key_issuing_request_id?: string | undefined;
|
|
56171
55269
|
door_names?: string[] | undefined;
|
|
56172
55270
|
} | undefined;
|
|
@@ -56267,10 +55365,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56267
55365
|
credential_id?: string | undefined;
|
|
56268
55366
|
} | undefined;
|
|
56269
55367
|
assa_abloy_vostio_metadata?: {
|
|
56270
|
-
key_id?: string | undefined;
|
|
56271
55368
|
endpoint_id?: string | undefined;
|
|
56272
55369
|
auto_join?: boolean | undefined;
|
|
56273
55370
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55371
|
+
key_id?: string | undefined;
|
|
56274
55372
|
key_issuing_request_id?: string | undefined;
|
|
56275
55373
|
door_names?: string[] | undefined;
|
|
56276
55374
|
} | undefined;
|
|
@@ -56339,10 +55437,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56339
55437
|
credential_id?: string | undefined;
|
|
56340
55438
|
} | undefined;
|
|
56341
55439
|
assa_abloy_vostio_metadata?: {
|
|
56342
|
-
key_id?: string | undefined;
|
|
56343
55440
|
endpoint_id?: string | undefined;
|
|
56344
55441
|
auto_join?: boolean | undefined;
|
|
56345
55442
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55443
|
+
key_id?: string | undefined;
|
|
56346
55444
|
key_issuing_request_id?: string | undefined;
|
|
56347
55445
|
door_names?: string[] | undefined;
|
|
56348
55446
|
} | undefined;
|
|
@@ -56444,10 +55542,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56444
55542
|
credential_id?: string | undefined;
|
|
56445
55543
|
} | undefined;
|
|
56446
55544
|
assa_abloy_vostio_metadata?: {
|
|
56447
|
-
key_id?: string | undefined;
|
|
56448
55545
|
endpoint_id?: string | undefined;
|
|
56449
55546
|
auto_join?: boolean | undefined;
|
|
56450
55547
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55548
|
+
key_id?: string | undefined;
|
|
56451
55549
|
key_issuing_request_id?: string | undefined;
|
|
56452
55550
|
door_names?: string[] | undefined;
|
|
56453
55551
|
} | undefined;
|
|
@@ -56516,10 +55614,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56516
55614
|
credential_id?: string | undefined;
|
|
56517
55615
|
} | undefined;
|
|
56518
55616
|
assa_abloy_vostio_metadata?: {
|
|
56519
|
-
key_id?: string | undefined;
|
|
56520
55617
|
endpoint_id?: string | undefined;
|
|
56521
55618
|
auto_join?: boolean | undefined;
|
|
56522
55619
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55620
|
+
key_id?: string | undefined;
|
|
56523
55621
|
key_issuing_request_id?: string | undefined;
|
|
56524
55622
|
door_names?: string[] | undefined;
|
|
56525
55623
|
} | undefined;
|
|
@@ -56780,17 +55878,17 @@ export declare const batch: z.ZodObject<{
|
|
|
56780
55878
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
56781
55879
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
56782
55880
|
}, "strip", z.ZodTypeAny, {
|
|
56783
|
-
key_id?: string | undefined;
|
|
56784
55881
|
endpoint_id?: string | undefined;
|
|
56785
55882
|
auto_join?: boolean | undefined;
|
|
56786
55883
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55884
|
+
key_id?: string | undefined;
|
|
56787
55885
|
key_issuing_request_id?: string | undefined;
|
|
56788
55886
|
door_names?: string[] | undefined;
|
|
56789
55887
|
}, {
|
|
56790
|
-
key_id?: string | undefined;
|
|
56791
55888
|
endpoint_id?: string | undefined;
|
|
56792
55889
|
auto_join?: boolean | undefined;
|
|
56793
55890
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55891
|
+
key_id?: string | undefined;
|
|
56794
55892
|
key_issuing_request_id?: string | undefined;
|
|
56795
55893
|
door_names?: string[] | undefined;
|
|
56796
55894
|
}>>;
|
|
@@ -56848,10 +55946,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56848
55946
|
credential_id?: string | undefined;
|
|
56849
55947
|
} | undefined;
|
|
56850
55948
|
assa_abloy_vostio_metadata?: {
|
|
56851
|
-
key_id?: string | undefined;
|
|
56852
55949
|
endpoint_id?: string | undefined;
|
|
56853
55950
|
auto_join?: boolean | undefined;
|
|
56854
55951
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55952
|
+
key_id?: string | undefined;
|
|
56855
55953
|
key_issuing_request_id?: string | undefined;
|
|
56856
55954
|
door_names?: string[] | undefined;
|
|
56857
55955
|
} | undefined;
|
|
@@ -56920,10 +56018,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56920
56018
|
credential_id?: string | undefined;
|
|
56921
56019
|
} | undefined;
|
|
56922
56020
|
assa_abloy_vostio_metadata?: {
|
|
56923
|
-
key_id?: string | undefined;
|
|
56924
56021
|
endpoint_id?: string | undefined;
|
|
56925
56022
|
auto_join?: boolean | undefined;
|
|
56926
56023
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56024
|
+
key_id?: string | undefined;
|
|
56927
56025
|
key_issuing_request_id?: string | undefined;
|
|
56928
56026
|
door_names?: string[] | undefined;
|
|
56929
56027
|
} | undefined;
|
|
@@ -57089,17 +56187,17 @@ export declare const batch: z.ZodObject<{
|
|
|
57089
56187
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
57090
56188
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
57091
56189
|
}, "strip", z.ZodTypeAny, {
|
|
57092
|
-
key_id?: string | undefined;
|
|
57093
56190
|
endpoint_id?: string | undefined;
|
|
57094
56191
|
auto_join?: boolean | undefined;
|
|
57095
56192
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56193
|
+
key_id?: string | undefined;
|
|
57096
56194
|
key_issuing_request_id?: string | undefined;
|
|
57097
56195
|
door_names?: string[] | undefined;
|
|
57098
56196
|
}, {
|
|
57099
|
-
key_id?: string | undefined;
|
|
57100
56197
|
endpoint_id?: string | undefined;
|
|
57101
56198
|
auto_join?: boolean | undefined;
|
|
57102
56199
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56200
|
+
key_id?: string | undefined;
|
|
57103
56201
|
key_issuing_request_id?: string | undefined;
|
|
57104
56202
|
door_names?: string[] | undefined;
|
|
57105
56203
|
}>>;
|
|
@@ -57157,10 +56255,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57157
56255
|
credential_id?: string | undefined;
|
|
57158
56256
|
} | undefined;
|
|
57159
56257
|
assa_abloy_vostio_metadata?: {
|
|
57160
|
-
key_id?: string | undefined;
|
|
57161
56258
|
endpoint_id?: string | undefined;
|
|
57162
56259
|
auto_join?: boolean | undefined;
|
|
57163
56260
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56261
|
+
key_id?: string | undefined;
|
|
57164
56262
|
key_issuing_request_id?: string | undefined;
|
|
57165
56263
|
door_names?: string[] | undefined;
|
|
57166
56264
|
} | undefined;
|
|
@@ -57229,10 +56327,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57229
56327
|
credential_id?: string | undefined;
|
|
57230
56328
|
} | undefined;
|
|
57231
56329
|
assa_abloy_vostio_metadata?: {
|
|
57232
|
-
key_id?: string | undefined;
|
|
57233
56330
|
endpoint_id?: string | undefined;
|
|
57234
56331
|
auto_join?: boolean | undefined;
|
|
57235
56332
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56333
|
+
key_id?: string | undefined;
|
|
57236
56334
|
key_issuing_request_id?: string | undefined;
|
|
57237
56335
|
door_names?: string[] | undefined;
|
|
57238
56336
|
} | undefined;
|
|
@@ -57306,10 +56404,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57306
56404
|
credential_id?: string | undefined;
|
|
57307
56405
|
} | undefined;
|
|
57308
56406
|
assa_abloy_vostio_metadata?: {
|
|
57309
|
-
key_id?: string | undefined;
|
|
57310
56407
|
endpoint_id?: string | undefined;
|
|
57311
56408
|
auto_join?: boolean | undefined;
|
|
57312
56409
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56410
|
+
key_id?: string | undefined;
|
|
57313
56411
|
key_issuing_request_id?: string | undefined;
|
|
57314
56412
|
door_names?: string[] | undefined;
|
|
57315
56413
|
} | undefined;
|
|
@@ -57378,10 +56476,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57378
56476
|
credential_id?: string | undefined;
|
|
57379
56477
|
} | undefined;
|
|
57380
56478
|
assa_abloy_vostio_metadata?: {
|
|
57381
|
-
key_id?: string | undefined;
|
|
57382
56479
|
endpoint_id?: string | undefined;
|
|
57383
56480
|
auto_join?: boolean | undefined;
|
|
57384
56481
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56482
|
+
key_id?: string | undefined;
|
|
57385
56483
|
key_issuing_request_id?: string | undefined;
|
|
57386
56484
|
door_names?: string[] | undefined;
|
|
57387
56485
|
} | undefined;
|
|
@@ -57456,10 +56554,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57456
56554
|
credential_id?: string | undefined;
|
|
57457
56555
|
} | undefined;
|
|
57458
56556
|
assa_abloy_vostio_metadata?: {
|
|
57459
|
-
key_id?: string | undefined;
|
|
57460
56557
|
endpoint_id?: string | undefined;
|
|
57461
56558
|
auto_join?: boolean | undefined;
|
|
57462
56559
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56560
|
+
key_id?: string | undefined;
|
|
57463
56561
|
key_issuing_request_id?: string | undefined;
|
|
57464
56562
|
door_names?: string[] | undefined;
|
|
57465
56563
|
} | undefined;
|
|
@@ -57528,10 +56626,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57528
56626
|
credential_id?: string | undefined;
|
|
57529
56627
|
} | undefined;
|
|
57530
56628
|
assa_abloy_vostio_metadata?: {
|
|
57531
|
-
key_id?: string | undefined;
|
|
57532
56629
|
endpoint_id?: string | undefined;
|
|
57533
56630
|
auto_join?: boolean | undefined;
|
|
57534
56631
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56632
|
+
key_id?: string | undefined;
|
|
57535
56633
|
key_issuing_request_id?: string | undefined;
|
|
57536
56634
|
door_names?: string[] | undefined;
|
|
57537
56635
|
} | undefined;
|
|
@@ -60424,68 +59522,11 @@ export declare const batch: z.ZodObject<{
|
|
|
60424
59522
|
product_type: string;
|
|
60425
59523
|
}>>;
|
|
60426
59524
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
60427
|
-
|
|
60428
|
-
device_name: z.ZodString;
|
|
60429
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
60430
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
60431
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
60432
|
-
subscription_plan: z.ZodString;
|
|
60433
|
-
status_type: z.ZodString;
|
|
60434
|
-
current_or_last_store_id: z.ZodNumber;
|
|
60435
|
-
last_movement: z.ZodString;
|
|
60436
|
-
address: z.ZodNullable<z.ZodString>;
|
|
60437
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
60438
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
60439
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
60440
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
60441
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
60442
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
60443
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
60444
|
-
default_office_id: z.ZodNumber;
|
|
60445
|
-
fob_id: z.ZodNumber;
|
|
60446
|
-
has_photo: z.ZodBoolean;
|
|
59525
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
60447
59526
|
}, "strip", z.ZodTypeAny, {
|
|
60448
|
-
device_name
|
|
60449
|
-
key_id: string;
|
|
60450
|
-
property_id: string | null;
|
|
60451
|
-
property_postcode: string | null;
|
|
60452
|
-
key_notes: string | null;
|
|
60453
|
-
subscription_plan: string;
|
|
60454
|
-
status_type: string;
|
|
60455
|
-
current_or_last_store_id: number;
|
|
60456
|
-
last_movement: string;
|
|
60457
|
-
address: string | null;
|
|
60458
|
-
current_status: string | null;
|
|
60459
|
-
current_user_name: string | null;
|
|
60460
|
-
current_user_email: string | null;
|
|
60461
|
-
current_user_phone_number: string | null;
|
|
60462
|
-
current_user_company: string | null;
|
|
60463
|
-
handover_method: string | null;
|
|
60464
|
-
keynest_app_user: string | null;
|
|
60465
|
-
default_office_id: number;
|
|
60466
|
-
fob_id: number;
|
|
60467
|
-
has_photo: boolean;
|
|
59527
|
+
device_name?: string | undefined;
|
|
60468
59528
|
}, {
|
|
60469
|
-
device_name
|
|
60470
|
-
key_id: string;
|
|
60471
|
-
property_id: string | null;
|
|
60472
|
-
property_postcode: string | null;
|
|
60473
|
-
key_notes: string | null;
|
|
60474
|
-
subscription_plan: string;
|
|
60475
|
-
status_type: string;
|
|
60476
|
-
current_or_last_store_id: number;
|
|
60477
|
-
last_movement: string;
|
|
60478
|
-
address: string | null;
|
|
60479
|
-
current_status: string | null;
|
|
60480
|
-
current_user_name: string | null;
|
|
60481
|
-
current_user_email: string | null;
|
|
60482
|
-
current_user_phone_number: string | null;
|
|
60483
|
-
current_user_company: string | null;
|
|
60484
|
-
handover_method: string | null;
|
|
60485
|
-
keynest_app_user: string | null;
|
|
60486
|
-
default_office_id: number;
|
|
60487
|
-
fob_id: number;
|
|
60488
|
-
has_photo: boolean;
|
|
59529
|
+
device_name?: string | undefined;
|
|
60489
59530
|
}>>;
|
|
60490
59531
|
}, "strip", z.ZodTypeAny, {
|
|
60491
59532
|
ecobee_metadata?: {
|
|
@@ -60721,26 +59762,7 @@ export declare const batch: z.ZodObject<{
|
|
|
60721
59762
|
product_type: string;
|
|
60722
59763
|
} | undefined;
|
|
60723
59764
|
keynest_metadata?: {
|
|
60724
|
-
device_name
|
|
60725
|
-
key_id: string;
|
|
60726
|
-
property_id: string | null;
|
|
60727
|
-
property_postcode: string | null;
|
|
60728
|
-
key_notes: string | null;
|
|
60729
|
-
subscription_plan: string;
|
|
60730
|
-
status_type: string;
|
|
60731
|
-
current_or_last_store_id: number;
|
|
60732
|
-
last_movement: string;
|
|
60733
|
-
address: string | null;
|
|
60734
|
-
current_status: string | null;
|
|
60735
|
-
current_user_name: string | null;
|
|
60736
|
-
current_user_email: string | null;
|
|
60737
|
-
current_user_phone_number: string | null;
|
|
60738
|
-
current_user_company: string | null;
|
|
60739
|
-
handover_method: string | null;
|
|
60740
|
-
keynest_app_user: string | null;
|
|
60741
|
-
default_office_id: number;
|
|
60742
|
-
fob_id: number;
|
|
60743
|
-
has_photo: boolean;
|
|
59765
|
+
device_name?: string | undefined;
|
|
60744
59766
|
} | undefined;
|
|
60745
59767
|
}, {
|
|
60746
59768
|
ecobee_metadata?: {
|
|
@@ -60976,26 +59998,7 @@ export declare const batch: z.ZodObject<{
|
|
|
60976
59998
|
product_type: string;
|
|
60977
59999
|
} | undefined;
|
|
60978
60000
|
keynest_metadata?: {
|
|
60979
|
-
device_name
|
|
60980
|
-
key_id: string;
|
|
60981
|
-
property_id: string | null;
|
|
60982
|
-
property_postcode: string | null;
|
|
60983
|
-
key_notes: string | null;
|
|
60984
|
-
subscription_plan: string;
|
|
60985
|
-
status_type: string;
|
|
60986
|
-
current_or_last_store_id: number;
|
|
60987
|
-
last_movement: string;
|
|
60988
|
-
address: string | null;
|
|
60989
|
-
current_status: string | null;
|
|
60990
|
-
current_user_name: string | null;
|
|
60991
|
-
current_user_email: string | null;
|
|
60992
|
-
current_user_phone_number: string | null;
|
|
60993
|
-
current_user_company: string | null;
|
|
60994
|
-
handover_method: string | null;
|
|
60995
|
-
keynest_app_user: string | null;
|
|
60996
|
-
default_office_id: number;
|
|
60997
|
-
fob_id: number;
|
|
60998
|
-
has_photo: boolean;
|
|
60001
|
+
device_name?: string | undefined;
|
|
60999
60002
|
} | undefined;
|
|
61000
60003
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
61001
60004
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -66052,6 +65055,7 @@ export declare const batch: z.ZodObject<{
|
|
|
66052
65055
|
} | undefined;
|
|
66053
65056
|
}>, "many">>;
|
|
66054
65057
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
65058
|
+
workspace_id: z.ZodString;
|
|
66055
65059
|
common_code_key: z.ZodNullable<z.ZodString>;
|
|
66056
65060
|
is_scheduled_on_device: z.ZodOptional<z.ZodBoolean>;
|
|
66057
65061
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
@@ -66989,6 +65993,7 @@ export declare const batch: z.ZodObject<{
|
|
|
66989
65993
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
66990
65994
|
name: string | null;
|
|
66991
65995
|
device_id: string;
|
|
65996
|
+
workspace_id: string;
|
|
66992
65997
|
created_at: string;
|
|
66993
65998
|
errors: ({
|
|
66994
65999
|
message: string;
|
|
@@ -67288,6 +66293,7 @@ export declare const batch: z.ZodObject<{
|
|
|
67288
66293
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
67289
66294
|
name: string | null;
|
|
67290
66295
|
device_id: string;
|
|
66296
|
+
workspace_id: string;
|
|
67291
66297
|
created_at: string;
|
|
67292
66298
|
errors: ({
|
|
67293
66299
|
message: string;
|
|
@@ -67587,6 +66593,7 @@ export declare const batch: z.ZodObject<{
|
|
|
67587
66593
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
67588
66594
|
name: z.ZodNullable<z.ZodString>;
|
|
67589
66595
|
device_id: z.ZodString;
|
|
66596
|
+
workspace_id: z.ZodString;
|
|
67590
66597
|
created_at: z.ZodString;
|
|
67591
66598
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67592
66599
|
ends_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -68512,6 +67519,7 @@ export declare const batch: z.ZodObject<{
|
|
|
68512
67519
|
status: "set";
|
|
68513
67520
|
name: string | null;
|
|
68514
67521
|
device_id: string;
|
|
67522
|
+
workspace_id: string;
|
|
68515
67523
|
created_at: string;
|
|
68516
67524
|
errors: ({
|
|
68517
67525
|
message: string;
|
|
@@ -68802,6 +67810,7 @@ export declare const batch: z.ZodObject<{
|
|
|
68802
67810
|
status: "set";
|
|
68803
67811
|
name: string | null;
|
|
68804
67812
|
device_id: string;
|
|
67813
|
+
workspace_id: string;
|
|
68805
67814
|
created_at: string;
|
|
68806
67815
|
errors: ({
|
|
68807
67816
|
message: string;
|
|
@@ -69714,26 +68723,7 @@ export declare const batch: z.ZodObject<{
|
|
|
69714
68723
|
product_type: string;
|
|
69715
68724
|
} | undefined;
|
|
69716
68725
|
keynest_metadata?: {
|
|
69717
|
-
device_name
|
|
69718
|
-
key_id: string;
|
|
69719
|
-
property_id: string | null;
|
|
69720
|
-
property_postcode: string | null;
|
|
69721
|
-
key_notes: string | null;
|
|
69722
|
-
subscription_plan: string;
|
|
69723
|
-
status_type: string;
|
|
69724
|
-
current_or_last_store_id: number;
|
|
69725
|
-
last_movement: string;
|
|
69726
|
-
address: string | null;
|
|
69727
|
-
current_status: string | null;
|
|
69728
|
-
current_user_name: string | null;
|
|
69729
|
-
current_user_email: string | null;
|
|
69730
|
-
current_user_phone_number: string | null;
|
|
69731
|
-
current_user_company: string | null;
|
|
69732
|
-
handover_method: string | null;
|
|
69733
|
-
keynest_app_user: string | null;
|
|
69734
|
-
default_office_id: number;
|
|
69735
|
-
fob_id: number;
|
|
69736
|
-
has_photo: boolean;
|
|
68726
|
+
device_name?: string | undefined;
|
|
69737
68727
|
} | undefined;
|
|
69738
68728
|
} & {
|
|
69739
68729
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -70317,10 +69307,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70317
69307
|
credential_id?: string | undefined;
|
|
70318
69308
|
} | undefined;
|
|
70319
69309
|
assa_abloy_vostio_metadata?: {
|
|
70320
|
-
key_id?: string | undefined;
|
|
70321
69310
|
endpoint_id?: string | undefined;
|
|
70322
69311
|
auto_join?: boolean | undefined;
|
|
70323
69312
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69313
|
+
key_id?: string | undefined;
|
|
70324
69314
|
key_issuing_request_id?: string | undefined;
|
|
70325
69315
|
door_names?: string[] | undefined;
|
|
70326
69316
|
} | undefined;
|
|
@@ -70390,10 +69380,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70390
69380
|
credential_id?: string | undefined;
|
|
70391
69381
|
} | undefined;
|
|
70392
69382
|
assa_abloy_vostio_metadata?: {
|
|
70393
|
-
key_id?: string | undefined;
|
|
70394
69383
|
endpoint_id?: string | undefined;
|
|
70395
69384
|
auto_join?: boolean | undefined;
|
|
70396
69385
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69386
|
+
key_id?: string | undefined;
|
|
70397
69387
|
key_issuing_request_id?: string | undefined;
|
|
70398
69388
|
door_names?: string[] | undefined;
|
|
70399
69389
|
} | undefined;
|
|
@@ -70649,10 +69639,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70649
69639
|
credential_id?: string | undefined;
|
|
70650
69640
|
} | undefined;
|
|
70651
69641
|
assa_abloy_vostio_metadata?: {
|
|
70652
|
-
key_id?: string | undefined;
|
|
70653
69642
|
endpoint_id?: string | undefined;
|
|
70654
69643
|
auto_join?: boolean | undefined;
|
|
70655
69644
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69645
|
+
key_id?: string | undefined;
|
|
70656
69646
|
key_issuing_request_id?: string | undefined;
|
|
70657
69647
|
door_names?: string[] | undefined;
|
|
70658
69648
|
} | undefined;
|
|
@@ -70721,10 +69711,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70721
69711
|
credential_id?: string | undefined;
|
|
70722
69712
|
} | undefined;
|
|
70723
69713
|
assa_abloy_vostio_metadata?: {
|
|
70724
|
-
key_id?: string | undefined;
|
|
70725
69714
|
endpoint_id?: string | undefined;
|
|
70726
69715
|
auto_join?: boolean | undefined;
|
|
70727
69716
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69717
|
+
key_id?: string | undefined;
|
|
70728
69718
|
key_issuing_request_id?: string | undefined;
|
|
70729
69719
|
door_names?: string[] | undefined;
|
|
70730
69720
|
} | undefined;
|
|
@@ -70915,10 +69905,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70915
69905
|
credential_id?: string | undefined;
|
|
70916
69906
|
} | undefined;
|
|
70917
69907
|
assa_abloy_vostio_metadata?: {
|
|
70918
|
-
key_id?: string | undefined;
|
|
70919
69908
|
endpoint_id?: string | undefined;
|
|
70920
69909
|
auto_join?: boolean | undefined;
|
|
70921
69910
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69911
|
+
key_id?: string | undefined;
|
|
70922
69912
|
key_issuing_request_id?: string | undefined;
|
|
70923
69913
|
door_names?: string[] | undefined;
|
|
70924
69914
|
} | undefined;
|
|
@@ -70987,10 +69977,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70987
69977
|
credential_id?: string | undefined;
|
|
70988
69978
|
} | undefined;
|
|
70989
69979
|
assa_abloy_vostio_metadata?: {
|
|
70990
|
-
key_id?: string | undefined;
|
|
70991
69980
|
endpoint_id?: string | undefined;
|
|
70992
69981
|
auto_join?: boolean | undefined;
|
|
70993
69982
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69983
|
+
key_id?: string | undefined;
|
|
70994
69984
|
key_issuing_request_id?: string | undefined;
|
|
70995
69985
|
door_names?: string[] | undefined;
|
|
70996
69986
|
} | undefined;
|
|
@@ -72459,6 +71449,7 @@ export declare const batch: z.ZodObject<{
|
|
|
72459
71449
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
72460
71450
|
name: string | null;
|
|
72461
71451
|
device_id: string;
|
|
71452
|
+
workspace_id: string;
|
|
72462
71453
|
created_at: string;
|
|
72463
71454
|
errors: ({
|
|
72464
71455
|
message: string;
|
|
@@ -72759,6 +71750,7 @@ export declare const batch: z.ZodObject<{
|
|
|
72759
71750
|
status: "set";
|
|
72760
71751
|
name: string | null;
|
|
72761
71752
|
device_id: string;
|
|
71753
|
+
workspace_id: string;
|
|
72762
71754
|
created_at: string;
|
|
72763
71755
|
errors: ({
|
|
72764
71756
|
message: string;
|
|
@@ -73566,26 +72558,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73566
72558
|
product_type: string;
|
|
73567
72559
|
} | undefined;
|
|
73568
72560
|
keynest_metadata?: {
|
|
73569
|
-
device_name
|
|
73570
|
-
key_id: string;
|
|
73571
|
-
property_id: string | null;
|
|
73572
|
-
property_postcode: string | null;
|
|
73573
|
-
key_notes: string | null;
|
|
73574
|
-
subscription_plan: string;
|
|
73575
|
-
status_type: string;
|
|
73576
|
-
current_or_last_store_id: number;
|
|
73577
|
-
last_movement: string;
|
|
73578
|
-
address: string | null;
|
|
73579
|
-
current_status: string | null;
|
|
73580
|
-
current_user_name: string | null;
|
|
73581
|
-
current_user_email: string | null;
|
|
73582
|
-
current_user_phone_number: string | null;
|
|
73583
|
-
current_user_company: string | null;
|
|
73584
|
-
handover_method: string | null;
|
|
73585
|
-
keynest_app_user: string | null;
|
|
73586
|
-
default_office_id: number;
|
|
73587
|
-
fob_id: number;
|
|
73588
|
-
has_photo: boolean;
|
|
72561
|
+
device_name?: string | undefined;
|
|
73589
72562
|
} | undefined;
|
|
73590
72563
|
} & {
|
|
73591
72564
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -74169,10 +73142,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74169
73142
|
credential_id?: string | undefined;
|
|
74170
73143
|
} | undefined;
|
|
74171
73144
|
assa_abloy_vostio_metadata?: {
|
|
74172
|
-
key_id?: string | undefined;
|
|
74173
73145
|
endpoint_id?: string | undefined;
|
|
74174
73146
|
auto_join?: boolean | undefined;
|
|
74175
73147
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73148
|
+
key_id?: string | undefined;
|
|
74176
73149
|
key_issuing_request_id?: string | undefined;
|
|
74177
73150
|
door_names?: string[] | undefined;
|
|
74178
73151
|
} | undefined;
|
|
@@ -74242,10 +73215,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74242
73215
|
credential_id?: string | undefined;
|
|
74243
73216
|
} | undefined;
|
|
74244
73217
|
assa_abloy_vostio_metadata?: {
|
|
74245
|
-
key_id?: string | undefined;
|
|
74246
73218
|
endpoint_id?: string | undefined;
|
|
74247
73219
|
auto_join?: boolean | undefined;
|
|
74248
73220
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73221
|
+
key_id?: string | undefined;
|
|
74249
73222
|
key_issuing_request_id?: string | undefined;
|
|
74250
73223
|
door_names?: string[] | undefined;
|
|
74251
73224
|
} | undefined;
|
|
@@ -74501,10 +73474,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74501
73474
|
credential_id?: string | undefined;
|
|
74502
73475
|
} | undefined;
|
|
74503
73476
|
assa_abloy_vostio_metadata?: {
|
|
74504
|
-
key_id?: string | undefined;
|
|
74505
73477
|
endpoint_id?: string | undefined;
|
|
74506
73478
|
auto_join?: boolean | undefined;
|
|
74507
73479
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73480
|
+
key_id?: string | undefined;
|
|
74508
73481
|
key_issuing_request_id?: string | undefined;
|
|
74509
73482
|
door_names?: string[] | undefined;
|
|
74510
73483
|
} | undefined;
|
|
@@ -74573,10 +73546,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74573
73546
|
credential_id?: string | undefined;
|
|
74574
73547
|
} | undefined;
|
|
74575
73548
|
assa_abloy_vostio_metadata?: {
|
|
74576
|
-
key_id?: string | undefined;
|
|
74577
73549
|
endpoint_id?: string | undefined;
|
|
74578
73550
|
auto_join?: boolean | undefined;
|
|
74579
73551
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73552
|
+
key_id?: string | undefined;
|
|
74580
73553
|
key_issuing_request_id?: string | undefined;
|
|
74581
73554
|
door_names?: string[] | undefined;
|
|
74582
73555
|
} | undefined;
|
|
@@ -74767,10 +73740,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74767
73740
|
credential_id?: string | undefined;
|
|
74768
73741
|
} | undefined;
|
|
74769
73742
|
assa_abloy_vostio_metadata?: {
|
|
74770
|
-
key_id?: string | undefined;
|
|
74771
73743
|
endpoint_id?: string | undefined;
|
|
74772
73744
|
auto_join?: boolean | undefined;
|
|
74773
73745
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73746
|
+
key_id?: string | undefined;
|
|
74774
73747
|
key_issuing_request_id?: string | undefined;
|
|
74775
73748
|
door_names?: string[] | undefined;
|
|
74776
73749
|
} | undefined;
|
|
@@ -74839,10 +73812,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74839
73812
|
credential_id?: string | undefined;
|
|
74840
73813
|
} | undefined;
|
|
74841
73814
|
assa_abloy_vostio_metadata?: {
|
|
74842
|
-
key_id?: string | undefined;
|
|
74843
73815
|
endpoint_id?: string | undefined;
|
|
74844
73816
|
auto_join?: boolean | undefined;
|
|
74845
73817
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73818
|
+
key_id?: string | undefined;
|
|
74846
73819
|
key_issuing_request_id?: string | undefined;
|
|
74847
73820
|
door_names?: string[] | undefined;
|
|
74848
73821
|
} | undefined;
|
|
@@ -76311,6 +75284,7 @@ export declare const batch: z.ZodObject<{
|
|
|
76311
75284
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
76312
75285
|
name: string | null;
|
|
76313
75286
|
device_id: string;
|
|
75287
|
+
workspace_id: string;
|
|
76314
75288
|
created_at: string;
|
|
76315
75289
|
errors: ({
|
|
76316
75290
|
message: string;
|
|
@@ -76611,6 +75585,7 @@ export declare const batch: z.ZodObject<{
|
|
|
76611
75585
|
status: "set";
|
|
76612
75586
|
name: string | null;
|
|
76613
75587
|
device_id: string;
|
|
75588
|
+
workspace_id: string;
|
|
76614
75589
|
created_at: string;
|
|
76615
75590
|
errors: ({
|
|
76616
75591
|
message: string;
|