@seamapi/types 1.501.0 → 1.502.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 +2 -133
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +127 -1358
- package/dist/index.cjs +2 -133
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +151 -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 +0 -91
- package/lib/seam/connect/openapi.js +0 -112
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +17 -663
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -62
- package/src/lib/seam/connect/openapi.ts +0 -124
- package/src/lib/seam/connect/route-types.ts +17 -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">>>;
|
|
@@ -41323,26 +40582,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41323
40582
|
product_type: string;
|
|
41324
40583
|
} | undefined;
|
|
41325
40584
|
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;
|
|
40585
|
+
device_name?: string | undefined;
|
|
41346
40586
|
} | undefined;
|
|
41347
40587
|
} & {
|
|
41348
40588
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -41997,10 +41237,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41997
41237
|
credential_id?: string | undefined;
|
|
41998
41238
|
} | undefined;
|
|
41999
41239
|
assa_abloy_vostio_metadata?: {
|
|
42000
|
-
key_id?: string | undefined;
|
|
42001
41240
|
endpoint_id?: string | undefined;
|
|
42002
41241
|
auto_join?: boolean | undefined;
|
|
42003
41242
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41243
|
+
key_id?: string | undefined;
|
|
42004
41244
|
key_issuing_request_id?: string | undefined;
|
|
42005
41245
|
door_names?: string[] | undefined;
|
|
42006
41246
|
} | undefined;
|
|
@@ -42070,10 +41310,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42070
41310
|
credential_id?: string | undefined;
|
|
42071
41311
|
} | undefined;
|
|
42072
41312
|
assa_abloy_vostio_metadata?: {
|
|
42073
|
-
key_id?: string | undefined;
|
|
42074
41313
|
endpoint_id?: string | undefined;
|
|
42075
41314
|
auto_join?: boolean | undefined;
|
|
42076
41315
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41316
|
+
key_id?: string | undefined;
|
|
42077
41317
|
key_issuing_request_id?: string | undefined;
|
|
42078
41318
|
door_names?: string[] | undefined;
|
|
42079
41319
|
} | undefined;
|
|
@@ -42329,10 +41569,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42329
41569
|
credential_id?: string | undefined;
|
|
42330
41570
|
} | undefined;
|
|
42331
41571
|
assa_abloy_vostio_metadata?: {
|
|
42332
|
-
key_id?: string | undefined;
|
|
42333
41572
|
endpoint_id?: string | undefined;
|
|
42334
41573
|
auto_join?: boolean | undefined;
|
|
42335
41574
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41575
|
+
key_id?: string | undefined;
|
|
42336
41576
|
key_issuing_request_id?: string | undefined;
|
|
42337
41577
|
door_names?: string[] | undefined;
|
|
42338
41578
|
} | undefined;
|
|
@@ -42401,10 +41641,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42401
41641
|
credential_id?: string | undefined;
|
|
42402
41642
|
} | undefined;
|
|
42403
41643
|
assa_abloy_vostio_metadata?: {
|
|
42404
|
-
key_id?: string | undefined;
|
|
42405
41644
|
endpoint_id?: string | undefined;
|
|
42406
41645
|
auto_join?: boolean | undefined;
|
|
42407
41646
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41647
|
+
key_id?: string | undefined;
|
|
42408
41648
|
key_issuing_request_id?: string | undefined;
|
|
42409
41649
|
door_names?: string[] | undefined;
|
|
42410
41650
|
} | undefined;
|
|
@@ -42595,10 +41835,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42595
41835
|
credential_id?: string | undefined;
|
|
42596
41836
|
} | undefined;
|
|
42597
41837
|
assa_abloy_vostio_metadata?: {
|
|
42598
|
-
key_id?: string | undefined;
|
|
42599
41838
|
endpoint_id?: string | undefined;
|
|
42600
41839
|
auto_join?: boolean | undefined;
|
|
42601
41840
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41841
|
+
key_id?: string | undefined;
|
|
42602
41842
|
key_issuing_request_id?: string | undefined;
|
|
42603
41843
|
door_names?: string[] | undefined;
|
|
42604
41844
|
} | undefined;
|
|
@@ -42667,10 +41907,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42667
41907
|
credential_id?: string | undefined;
|
|
42668
41908
|
} | undefined;
|
|
42669
41909
|
assa_abloy_vostio_metadata?: {
|
|
42670
|
-
key_id?: string | undefined;
|
|
42671
41910
|
endpoint_id?: string | undefined;
|
|
42672
41911
|
auto_join?: boolean | undefined;
|
|
42673
41912
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
41913
|
+
key_id?: string | undefined;
|
|
42674
41914
|
key_issuing_request_id?: string | undefined;
|
|
42675
41915
|
door_names?: string[] | undefined;
|
|
42676
41916
|
} | undefined;
|
|
@@ -45246,26 +44486,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45246
44486
|
product_type: string;
|
|
45247
44487
|
} | undefined;
|
|
45248
44488
|
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;
|
|
44489
|
+
device_name?: string | undefined;
|
|
45269
44490
|
} | undefined;
|
|
45270
44491
|
} & {
|
|
45271
44492
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -45920,10 +45141,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45920
45141
|
credential_id?: string | undefined;
|
|
45921
45142
|
} | undefined;
|
|
45922
45143
|
assa_abloy_vostio_metadata?: {
|
|
45923
|
-
key_id?: string | undefined;
|
|
45924
45144
|
endpoint_id?: string | undefined;
|
|
45925
45145
|
auto_join?: boolean | undefined;
|
|
45926
45146
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45147
|
+
key_id?: string | undefined;
|
|
45927
45148
|
key_issuing_request_id?: string | undefined;
|
|
45928
45149
|
door_names?: string[] | undefined;
|
|
45929
45150
|
} | undefined;
|
|
@@ -45993,10 +45214,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45993
45214
|
credential_id?: string | undefined;
|
|
45994
45215
|
} | undefined;
|
|
45995
45216
|
assa_abloy_vostio_metadata?: {
|
|
45996
|
-
key_id?: string | undefined;
|
|
45997
45217
|
endpoint_id?: string | undefined;
|
|
45998
45218
|
auto_join?: boolean | undefined;
|
|
45999
45219
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45220
|
+
key_id?: string | undefined;
|
|
46000
45221
|
key_issuing_request_id?: string | undefined;
|
|
46001
45222
|
door_names?: string[] | undefined;
|
|
46002
45223
|
} | undefined;
|
|
@@ -46252,10 +45473,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46252
45473
|
credential_id?: string | undefined;
|
|
46253
45474
|
} | undefined;
|
|
46254
45475
|
assa_abloy_vostio_metadata?: {
|
|
46255
|
-
key_id?: string | undefined;
|
|
46256
45476
|
endpoint_id?: string | undefined;
|
|
46257
45477
|
auto_join?: boolean | undefined;
|
|
46258
45478
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45479
|
+
key_id?: string | undefined;
|
|
46259
45480
|
key_issuing_request_id?: string | undefined;
|
|
46260
45481
|
door_names?: string[] | undefined;
|
|
46261
45482
|
} | undefined;
|
|
@@ -46324,10 +45545,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46324
45545
|
credential_id?: string | undefined;
|
|
46325
45546
|
} | undefined;
|
|
46326
45547
|
assa_abloy_vostio_metadata?: {
|
|
46327
|
-
key_id?: string | undefined;
|
|
46328
45548
|
endpoint_id?: string | undefined;
|
|
46329
45549
|
auto_join?: boolean | undefined;
|
|
46330
45550
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45551
|
+
key_id?: string | undefined;
|
|
46331
45552
|
key_issuing_request_id?: string | undefined;
|
|
46332
45553
|
door_names?: string[] | undefined;
|
|
46333
45554
|
} | undefined;
|
|
@@ -46518,10 +45739,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46518
45739
|
credential_id?: string | undefined;
|
|
46519
45740
|
} | undefined;
|
|
46520
45741
|
assa_abloy_vostio_metadata?: {
|
|
46521
|
-
key_id?: string | undefined;
|
|
46522
45742
|
endpoint_id?: string | undefined;
|
|
46523
45743
|
auto_join?: boolean | undefined;
|
|
46524
45744
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45745
|
+
key_id?: string | undefined;
|
|
46525
45746
|
key_issuing_request_id?: string | undefined;
|
|
46526
45747
|
door_names?: string[] | undefined;
|
|
46527
45748
|
} | undefined;
|
|
@@ -46590,10 +45811,10 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46590
45811
|
credential_id?: string | undefined;
|
|
46591
45812
|
} | undefined;
|
|
46592
45813
|
assa_abloy_vostio_metadata?: {
|
|
46593
|
-
key_id?: string | undefined;
|
|
46594
45814
|
endpoint_id?: string | undefined;
|
|
46595
45815
|
auto_join?: boolean | undefined;
|
|
46596
45816
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
45817
|
+
key_id?: string | undefined;
|
|
46597
45818
|
key_issuing_request_id?: string | undefined;
|
|
46598
45819
|
door_names?: string[] | undefined;
|
|
46599
45820
|
} | undefined;
|
|
@@ -49837,68 +49058,11 @@ export declare const batch: z.ZodObject<{
|
|
|
49837
49058
|
product_type: string;
|
|
49838
49059
|
}>>;
|
|
49839
49060
|
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;
|
|
49061
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
49860
49062
|
}, "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;
|
|
49063
|
+
device_name?: string | undefined;
|
|
49881
49064
|
}, {
|
|
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;
|
|
49065
|
+
device_name?: string | undefined;
|
|
49902
49066
|
}>>;
|
|
49903
49067
|
}, "strip", z.ZodTypeAny, {
|
|
49904
49068
|
ecobee_metadata?: {
|
|
@@ -50134,26 +49298,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50134
49298
|
product_type: string;
|
|
50135
49299
|
} | undefined;
|
|
50136
49300
|
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;
|
|
49301
|
+
device_name?: string | undefined;
|
|
50157
49302
|
} | undefined;
|
|
50158
49303
|
}, {
|
|
50159
49304
|
ecobee_metadata?: {
|
|
@@ -50389,26 +49534,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50389
49534
|
product_type: string;
|
|
50390
49535
|
} | undefined;
|
|
50391
49536
|
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;
|
|
49537
|
+
device_name?: string | undefined;
|
|
50412
49538
|
} | undefined;
|
|
50413
49539
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
50414
49540
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -52185,26 +51311,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52185
51311
|
product_type: string;
|
|
52186
51312
|
} | undefined;
|
|
52187
51313
|
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;
|
|
51314
|
+
device_name?: string | undefined;
|
|
52208
51315
|
} | undefined;
|
|
52209
51316
|
} & {
|
|
52210
51317
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -52843,26 +51950,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52843
51950
|
product_type: string;
|
|
52844
51951
|
} | undefined;
|
|
52845
51952
|
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;
|
|
51953
|
+
device_name?: string | undefined;
|
|
52866
51954
|
} | undefined;
|
|
52867
51955
|
} & {
|
|
52868
51956
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -54477,17 +53565,17 @@ export declare const batch: z.ZodObject<{
|
|
|
54477
53565
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54478
53566
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
54479
53567
|
}, "strip", z.ZodTypeAny, {
|
|
54480
|
-
key_id?: string | undefined;
|
|
54481
53568
|
endpoint_id?: string | undefined;
|
|
54482
53569
|
auto_join?: boolean | undefined;
|
|
54483
53570
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53571
|
+
key_id?: string | undefined;
|
|
54484
53572
|
key_issuing_request_id?: string | undefined;
|
|
54485
53573
|
door_names?: string[] | undefined;
|
|
54486
53574
|
}, {
|
|
54487
|
-
key_id?: string | undefined;
|
|
54488
53575
|
endpoint_id?: string | undefined;
|
|
54489
53576
|
auto_join?: boolean | undefined;
|
|
54490
53577
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53578
|
+
key_id?: string | undefined;
|
|
54491
53579
|
key_issuing_request_id?: string | undefined;
|
|
54492
53580
|
door_names?: string[] | undefined;
|
|
54493
53581
|
}>>;
|
|
@@ -54545,10 +53633,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54545
53633
|
credential_id?: string | undefined;
|
|
54546
53634
|
} | undefined;
|
|
54547
53635
|
assa_abloy_vostio_metadata?: {
|
|
54548
|
-
key_id?: string | undefined;
|
|
54549
53636
|
endpoint_id?: string | undefined;
|
|
54550
53637
|
auto_join?: boolean | undefined;
|
|
54551
53638
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53639
|
+
key_id?: string | undefined;
|
|
54552
53640
|
key_issuing_request_id?: string | undefined;
|
|
54553
53641
|
door_names?: string[] | undefined;
|
|
54554
53642
|
} | undefined;
|
|
@@ -54617,10 +53705,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54617
53705
|
credential_id?: string | undefined;
|
|
54618
53706
|
} | undefined;
|
|
54619
53707
|
assa_abloy_vostio_metadata?: {
|
|
54620
|
-
key_id?: string | undefined;
|
|
54621
53708
|
endpoint_id?: string | undefined;
|
|
54622
53709
|
auto_join?: boolean | undefined;
|
|
54623
53710
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53711
|
+
key_id?: string | undefined;
|
|
54624
53712
|
key_issuing_request_id?: string | undefined;
|
|
54625
53713
|
door_names?: string[] | undefined;
|
|
54626
53714
|
} | undefined;
|
|
@@ -54787,17 +53875,17 @@ export declare const batch: z.ZodObject<{
|
|
|
54787
53875
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54788
53876
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
54789
53877
|
}, "strip", z.ZodTypeAny, {
|
|
54790
|
-
key_id?: string | undefined;
|
|
54791
53878
|
endpoint_id?: string | undefined;
|
|
54792
53879
|
auto_join?: boolean | undefined;
|
|
54793
53880
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53881
|
+
key_id?: string | undefined;
|
|
54794
53882
|
key_issuing_request_id?: string | undefined;
|
|
54795
53883
|
door_names?: string[] | undefined;
|
|
54796
53884
|
}, {
|
|
54797
|
-
key_id?: string | undefined;
|
|
54798
53885
|
endpoint_id?: string | undefined;
|
|
54799
53886
|
auto_join?: boolean | undefined;
|
|
54800
53887
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53888
|
+
key_id?: string | undefined;
|
|
54801
53889
|
key_issuing_request_id?: string | undefined;
|
|
54802
53890
|
door_names?: string[] | undefined;
|
|
54803
53891
|
}>>;
|
|
@@ -54855,10 +53943,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54855
53943
|
credential_id?: string | undefined;
|
|
54856
53944
|
} | undefined;
|
|
54857
53945
|
assa_abloy_vostio_metadata?: {
|
|
54858
|
-
key_id?: string | undefined;
|
|
54859
53946
|
endpoint_id?: string | undefined;
|
|
54860
53947
|
auto_join?: boolean | undefined;
|
|
54861
53948
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
53949
|
+
key_id?: string | undefined;
|
|
54862
53950
|
key_issuing_request_id?: string | undefined;
|
|
54863
53951
|
door_names?: string[] | undefined;
|
|
54864
53952
|
} | undefined;
|
|
@@ -54927,10 +54015,10 @@ export declare const batch: z.ZodObject<{
|
|
|
54927
54015
|
credential_id?: string | undefined;
|
|
54928
54016
|
} | undefined;
|
|
54929
54017
|
assa_abloy_vostio_metadata?: {
|
|
54930
|
-
key_id?: string | undefined;
|
|
54931
54018
|
endpoint_id?: string | undefined;
|
|
54932
54019
|
auto_join?: boolean | undefined;
|
|
54933
54020
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54021
|
+
key_id?: string | undefined;
|
|
54934
54022
|
key_issuing_request_id?: string | undefined;
|
|
54935
54023
|
door_names?: string[] | undefined;
|
|
54936
54024
|
} | undefined;
|
|
@@ -55362,17 +54450,17 @@ export declare const batch: z.ZodObject<{
|
|
|
55362
54450
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55363
54451
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
55364
54452
|
}, "strip", z.ZodTypeAny, {
|
|
55365
|
-
key_id?: string | undefined;
|
|
55366
54453
|
endpoint_id?: string | undefined;
|
|
55367
54454
|
auto_join?: boolean | undefined;
|
|
55368
54455
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54456
|
+
key_id?: string | undefined;
|
|
55369
54457
|
key_issuing_request_id?: string | undefined;
|
|
55370
54458
|
door_names?: string[] | undefined;
|
|
55371
54459
|
}, {
|
|
55372
|
-
key_id?: string | undefined;
|
|
55373
54460
|
endpoint_id?: string | undefined;
|
|
55374
54461
|
auto_join?: boolean | undefined;
|
|
55375
54462
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54463
|
+
key_id?: string | undefined;
|
|
55376
54464
|
key_issuing_request_id?: string | undefined;
|
|
55377
54465
|
door_names?: string[] | undefined;
|
|
55378
54466
|
}>>;
|
|
@@ -55430,10 +54518,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55430
54518
|
credential_id?: string | undefined;
|
|
55431
54519
|
} | undefined;
|
|
55432
54520
|
assa_abloy_vostio_metadata?: {
|
|
55433
|
-
key_id?: string | undefined;
|
|
55434
54521
|
endpoint_id?: string | undefined;
|
|
55435
54522
|
auto_join?: boolean | undefined;
|
|
55436
54523
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54524
|
+
key_id?: string | undefined;
|
|
55437
54525
|
key_issuing_request_id?: string | undefined;
|
|
55438
54526
|
door_names?: string[] | undefined;
|
|
55439
54527
|
} | undefined;
|
|
@@ -55502,10 +54590,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55502
54590
|
credential_id?: string | undefined;
|
|
55503
54591
|
} | undefined;
|
|
55504
54592
|
assa_abloy_vostio_metadata?: {
|
|
55505
|
-
key_id?: string | undefined;
|
|
55506
54593
|
endpoint_id?: string | undefined;
|
|
55507
54594
|
auto_join?: boolean | undefined;
|
|
55508
54595
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54596
|
+
key_id?: string | undefined;
|
|
55509
54597
|
key_issuing_request_id?: string | undefined;
|
|
55510
54598
|
door_names?: string[] | undefined;
|
|
55511
54599
|
} | undefined;
|
|
@@ -55671,17 +54759,17 @@ export declare const batch: z.ZodObject<{
|
|
|
55671
54759
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
55672
54760
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
55673
54761
|
}, "strip", z.ZodTypeAny, {
|
|
55674
|
-
key_id?: string | undefined;
|
|
55675
54762
|
endpoint_id?: string | undefined;
|
|
55676
54763
|
auto_join?: boolean | undefined;
|
|
55677
54764
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54765
|
+
key_id?: string | undefined;
|
|
55678
54766
|
key_issuing_request_id?: string | undefined;
|
|
55679
54767
|
door_names?: string[] | undefined;
|
|
55680
54768
|
}, {
|
|
55681
|
-
key_id?: string | undefined;
|
|
55682
54769
|
endpoint_id?: string | undefined;
|
|
55683
54770
|
auto_join?: boolean | undefined;
|
|
55684
54771
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54772
|
+
key_id?: string | undefined;
|
|
55685
54773
|
key_issuing_request_id?: string | undefined;
|
|
55686
54774
|
door_names?: string[] | undefined;
|
|
55687
54775
|
}>>;
|
|
@@ -55739,10 +54827,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55739
54827
|
credential_id?: string | undefined;
|
|
55740
54828
|
} | undefined;
|
|
55741
54829
|
assa_abloy_vostio_metadata?: {
|
|
55742
|
-
key_id?: string | undefined;
|
|
55743
54830
|
endpoint_id?: string | undefined;
|
|
55744
54831
|
auto_join?: boolean | undefined;
|
|
55745
54832
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54833
|
+
key_id?: string | undefined;
|
|
55746
54834
|
key_issuing_request_id?: string | undefined;
|
|
55747
54835
|
door_names?: string[] | undefined;
|
|
55748
54836
|
} | undefined;
|
|
@@ -55811,10 +54899,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55811
54899
|
credential_id?: string | undefined;
|
|
55812
54900
|
} | undefined;
|
|
55813
54901
|
assa_abloy_vostio_metadata?: {
|
|
55814
|
-
key_id?: string | undefined;
|
|
55815
54902
|
endpoint_id?: string | undefined;
|
|
55816
54903
|
auto_join?: boolean | undefined;
|
|
55817
54904
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
54905
|
+
key_id?: string | undefined;
|
|
55818
54906
|
key_issuing_request_id?: string | undefined;
|
|
55819
54907
|
door_names?: string[] | undefined;
|
|
55820
54908
|
} | undefined;
|
|
@@ -55920,10 +55008,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55920
55008
|
credential_id?: string | undefined;
|
|
55921
55009
|
} | undefined;
|
|
55922
55010
|
assa_abloy_vostio_metadata?: {
|
|
55923
|
-
key_id?: string | undefined;
|
|
55924
55011
|
endpoint_id?: string | undefined;
|
|
55925
55012
|
auto_join?: boolean | undefined;
|
|
55926
55013
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55014
|
+
key_id?: string | undefined;
|
|
55927
55015
|
key_issuing_request_id?: string | undefined;
|
|
55928
55016
|
door_names?: string[] | undefined;
|
|
55929
55017
|
} | undefined;
|
|
@@ -55992,10 +55080,10 @@ export declare const batch: z.ZodObject<{
|
|
|
55992
55080
|
credential_id?: string | undefined;
|
|
55993
55081
|
} | undefined;
|
|
55994
55082
|
assa_abloy_vostio_metadata?: {
|
|
55995
|
-
key_id?: string | undefined;
|
|
55996
55083
|
endpoint_id?: string | undefined;
|
|
55997
55084
|
auto_join?: boolean | undefined;
|
|
55998
55085
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55086
|
+
key_id?: string | undefined;
|
|
55999
55087
|
key_issuing_request_id?: string | undefined;
|
|
56000
55088
|
door_names?: string[] | undefined;
|
|
56001
55089
|
} | undefined;
|
|
@@ -56091,10 +55179,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56091
55179
|
credential_id?: string | undefined;
|
|
56092
55180
|
} | undefined;
|
|
56093
55181
|
assa_abloy_vostio_metadata?: {
|
|
56094
|
-
key_id?: string | undefined;
|
|
56095
55182
|
endpoint_id?: string | undefined;
|
|
56096
55183
|
auto_join?: boolean | undefined;
|
|
56097
55184
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55185
|
+
key_id?: string | undefined;
|
|
56098
55186
|
key_issuing_request_id?: string | undefined;
|
|
56099
55187
|
door_names?: string[] | undefined;
|
|
56100
55188
|
} | undefined;
|
|
@@ -56163,10 +55251,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56163
55251
|
credential_id?: string | undefined;
|
|
56164
55252
|
} | undefined;
|
|
56165
55253
|
assa_abloy_vostio_metadata?: {
|
|
56166
|
-
key_id?: string | undefined;
|
|
56167
55254
|
endpoint_id?: string | undefined;
|
|
56168
55255
|
auto_join?: boolean | undefined;
|
|
56169
55256
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55257
|
+
key_id?: string | undefined;
|
|
56170
55258
|
key_issuing_request_id?: string | undefined;
|
|
56171
55259
|
door_names?: string[] | undefined;
|
|
56172
55260
|
} | undefined;
|
|
@@ -56267,10 +55355,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56267
55355
|
credential_id?: string | undefined;
|
|
56268
55356
|
} | undefined;
|
|
56269
55357
|
assa_abloy_vostio_metadata?: {
|
|
56270
|
-
key_id?: string | undefined;
|
|
56271
55358
|
endpoint_id?: string | undefined;
|
|
56272
55359
|
auto_join?: boolean | undefined;
|
|
56273
55360
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55361
|
+
key_id?: string | undefined;
|
|
56274
55362
|
key_issuing_request_id?: string | undefined;
|
|
56275
55363
|
door_names?: string[] | undefined;
|
|
56276
55364
|
} | undefined;
|
|
@@ -56339,10 +55427,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56339
55427
|
credential_id?: string | undefined;
|
|
56340
55428
|
} | undefined;
|
|
56341
55429
|
assa_abloy_vostio_metadata?: {
|
|
56342
|
-
key_id?: string | undefined;
|
|
56343
55430
|
endpoint_id?: string | undefined;
|
|
56344
55431
|
auto_join?: boolean | undefined;
|
|
56345
55432
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55433
|
+
key_id?: string | undefined;
|
|
56346
55434
|
key_issuing_request_id?: string | undefined;
|
|
56347
55435
|
door_names?: string[] | undefined;
|
|
56348
55436
|
} | undefined;
|
|
@@ -56444,10 +55532,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56444
55532
|
credential_id?: string | undefined;
|
|
56445
55533
|
} | undefined;
|
|
56446
55534
|
assa_abloy_vostio_metadata?: {
|
|
56447
|
-
key_id?: string | undefined;
|
|
56448
55535
|
endpoint_id?: string | undefined;
|
|
56449
55536
|
auto_join?: boolean | undefined;
|
|
56450
55537
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55538
|
+
key_id?: string | undefined;
|
|
56451
55539
|
key_issuing_request_id?: string | undefined;
|
|
56452
55540
|
door_names?: string[] | undefined;
|
|
56453
55541
|
} | undefined;
|
|
@@ -56516,10 +55604,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56516
55604
|
credential_id?: string | undefined;
|
|
56517
55605
|
} | undefined;
|
|
56518
55606
|
assa_abloy_vostio_metadata?: {
|
|
56519
|
-
key_id?: string | undefined;
|
|
56520
55607
|
endpoint_id?: string | undefined;
|
|
56521
55608
|
auto_join?: boolean | undefined;
|
|
56522
55609
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55610
|
+
key_id?: string | undefined;
|
|
56523
55611
|
key_issuing_request_id?: string | undefined;
|
|
56524
55612
|
door_names?: string[] | undefined;
|
|
56525
55613
|
} | undefined;
|
|
@@ -56780,17 +55868,17 @@ export declare const batch: z.ZodObject<{
|
|
|
56780
55868
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
56781
55869
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
56782
55870
|
}, "strip", z.ZodTypeAny, {
|
|
56783
|
-
key_id?: string | undefined;
|
|
56784
55871
|
endpoint_id?: string | undefined;
|
|
56785
55872
|
auto_join?: boolean | undefined;
|
|
56786
55873
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55874
|
+
key_id?: string | undefined;
|
|
56787
55875
|
key_issuing_request_id?: string | undefined;
|
|
56788
55876
|
door_names?: string[] | undefined;
|
|
56789
55877
|
}, {
|
|
56790
|
-
key_id?: string | undefined;
|
|
56791
55878
|
endpoint_id?: string | undefined;
|
|
56792
55879
|
auto_join?: boolean | undefined;
|
|
56793
55880
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55881
|
+
key_id?: string | undefined;
|
|
56794
55882
|
key_issuing_request_id?: string | undefined;
|
|
56795
55883
|
door_names?: string[] | undefined;
|
|
56796
55884
|
}>>;
|
|
@@ -56848,10 +55936,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56848
55936
|
credential_id?: string | undefined;
|
|
56849
55937
|
} | undefined;
|
|
56850
55938
|
assa_abloy_vostio_metadata?: {
|
|
56851
|
-
key_id?: string | undefined;
|
|
56852
55939
|
endpoint_id?: string | undefined;
|
|
56853
55940
|
auto_join?: boolean | undefined;
|
|
56854
55941
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
55942
|
+
key_id?: string | undefined;
|
|
56855
55943
|
key_issuing_request_id?: string | undefined;
|
|
56856
55944
|
door_names?: string[] | undefined;
|
|
56857
55945
|
} | undefined;
|
|
@@ -56920,10 +56008,10 @@ export declare const batch: z.ZodObject<{
|
|
|
56920
56008
|
credential_id?: string | undefined;
|
|
56921
56009
|
} | undefined;
|
|
56922
56010
|
assa_abloy_vostio_metadata?: {
|
|
56923
|
-
key_id?: string | undefined;
|
|
56924
56011
|
endpoint_id?: string | undefined;
|
|
56925
56012
|
auto_join?: boolean | undefined;
|
|
56926
56013
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56014
|
+
key_id?: string | undefined;
|
|
56927
56015
|
key_issuing_request_id?: string | undefined;
|
|
56928
56016
|
door_names?: string[] | undefined;
|
|
56929
56017
|
} | undefined;
|
|
@@ -57089,17 +56177,17 @@ export declare const batch: z.ZodObject<{
|
|
|
57089
56177
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
57090
56178
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
57091
56179
|
}, "strip", z.ZodTypeAny, {
|
|
57092
|
-
key_id?: string | undefined;
|
|
57093
56180
|
endpoint_id?: string | undefined;
|
|
57094
56181
|
auto_join?: boolean | undefined;
|
|
57095
56182
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56183
|
+
key_id?: string | undefined;
|
|
57096
56184
|
key_issuing_request_id?: string | undefined;
|
|
57097
56185
|
door_names?: string[] | undefined;
|
|
57098
56186
|
}, {
|
|
57099
|
-
key_id?: string | undefined;
|
|
57100
56187
|
endpoint_id?: string | undefined;
|
|
57101
56188
|
auto_join?: boolean | undefined;
|
|
57102
56189
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56190
|
+
key_id?: string | undefined;
|
|
57103
56191
|
key_issuing_request_id?: string | undefined;
|
|
57104
56192
|
door_names?: string[] | undefined;
|
|
57105
56193
|
}>>;
|
|
@@ -57157,10 +56245,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57157
56245
|
credential_id?: string | undefined;
|
|
57158
56246
|
} | undefined;
|
|
57159
56247
|
assa_abloy_vostio_metadata?: {
|
|
57160
|
-
key_id?: string | undefined;
|
|
57161
56248
|
endpoint_id?: string | undefined;
|
|
57162
56249
|
auto_join?: boolean | undefined;
|
|
57163
56250
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56251
|
+
key_id?: string | undefined;
|
|
57164
56252
|
key_issuing_request_id?: string | undefined;
|
|
57165
56253
|
door_names?: string[] | undefined;
|
|
57166
56254
|
} | undefined;
|
|
@@ -57229,10 +56317,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57229
56317
|
credential_id?: string | undefined;
|
|
57230
56318
|
} | undefined;
|
|
57231
56319
|
assa_abloy_vostio_metadata?: {
|
|
57232
|
-
key_id?: string | undefined;
|
|
57233
56320
|
endpoint_id?: string | undefined;
|
|
57234
56321
|
auto_join?: boolean | undefined;
|
|
57235
56322
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56323
|
+
key_id?: string | undefined;
|
|
57236
56324
|
key_issuing_request_id?: string | undefined;
|
|
57237
56325
|
door_names?: string[] | undefined;
|
|
57238
56326
|
} | undefined;
|
|
@@ -57306,10 +56394,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57306
56394
|
credential_id?: string | undefined;
|
|
57307
56395
|
} | undefined;
|
|
57308
56396
|
assa_abloy_vostio_metadata?: {
|
|
57309
|
-
key_id?: string | undefined;
|
|
57310
56397
|
endpoint_id?: string | undefined;
|
|
57311
56398
|
auto_join?: boolean | undefined;
|
|
57312
56399
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56400
|
+
key_id?: string | undefined;
|
|
57313
56401
|
key_issuing_request_id?: string | undefined;
|
|
57314
56402
|
door_names?: string[] | undefined;
|
|
57315
56403
|
} | undefined;
|
|
@@ -57378,10 +56466,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57378
56466
|
credential_id?: string | undefined;
|
|
57379
56467
|
} | undefined;
|
|
57380
56468
|
assa_abloy_vostio_metadata?: {
|
|
57381
|
-
key_id?: string | undefined;
|
|
57382
56469
|
endpoint_id?: string | undefined;
|
|
57383
56470
|
auto_join?: boolean | undefined;
|
|
57384
56471
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56472
|
+
key_id?: string | undefined;
|
|
57385
56473
|
key_issuing_request_id?: string | undefined;
|
|
57386
56474
|
door_names?: string[] | undefined;
|
|
57387
56475
|
} | undefined;
|
|
@@ -57456,10 +56544,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57456
56544
|
credential_id?: string | undefined;
|
|
57457
56545
|
} | undefined;
|
|
57458
56546
|
assa_abloy_vostio_metadata?: {
|
|
57459
|
-
key_id?: string | undefined;
|
|
57460
56547
|
endpoint_id?: string | undefined;
|
|
57461
56548
|
auto_join?: boolean | undefined;
|
|
57462
56549
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56550
|
+
key_id?: string | undefined;
|
|
57463
56551
|
key_issuing_request_id?: string | undefined;
|
|
57464
56552
|
door_names?: string[] | undefined;
|
|
57465
56553
|
} | undefined;
|
|
@@ -57528,10 +56616,10 @@ export declare const batch: z.ZodObject<{
|
|
|
57528
56616
|
credential_id?: string | undefined;
|
|
57529
56617
|
} | undefined;
|
|
57530
56618
|
assa_abloy_vostio_metadata?: {
|
|
57531
|
-
key_id?: string | undefined;
|
|
57532
56619
|
endpoint_id?: string | undefined;
|
|
57533
56620
|
auto_join?: boolean | undefined;
|
|
57534
56621
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
56622
|
+
key_id?: string | undefined;
|
|
57535
56623
|
key_issuing_request_id?: string | undefined;
|
|
57536
56624
|
door_names?: string[] | undefined;
|
|
57537
56625
|
} | undefined;
|
|
@@ -60424,68 +59512,11 @@ export declare const batch: z.ZodObject<{
|
|
|
60424
59512
|
product_type: string;
|
|
60425
59513
|
}>>;
|
|
60426
59514
|
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;
|
|
59515
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
60447
59516
|
}, "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;
|
|
59517
|
+
device_name?: string | undefined;
|
|
60468
59518
|
}, {
|
|
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;
|
|
59519
|
+
device_name?: string | undefined;
|
|
60489
59520
|
}>>;
|
|
60490
59521
|
}, "strip", z.ZodTypeAny, {
|
|
60491
59522
|
ecobee_metadata?: {
|
|
@@ -60721,26 +59752,7 @@ export declare const batch: z.ZodObject<{
|
|
|
60721
59752
|
product_type: string;
|
|
60722
59753
|
} | undefined;
|
|
60723
59754
|
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;
|
|
59755
|
+
device_name?: string | undefined;
|
|
60744
59756
|
} | undefined;
|
|
60745
59757
|
}, {
|
|
60746
59758
|
ecobee_metadata?: {
|
|
@@ -60976,26 +59988,7 @@ export declare const batch: z.ZodObject<{
|
|
|
60976
59988
|
product_type: string;
|
|
60977
59989
|
} | undefined;
|
|
60978
59990
|
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;
|
|
59991
|
+
device_name?: string | undefined;
|
|
60999
59992
|
} | undefined;
|
|
61000
59993
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
61001
59994
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -69714,26 +68707,7 @@ export declare const batch: z.ZodObject<{
|
|
|
69714
68707
|
product_type: string;
|
|
69715
68708
|
} | undefined;
|
|
69716
68709
|
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;
|
|
68710
|
+
device_name?: string | undefined;
|
|
69737
68711
|
} | undefined;
|
|
69738
68712
|
} & {
|
|
69739
68713
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -70317,10 +69291,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70317
69291
|
credential_id?: string | undefined;
|
|
70318
69292
|
} | undefined;
|
|
70319
69293
|
assa_abloy_vostio_metadata?: {
|
|
70320
|
-
key_id?: string | undefined;
|
|
70321
69294
|
endpoint_id?: string | undefined;
|
|
70322
69295
|
auto_join?: boolean | undefined;
|
|
70323
69296
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69297
|
+
key_id?: string | undefined;
|
|
70324
69298
|
key_issuing_request_id?: string | undefined;
|
|
70325
69299
|
door_names?: string[] | undefined;
|
|
70326
69300
|
} | undefined;
|
|
@@ -70390,10 +69364,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70390
69364
|
credential_id?: string | undefined;
|
|
70391
69365
|
} | undefined;
|
|
70392
69366
|
assa_abloy_vostio_metadata?: {
|
|
70393
|
-
key_id?: string | undefined;
|
|
70394
69367
|
endpoint_id?: string | undefined;
|
|
70395
69368
|
auto_join?: boolean | undefined;
|
|
70396
69369
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69370
|
+
key_id?: string | undefined;
|
|
70397
69371
|
key_issuing_request_id?: string | undefined;
|
|
70398
69372
|
door_names?: string[] | undefined;
|
|
70399
69373
|
} | undefined;
|
|
@@ -70649,10 +69623,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70649
69623
|
credential_id?: string | undefined;
|
|
70650
69624
|
} | undefined;
|
|
70651
69625
|
assa_abloy_vostio_metadata?: {
|
|
70652
|
-
key_id?: string | undefined;
|
|
70653
69626
|
endpoint_id?: string | undefined;
|
|
70654
69627
|
auto_join?: boolean | undefined;
|
|
70655
69628
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69629
|
+
key_id?: string | undefined;
|
|
70656
69630
|
key_issuing_request_id?: string | undefined;
|
|
70657
69631
|
door_names?: string[] | undefined;
|
|
70658
69632
|
} | undefined;
|
|
@@ -70721,10 +69695,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70721
69695
|
credential_id?: string | undefined;
|
|
70722
69696
|
} | undefined;
|
|
70723
69697
|
assa_abloy_vostio_metadata?: {
|
|
70724
|
-
key_id?: string | undefined;
|
|
70725
69698
|
endpoint_id?: string | undefined;
|
|
70726
69699
|
auto_join?: boolean | undefined;
|
|
70727
69700
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69701
|
+
key_id?: string | undefined;
|
|
70728
69702
|
key_issuing_request_id?: string | undefined;
|
|
70729
69703
|
door_names?: string[] | undefined;
|
|
70730
69704
|
} | undefined;
|
|
@@ -70915,10 +69889,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70915
69889
|
credential_id?: string | undefined;
|
|
70916
69890
|
} | undefined;
|
|
70917
69891
|
assa_abloy_vostio_metadata?: {
|
|
70918
|
-
key_id?: string | undefined;
|
|
70919
69892
|
endpoint_id?: string | undefined;
|
|
70920
69893
|
auto_join?: boolean | undefined;
|
|
70921
69894
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69895
|
+
key_id?: string | undefined;
|
|
70922
69896
|
key_issuing_request_id?: string | undefined;
|
|
70923
69897
|
door_names?: string[] | undefined;
|
|
70924
69898
|
} | undefined;
|
|
@@ -70987,10 +69961,10 @@ export declare const batch: z.ZodObject<{
|
|
|
70987
69961
|
credential_id?: string | undefined;
|
|
70988
69962
|
} | undefined;
|
|
70989
69963
|
assa_abloy_vostio_metadata?: {
|
|
70990
|
-
key_id?: string | undefined;
|
|
70991
69964
|
endpoint_id?: string | undefined;
|
|
70992
69965
|
auto_join?: boolean | undefined;
|
|
70993
69966
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
69967
|
+
key_id?: string | undefined;
|
|
70994
69968
|
key_issuing_request_id?: string | undefined;
|
|
70995
69969
|
door_names?: string[] | undefined;
|
|
70996
69970
|
} | undefined;
|
|
@@ -73566,26 +72540,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73566
72540
|
product_type: string;
|
|
73567
72541
|
} | undefined;
|
|
73568
72542
|
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;
|
|
72543
|
+
device_name?: string | undefined;
|
|
73589
72544
|
} | undefined;
|
|
73590
72545
|
} & {
|
|
73591
72546
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -74169,10 +73124,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74169
73124
|
credential_id?: string | undefined;
|
|
74170
73125
|
} | undefined;
|
|
74171
73126
|
assa_abloy_vostio_metadata?: {
|
|
74172
|
-
key_id?: string | undefined;
|
|
74173
73127
|
endpoint_id?: string | undefined;
|
|
74174
73128
|
auto_join?: boolean | undefined;
|
|
74175
73129
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73130
|
+
key_id?: string | undefined;
|
|
74176
73131
|
key_issuing_request_id?: string | undefined;
|
|
74177
73132
|
door_names?: string[] | undefined;
|
|
74178
73133
|
} | undefined;
|
|
@@ -74242,10 +73197,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74242
73197
|
credential_id?: string | undefined;
|
|
74243
73198
|
} | undefined;
|
|
74244
73199
|
assa_abloy_vostio_metadata?: {
|
|
74245
|
-
key_id?: string | undefined;
|
|
74246
73200
|
endpoint_id?: string | undefined;
|
|
74247
73201
|
auto_join?: boolean | undefined;
|
|
74248
73202
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73203
|
+
key_id?: string | undefined;
|
|
74249
73204
|
key_issuing_request_id?: string | undefined;
|
|
74250
73205
|
door_names?: string[] | undefined;
|
|
74251
73206
|
} | undefined;
|
|
@@ -74501,10 +73456,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74501
73456
|
credential_id?: string | undefined;
|
|
74502
73457
|
} | undefined;
|
|
74503
73458
|
assa_abloy_vostio_metadata?: {
|
|
74504
|
-
key_id?: string | undefined;
|
|
74505
73459
|
endpoint_id?: string | undefined;
|
|
74506
73460
|
auto_join?: boolean | undefined;
|
|
74507
73461
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73462
|
+
key_id?: string | undefined;
|
|
74508
73463
|
key_issuing_request_id?: string | undefined;
|
|
74509
73464
|
door_names?: string[] | undefined;
|
|
74510
73465
|
} | undefined;
|
|
@@ -74573,10 +73528,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74573
73528
|
credential_id?: string | undefined;
|
|
74574
73529
|
} | undefined;
|
|
74575
73530
|
assa_abloy_vostio_metadata?: {
|
|
74576
|
-
key_id?: string | undefined;
|
|
74577
73531
|
endpoint_id?: string | undefined;
|
|
74578
73532
|
auto_join?: boolean | undefined;
|
|
74579
73533
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73534
|
+
key_id?: string | undefined;
|
|
74580
73535
|
key_issuing_request_id?: string | undefined;
|
|
74581
73536
|
door_names?: string[] | undefined;
|
|
74582
73537
|
} | undefined;
|
|
@@ -74767,10 +73722,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74767
73722
|
credential_id?: string | undefined;
|
|
74768
73723
|
} | undefined;
|
|
74769
73724
|
assa_abloy_vostio_metadata?: {
|
|
74770
|
-
key_id?: string | undefined;
|
|
74771
73725
|
endpoint_id?: string | undefined;
|
|
74772
73726
|
auto_join?: boolean | undefined;
|
|
74773
73727
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73728
|
+
key_id?: string | undefined;
|
|
74774
73729
|
key_issuing_request_id?: string | undefined;
|
|
74775
73730
|
door_names?: string[] | undefined;
|
|
74776
73731
|
} | undefined;
|
|
@@ -74839,10 +73794,10 @@ export declare const batch: z.ZodObject<{
|
|
|
74839
73794
|
credential_id?: string | undefined;
|
|
74840
73795
|
} | undefined;
|
|
74841
73796
|
assa_abloy_vostio_metadata?: {
|
|
74842
|
-
key_id?: string | undefined;
|
|
74843
73797
|
endpoint_id?: string | undefined;
|
|
74844
73798
|
auto_join?: boolean | undefined;
|
|
74845
73799
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
73800
|
+
key_id?: string | undefined;
|
|
74846
73801
|
key_issuing_request_id?: string | undefined;
|
|
74847
73802
|
door_names?: string[] | undefined;
|
|
74848
73803
|
} | undefined;
|