@seamapi/types 1.459.0 → 1.460.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.
Files changed (29) hide show
  1. package/dist/connect.cjs +158 -7
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1329 -40
  4. package/dist/index.cjs +158 -7
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
  7. package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
  8. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
  9. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
  10. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
  11. package/lib/seam/connect/models/batch.d.ts +980 -0
  12. package/lib/seam/connect/models/devices/device-metadata.d.ts +108 -0
  13. package/lib/seam/connect/models/devices/device-metadata.js +67 -0
  14. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
  16. package/lib/seam/connect/models/devices/device-provider.js +1 -0
  17. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.d.ts +152 -0
  19. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +108 -0
  20. package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
  21. package/lib/seam/connect/openapi.d.ts +101 -0
  22. package/lib/seam/connect/openapi.js +128 -0
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +735 -4
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/devices/device-metadata.ts +68 -0
  27. package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
  28. package/src/lib/seam/connect/openapi.ts +140 -0
  29. package/src/lib/seam/connect/route-types.ts +769 -0
@@ -988,6 +988,70 @@ export declare const spaces_batch: z.ZodObject<{
988
988
  device_name: string;
989
989
  product_type: string;
990
990
  }>>;
991
+ keynest_metadata: z.ZodOptional<z.ZodObject<{
992
+ key_id: z.ZodString;
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;
1012
+ }, "strip", z.ZodTypeAny, {
1013
+ address: string | null;
1014
+ device_name: string;
1015
+ key_id: string;
1016
+ property_id: string | null;
1017
+ property_postcode: string | null;
1018
+ key_notes: string | null;
1019
+ subscription_plan: string;
1020
+ status_type: string;
1021
+ current_or_last_store_id: number;
1022
+ last_movement: string;
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;
1033
+ }, {
1034
+ address: string | null;
1035
+ device_name: string;
1036
+ key_id: string;
1037
+ property_id: string | null;
1038
+ property_postcode: string | null;
1039
+ key_notes: string | null;
1040
+ subscription_plan: string;
1041
+ status_type: string;
1042
+ current_or_last_store_id: number;
1043
+ last_movement: string;
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;
1054
+ }>>;
991
1055
  }, "strip", z.ZodTypeAny, {
992
1056
  ecobee_metadata?: {
993
1057
  device_name: string;
@@ -1221,6 +1285,28 @@ export declare const spaces_batch: z.ZodObject<{
1221
1285
  device_name: string;
1222
1286
  product_type: string;
1223
1287
  } | undefined;
1288
+ keynest_metadata?: {
1289
+ address: string | null;
1290
+ device_name: string;
1291
+ key_id: string;
1292
+ property_id: string | null;
1293
+ property_postcode: string | null;
1294
+ key_notes: string | null;
1295
+ subscription_plan: string;
1296
+ status_type: string;
1297
+ current_or_last_store_id: number;
1298
+ last_movement: string;
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;
1309
+ } | undefined;
1224
1310
  }, {
1225
1311
  ecobee_metadata?: {
1226
1312
  device_name: string;
@@ -1454,6 +1540,28 @@ export declare const spaces_batch: z.ZodObject<{
1454
1540
  device_name: string;
1455
1541
  product_type: string;
1456
1542
  } | undefined;
1543
+ keynest_metadata?: {
1544
+ address: string | null;
1545
+ device_name: string;
1546
+ key_id: string;
1547
+ property_id: string | null;
1548
+ property_postcode: string | null;
1549
+ key_notes: string | null;
1550
+ subscription_plan: string;
1551
+ status_type: string;
1552
+ current_or_last_store_id: number;
1553
+ last_movement: string;
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;
1564
+ } | undefined;
1457
1565
  }>>, z.ZodIntersection<z.ZodObject<{
1458
1566
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
1459
1567
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -3240,6 +3348,28 @@ export declare const spaces_batch: z.ZodObject<{
3240
3348
  device_name: string;
3241
3349
  product_type: string;
3242
3350
  } | undefined;
3351
+ keynest_metadata?: {
3352
+ address: string | null;
3353
+ device_name: string;
3354
+ key_id: string;
3355
+ property_id: string | null;
3356
+ property_postcode: string | null;
3357
+ key_notes: string | null;
3358
+ subscription_plan: string;
3359
+ status_type: string;
3360
+ current_or_last_store_id: number;
3361
+ last_movement: string;
3362
+ current_status: string | null;
3363
+ current_user_name: string | null;
3364
+ current_user_email: string | null;
3365
+ current_user_phone_number: string | null;
3366
+ current_user_company: string | null;
3367
+ handover_method: string | null;
3368
+ keynest_app_user: string | null;
3369
+ default_office_id: number;
3370
+ fob_id: number;
3371
+ has_photo: boolean;
3372
+ } | undefined;
3243
3373
  } & {
3244
3374
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
3245
3375
  code_constraints?: ({
@@ -3875,6 +4005,28 @@ export declare const spaces_batch: z.ZodObject<{
3875
4005
  device_name: string;
3876
4006
  product_type: string;
3877
4007
  } | undefined;
4008
+ keynest_metadata?: {
4009
+ address: string | null;
4010
+ device_name: string;
4011
+ key_id: string;
4012
+ property_id: string | null;
4013
+ property_postcode: string | null;
4014
+ key_notes: string | null;
4015
+ subscription_plan: string;
4016
+ status_type: string;
4017
+ current_or_last_store_id: number;
4018
+ last_movement: string;
4019
+ current_status: string | null;
4020
+ current_user_name: string | null;
4021
+ current_user_email: string | null;
4022
+ current_user_phone_number: string | null;
4023
+ current_user_company: string | null;
4024
+ handover_method: string | null;
4025
+ keynest_app_user: string | null;
4026
+ default_office_id: number;
4027
+ fob_id: number;
4028
+ has_photo: boolean;
4029
+ } | undefined;
3878
4030
  } & {
3879
4031
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
3880
4032
  code_constraints?: ({
@@ -4774,6 +4926,28 @@ export declare const spaces_batch: z.ZodObject<{
4774
4926
  device_name: string;
4775
4927
  product_type: string;
4776
4928
  } | undefined;
4929
+ keynest_metadata?: {
4930
+ address: string | null;
4931
+ device_name: string;
4932
+ key_id: string;
4933
+ property_id: string | null;
4934
+ property_postcode: string | null;
4935
+ key_notes: string | null;
4936
+ subscription_plan: string;
4937
+ status_type: string;
4938
+ current_or_last_store_id: number;
4939
+ last_movement: string;
4940
+ current_status: string | null;
4941
+ current_user_name: string | null;
4942
+ current_user_email: string | null;
4943
+ current_user_phone_number: string | null;
4944
+ current_user_company: string | null;
4945
+ handover_method: string | null;
4946
+ keynest_app_user: string | null;
4947
+ default_office_id: number;
4948
+ fob_id: number;
4949
+ has_photo: boolean;
4950
+ } | undefined;
4777
4951
  } & {
4778
4952
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
4779
4953
  code_constraints?: ({
@@ -5478,6 +5652,28 @@ export declare const spaces_batch: z.ZodObject<{
5478
5652
  device_name: string;
5479
5653
  product_type: string;
5480
5654
  } | undefined;
5655
+ keynest_metadata?: {
5656
+ address: string | null;
5657
+ device_name: string;
5658
+ key_id: string;
5659
+ property_id: string | null;
5660
+ property_postcode: string | null;
5661
+ key_notes: string | null;
5662
+ subscription_plan: string;
5663
+ status_type: string;
5664
+ current_or_last_store_id: number;
5665
+ last_movement: string;
5666
+ current_status: string | null;
5667
+ current_user_name: string | null;
5668
+ current_user_email: string | null;
5669
+ current_user_phone_number: string | null;
5670
+ current_user_company: string | null;
5671
+ handover_method: string | null;
5672
+ keynest_app_user: string | null;
5673
+ default_office_id: number;
5674
+ fob_id: number;
5675
+ has_photo: boolean;
5676
+ } | undefined;
5481
5677
  } & {
5482
5678
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
5483
5679
  code_constraints?: ({
@@ -6688,6 +6884,70 @@ export declare const access_grants_batch: z.ZodObject<{
6688
6884
  device_name: string;
6689
6885
  product_type: string;
6690
6886
  }>>;
6887
+ keynest_metadata: z.ZodOptional<z.ZodObject<{
6888
+ key_id: z.ZodString;
6889
+ device_name: z.ZodString;
6890
+ property_id: z.ZodNullable<z.ZodString>;
6891
+ property_postcode: z.ZodNullable<z.ZodString>;
6892
+ key_notes: z.ZodNullable<z.ZodString>;
6893
+ subscription_plan: z.ZodString;
6894
+ status_type: z.ZodString;
6895
+ current_or_last_store_id: z.ZodNumber;
6896
+ last_movement: z.ZodString;
6897
+ address: z.ZodNullable<z.ZodString>;
6898
+ current_status: z.ZodNullable<z.ZodString>;
6899
+ current_user_name: z.ZodNullable<z.ZodString>;
6900
+ current_user_email: z.ZodNullable<z.ZodString>;
6901
+ current_user_phone_number: z.ZodNullable<z.ZodString>;
6902
+ current_user_company: z.ZodNullable<z.ZodString>;
6903
+ handover_method: z.ZodNullable<z.ZodString>;
6904
+ keynest_app_user: z.ZodNullable<z.ZodString>;
6905
+ default_office_id: z.ZodNumber;
6906
+ fob_id: z.ZodNumber;
6907
+ has_photo: z.ZodBoolean;
6908
+ }, "strip", z.ZodTypeAny, {
6909
+ address: string | null;
6910
+ device_name: string;
6911
+ key_id: string;
6912
+ property_id: string | null;
6913
+ property_postcode: string | null;
6914
+ key_notes: string | null;
6915
+ subscription_plan: string;
6916
+ status_type: string;
6917
+ current_or_last_store_id: number;
6918
+ last_movement: string;
6919
+ current_status: string | null;
6920
+ current_user_name: string | null;
6921
+ current_user_email: string | null;
6922
+ current_user_phone_number: string | null;
6923
+ current_user_company: string | null;
6924
+ handover_method: string | null;
6925
+ keynest_app_user: string | null;
6926
+ default_office_id: number;
6927
+ fob_id: number;
6928
+ has_photo: boolean;
6929
+ }, {
6930
+ address: string | null;
6931
+ device_name: string;
6932
+ key_id: string;
6933
+ property_id: string | null;
6934
+ property_postcode: string | null;
6935
+ key_notes: string | null;
6936
+ subscription_plan: string;
6937
+ status_type: string;
6938
+ current_or_last_store_id: number;
6939
+ last_movement: string;
6940
+ current_status: string | null;
6941
+ current_user_name: string | null;
6942
+ current_user_email: string | null;
6943
+ current_user_phone_number: string | null;
6944
+ current_user_company: string | null;
6945
+ handover_method: string | null;
6946
+ keynest_app_user: string | null;
6947
+ default_office_id: number;
6948
+ fob_id: number;
6949
+ has_photo: boolean;
6950
+ }>>;
6691
6951
  }, "strip", z.ZodTypeAny, {
6692
6952
  ecobee_metadata?: {
6693
6953
  device_name: string;
@@ -6921,6 +7181,28 @@ export declare const access_grants_batch: z.ZodObject<{
6921
7181
  device_name: string;
6922
7182
  product_type: string;
6923
7183
  } | undefined;
7184
+ keynest_metadata?: {
7185
+ address: string | null;
7186
+ device_name: string;
7187
+ key_id: string;
7188
+ property_id: string | null;
7189
+ property_postcode: string | null;
7190
+ key_notes: string | null;
7191
+ subscription_plan: string;
7192
+ status_type: string;
7193
+ current_or_last_store_id: number;
7194
+ last_movement: string;
7195
+ current_status: string | null;
7196
+ current_user_name: string | null;
7197
+ current_user_email: string | null;
7198
+ current_user_phone_number: string | null;
7199
+ current_user_company: string | null;
7200
+ handover_method: string | null;
7201
+ keynest_app_user: string | null;
7202
+ default_office_id: number;
7203
+ fob_id: number;
7204
+ has_photo: boolean;
7205
+ } | undefined;
6924
7206
  }, {
6925
7207
  ecobee_metadata?: {
6926
7208
  device_name: string;
@@ -7154,6 +7436,28 @@ export declare const access_grants_batch: z.ZodObject<{
7154
7436
  device_name: string;
7155
7437
  product_type: string;
7156
7438
  } | undefined;
7439
+ keynest_metadata?: {
7440
+ address: string | null;
7441
+ device_name: string;
7442
+ key_id: string;
7443
+ property_id: string | null;
7444
+ property_postcode: string | null;
7445
+ key_notes: string | null;
7446
+ subscription_plan: string;
7447
+ status_type: string;
7448
+ current_or_last_store_id: number;
7449
+ last_movement: string;
7450
+ current_status: string | null;
7451
+ current_user_name: string | null;
7452
+ current_user_email: string | null;
7453
+ current_user_phone_number: string | null;
7454
+ current_user_company: string | null;
7455
+ handover_method: string | null;
7456
+ keynest_app_user: string | null;
7457
+ default_office_id: number;
7458
+ fob_id: number;
7459
+ has_photo: boolean;
7460
+ } | undefined;
7157
7461
  }>>, z.ZodIntersection<z.ZodObject<{
7158
7462
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
7159
7463
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -8940,6 +9244,28 @@ export declare const access_grants_batch: z.ZodObject<{
8940
9244
  device_name: string;
8941
9245
  product_type: string;
8942
9246
  } | undefined;
9247
+ keynest_metadata?: {
9248
+ address: string | null;
9249
+ device_name: string;
9250
+ key_id: string;
9251
+ property_id: string | null;
9252
+ property_postcode: string | null;
9253
+ key_notes: string | null;
9254
+ subscription_plan: string;
9255
+ status_type: string;
9256
+ current_or_last_store_id: number;
9257
+ last_movement: string;
9258
+ current_status: string | null;
9259
+ current_user_name: string | null;
9260
+ current_user_email: string | null;
9261
+ current_user_phone_number: string | null;
9262
+ current_user_company: string | null;
9263
+ handover_method: string | null;
9264
+ keynest_app_user: string | null;
9265
+ default_office_id: number;
9266
+ fob_id: number;
9267
+ has_photo: boolean;
9268
+ } | undefined;
8943
9269
  } & {
8944
9270
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
8945
9271
  code_constraints?: ({
@@ -9575,6 +9901,28 @@ export declare const access_grants_batch: z.ZodObject<{
9575
9901
  device_name: string;
9576
9902
  product_type: string;
9577
9903
  } | undefined;
9904
+ keynest_metadata?: {
9905
+ address: string | null;
9906
+ device_name: string;
9907
+ key_id: string;
9908
+ property_id: string | null;
9909
+ property_postcode: string | null;
9910
+ key_notes: string | null;
9911
+ subscription_plan: string;
9912
+ status_type: string;
9913
+ current_or_last_store_id: number;
9914
+ last_movement: string;
9915
+ current_status: string | null;
9916
+ current_user_name: string | null;
9917
+ current_user_email: string | null;
9918
+ current_user_phone_number: string | null;
9919
+ current_user_company: string | null;
9920
+ handover_method: string | null;
9921
+ keynest_app_user: string | null;
9922
+ default_office_id: number;
9923
+ fob_id: number;
9924
+ has_photo: boolean;
9925
+ } | undefined;
9578
9926
  } & {
9579
9927
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
9580
9928
  code_constraints?: ({
@@ -10474,6 +10822,28 @@ export declare const access_grants_batch: z.ZodObject<{
10474
10822
  device_name: string;
10475
10823
  product_type: string;
10476
10824
  } | undefined;
10825
+ keynest_metadata?: {
10826
+ address: string | null;
10827
+ device_name: string;
10828
+ key_id: string;
10829
+ property_id: string | null;
10830
+ property_postcode: string | null;
10831
+ key_notes: string | null;
10832
+ subscription_plan: string;
10833
+ status_type: string;
10834
+ current_or_last_store_id: number;
10835
+ last_movement: string;
10836
+ current_status: string | null;
10837
+ current_user_name: string | null;
10838
+ current_user_email: string | null;
10839
+ current_user_phone_number: string | null;
10840
+ current_user_company: string | null;
10841
+ handover_method: string | null;
10842
+ keynest_app_user: string | null;
10843
+ default_office_id: number;
10844
+ fob_id: number;
10845
+ has_photo: boolean;
10846
+ } | undefined;
10477
10847
  } & {
10478
10848
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
10479
10849
  code_constraints?: ({
@@ -11178,6 +11548,28 @@ export declare const access_grants_batch: z.ZodObject<{
11178
11548
  device_name: string;
11179
11549
  product_type: string;
11180
11550
  } | undefined;
11551
+ keynest_metadata?: {
11552
+ address: string | null;
11553
+ device_name: string;
11554
+ key_id: string;
11555
+ property_id: string | null;
11556
+ property_postcode: string | null;
11557
+ key_notes: string | null;
11558
+ subscription_plan: string;
11559
+ status_type: string;
11560
+ current_or_last_store_id: number;
11561
+ last_movement: string;
11562
+ current_status: string | null;
11563
+ current_user_name: string | null;
11564
+ current_user_email: string | null;
11565
+ current_user_phone_number: string | null;
11566
+ current_user_company: string | null;
11567
+ handover_method: string | null;
11568
+ keynest_app_user: string | null;
11569
+ default_office_id: number;
11570
+ fob_id: number;
11571
+ has_photo: boolean;
11572
+ } | undefined;
11181
11573
  } & {
11182
11574
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
11183
11575
  code_constraints?: ({
@@ -12388,6 +12780,70 @@ export declare const access_methods_batch: z.ZodObject<{
12388
12780
  device_name: string;
12389
12781
  product_type: string;
12390
12782
  }>>;
12783
+ keynest_metadata: z.ZodOptional<z.ZodObject<{
12784
+ key_id: z.ZodString;
12785
+ device_name: z.ZodString;
12786
+ property_id: z.ZodNullable<z.ZodString>;
12787
+ property_postcode: z.ZodNullable<z.ZodString>;
12788
+ key_notes: z.ZodNullable<z.ZodString>;
12789
+ subscription_plan: z.ZodString;
12790
+ status_type: z.ZodString;
12791
+ current_or_last_store_id: z.ZodNumber;
12792
+ last_movement: z.ZodString;
12793
+ address: z.ZodNullable<z.ZodString>;
12794
+ current_status: z.ZodNullable<z.ZodString>;
12795
+ current_user_name: z.ZodNullable<z.ZodString>;
12796
+ current_user_email: z.ZodNullable<z.ZodString>;
12797
+ current_user_phone_number: z.ZodNullable<z.ZodString>;
12798
+ current_user_company: z.ZodNullable<z.ZodString>;
12799
+ handover_method: z.ZodNullable<z.ZodString>;
12800
+ keynest_app_user: z.ZodNullable<z.ZodString>;
12801
+ default_office_id: z.ZodNumber;
12802
+ fob_id: z.ZodNumber;
12803
+ has_photo: z.ZodBoolean;
12804
+ }, "strip", z.ZodTypeAny, {
12805
+ address: string | null;
12806
+ device_name: string;
12807
+ key_id: string;
12808
+ property_id: string | null;
12809
+ property_postcode: string | null;
12810
+ key_notes: string | null;
12811
+ subscription_plan: string;
12812
+ status_type: string;
12813
+ current_or_last_store_id: number;
12814
+ last_movement: string;
12815
+ current_status: string | null;
12816
+ current_user_name: string | null;
12817
+ current_user_email: string | null;
12818
+ current_user_phone_number: string | null;
12819
+ current_user_company: string | null;
12820
+ handover_method: string | null;
12821
+ keynest_app_user: string | null;
12822
+ default_office_id: number;
12823
+ fob_id: number;
12824
+ has_photo: boolean;
12825
+ }, {
12826
+ address: string | null;
12827
+ device_name: string;
12828
+ key_id: string;
12829
+ property_id: string | null;
12830
+ property_postcode: string | null;
12831
+ key_notes: string | null;
12832
+ subscription_plan: string;
12833
+ status_type: string;
12834
+ current_or_last_store_id: number;
12835
+ last_movement: string;
12836
+ current_status: string | null;
12837
+ current_user_name: string | null;
12838
+ current_user_email: string | null;
12839
+ current_user_phone_number: string | null;
12840
+ current_user_company: string | null;
12841
+ handover_method: string | null;
12842
+ keynest_app_user: string | null;
12843
+ default_office_id: number;
12844
+ fob_id: number;
12845
+ has_photo: boolean;
12846
+ }>>;
12391
12847
  }, "strip", z.ZodTypeAny, {
12392
12848
  ecobee_metadata?: {
12393
12849
  device_name: string;
@@ -12621,6 +13077,28 @@ export declare const access_methods_batch: z.ZodObject<{
12621
13077
  device_name: string;
12622
13078
  product_type: string;
12623
13079
  } | undefined;
13080
+ keynest_metadata?: {
13081
+ address: string | null;
13082
+ device_name: string;
13083
+ key_id: string;
13084
+ property_id: string | null;
13085
+ property_postcode: string | null;
13086
+ key_notes: string | null;
13087
+ subscription_plan: string;
13088
+ status_type: string;
13089
+ current_or_last_store_id: number;
13090
+ last_movement: string;
13091
+ current_status: string | null;
13092
+ current_user_name: string | null;
13093
+ current_user_email: string | null;
13094
+ current_user_phone_number: string | null;
13095
+ current_user_company: string | null;
13096
+ handover_method: string | null;
13097
+ keynest_app_user: string | null;
13098
+ default_office_id: number;
13099
+ fob_id: number;
13100
+ has_photo: boolean;
13101
+ } | undefined;
12624
13102
  }, {
12625
13103
  ecobee_metadata?: {
12626
13104
  device_name: string;
@@ -12854,6 +13332,28 @@ export declare const access_methods_batch: z.ZodObject<{
12854
13332
  device_name: string;
12855
13333
  product_type: string;
12856
13334
  } | undefined;
13335
+ keynest_metadata?: {
13336
+ address: string | null;
13337
+ device_name: string;
13338
+ key_id: string;
13339
+ property_id: string | null;
13340
+ property_postcode: string | null;
13341
+ key_notes: string | null;
13342
+ subscription_plan: string;
13343
+ status_type: string;
13344
+ current_or_last_store_id: number;
13345
+ last_movement: string;
13346
+ current_status: string | null;
13347
+ current_user_name: string | null;
13348
+ current_user_email: string | null;
13349
+ current_user_phone_number: string | null;
13350
+ current_user_company: string | null;
13351
+ handover_method: string | null;
13352
+ keynest_app_user: string | null;
13353
+ default_office_id: number;
13354
+ fob_id: number;
13355
+ has_photo: boolean;
13356
+ } | undefined;
12857
13357
  }>>, z.ZodIntersection<z.ZodObject<{
12858
13358
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
12859
13359
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -14640,6 +15140,28 @@ export declare const access_methods_batch: z.ZodObject<{
14640
15140
  device_name: string;
14641
15141
  product_type: string;
14642
15142
  } | undefined;
15143
+ keynest_metadata?: {
15144
+ address: string | null;
15145
+ device_name: string;
15146
+ key_id: string;
15147
+ property_id: string | null;
15148
+ property_postcode: string | null;
15149
+ key_notes: string | null;
15150
+ subscription_plan: string;
15151
+ status_type: string;
15152
+ current_or_last_store_id: number;
15153
+ last_movement: string;
15154
+ current_status: string | null;
15155
+ current_user_name: string | null;
15156
+ current_user_email: string | null;
15157
+ current_user_phone_number: string | null;
15158
+ current_user_company: string | null;
15159
+ handover_method: string | null;
15160
+ keynest_app_user: string | null;
15161
+ default_office_id: number;
15162
+ fob_id: number;
15163
+ has_photo: boolean;
15164
+ } | undefined;
14643
15165
  } & {
14644
15166
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
14645
15167
  code_constraints?: ({
@@ -15275,6 +15797,28 @@ export declare const access_methods_batch: z.ZodObject<{
15275
15797
  device_name: string;
15276
15798
  product_type: string;
15277
15799
  } | undefined;
15800
+ keynest_metadata?: {
15801
+ address: string | null;
15802
+ device_name: string;
15803
+ key_id: string;
15804
+ property_id: string | null;
15805
+ property_postcode: string | null;
15806
+ key_notes: string | null;
15807
+ subscription_plan: string;
15808
+ status_type: string;
15809
+ current_or_last_store_id: number;
15810
+ last_movement: string;
15811
+ current_status: string | null;
15812
+ current_user_name: string | null;
15813
+ current_user_email: string | null;
15814
+ current_user_phone_number: string | null;
15815
+ current_user_company: string | null;
15816
+ handover_method: string | null;
15817
+ keynest_app_user: string | null;
15818
+ default_office_id: number;
15819
+ fob_id: number;
15820
+ has_photo: boolean;
15821
+ } | undefined;
15278
15822
  } & {
15279
15823
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
15280
15824
  code_constraints?: ({
@@ -16174,6 +16718,28 @@ export declare const access_methods_batch: z.ZodObject<{
16174
16718
  device_name: string;
16175
16719
  product_type: string;
16176
16720
  } | undefined;
16721
+ keynest_metadata?: {
16722
+ address: string | null;
16723
+ device_name: string;
16724
+ key_id: string;
16725
+ property_id: string | null;
16726
+ property_postcode: string | null;
16727
+ key_notes: string | null;
16728
+ subscription_plan: string;
16729
+ status_type: string;
16730
+ current_or_last_store_id: number;
16731
+ last_movement: string;
16732
+ current_status: string | null;
16733
+ current_user_name: string | null;
16734
+ current_user_email: string | null;
16735
+ current_user_phone_number: string | null;
16736
+ current_user_company: string | null;
16737
+ handover_method: string | null;
16738
+ keynest_app_user: string | null;
16739
+ default_office_id: number;
16740
+ fob_id: number;
16741
+ has_photo: boolean;
16742
+ } | undefined;
16177
16743
  } & {
16178
16744
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
16179
16745
  code_constraints?: ({
@@ -16878,6 +17444,28 @@ export declare const access_methods_batch: z.ZodObject<{
16878
17444
  device_name: string;
16879
17445
  product_type: string;
16880
17446
  } | undefined;
17447
+ keynest_metadata?: {
17448
+ address: string | null;
17449
+ device_name: string;
17450
+ key_id: string;
17451
+ property_id: string | null;
17452
+ property_postcode: string | null;
17453
+ key_notes: string | null;
17454
+ subscription_plan: string;
17455
+ status_type: string;
17456
+ current_or_last_store_id: number;
17457
+ last_movement: string;
17458
+ current_status: string | null;
17459
+ current_user_name: string | null;
17460
+ current_user_email: string | null;
17461
+ current_user_phone_number: string | null;
17462
+ current_user_company: string | null;
17463
+ handover_method: string | null;
17464
+ keynest_app_user: string | null;
17465
+ default_office_id: number;
17466
+ fob_id: number;
17467
+ has_photo: boolean;
17468
+ } | undefined;
16881
17469
  } & {
16882
17470
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
16883
17471
  code_constraints?: ({
@@ -18253,6 +18841,70 @@ export declare const workspaces_batch: z.ZodObject<{
18253
18841
  device_name: string;
18254
18842
  product_type: string;
18255
18843
  }>>;
18844
+ keynest_metadata: z.ZodOptional<z.ZodObject<{
18845
+ key_id: z.ZodString;
18846
+ device_name: z.ZodString;
18847
+ property_id: z.ZodNullable<z.ZodString>;
18848
+ property_postcode: z.ZodNullable<z.ZodString>;
18849
+ key_notes: z.ZodNullable<z.ZodString>;
18850
+ subscription_plan: z.ZodString;
18851
+ status_type: z.ZodString;
18852
+ current_or_last_store_id: z.ZodNumber;
18853
+ last_movement: z.ZodString;
18854
+ address: z.ZodNullable<z.ZodString>;
18855
+ current_status: z.ZodNullable<z.ZodString>;
18856
+ current_user_name: z.ZodNullable<z.ZodString>;
18857
+ current_user_email: z.ZodNullable<z.ZodString>;
18858
+ current_user_phone_number: z.ZodNullable<z.ZodString>;
18859
+ current_user_company: z.ZodNullable<z.ZodString>;
18860
+ handover_method: z.ZodNullable<z.ZodString>;
18861
+ keynest_app_user: z.ZodNullable<z.ZodString>;
18862
+ default_office_id: z.ZodNumber;
18863
+ fob_id: z.ZodNumber;
18864
+ has_photo: z.ZodBoolean;
18865
+ }, "strip", z.ZodTypeAny, {
18866
+ address: string | null;
18867
+ device_name: string;
18868
+ key_id: string;
18869
+ property_id: string | null;
18870
+ property_postcode: string | null;
18871
+ key_notes: string | null;
18872
+ subscription_plan: string;
18873
+ status_type: string;
18874
+ current_or_last_store_id: number;
18875
+ last_movement: string;
18876
+ current_status: string | null;
18877
+ current_user_name: string | null;
18878
+ current_user_email: string | null;
18879
+ current_user_phone_number: string | null;
18880
+ current_user_company: string | null;
18881
+ handover_method: string | null;
18882
+ keynest_app_user: string | null;
18883
+ default_office_id: number;
18884
+ fob_id: number;
18885
+ has_photo: boolean;
18886
+ }, {
18887
+ address: string | null;
18888
+ device_name: string;
18889
+ key_id: string;
18890
+ property_id: string | null;
18891
+ property_postcode: string | null;
18892
+ key_notes: string | null;
18893
+ subscription_plan: string;
18894
+ status_type: string;
18895
+ current_or_last_store_id: number;
18896
+ last_movement: string;
18897
+ current_status: string | null;
18898
+ current_user_name: string | null;
18899
+ current_user_email: string | null;
18900
+ current_user_phone_number: string | null;
18901
+ current_user_company: string | null;
18902
+ handover_method: string | null;
18903
+ keynest_app_user: string | null;
18904
+ default_office_id: number;
18905
+ fob_id: number;
18906
+ has_photo: boolean;
18907
+ }>>;
18256
18908
  }, "strip", z.ZodTypeAny, {
18257
18909
  ecobee_metadata?: {
18258
18910
  device_name: string;
@@ -18486,6 +19138,28 @@ export declare const workspaces_batch: z.ZodObject<{
18486
19138
  device_name: string;
18487
19139
  product_type: string;
18488
19140
  } | undefined;
19141
+ keynest_metadata?: {
19142
+ address: string | null;
19143
+ device_name: string;
19144
+ key_id: string;
19145
+ property_id: string | null;
19146
+ property_postcode: string | null;
19147
+ key_notes: string | null;
19148
+ subscription_plan: string;
19149
+ status_type: string;
19150
+ current_or_last_store_id: number;
19151
+ last_movement: string;
19152
+ current_status: string | null;
19153
+ current_user_name: string | null;
19154
+ current_user_email: string | null;
19155
+ current_user_phone_number: string | null;
19156
+ current_user_company: string | null;
19157
+ handover_method: string | null;
19158
+ keynest_app_user: string | null;
19159
+ default_office_id: number;
19160
+ fob_id: number;
19161
+ has_photo: boolean;
19162
+ } | undefined;
18489
19163
  }, {
18490
19164
  ecobee_metadata?: {
18491
19165
  device_name: string;
@@ -18719,6 +19393,28 @@ export declare const workspaces_batch: z.ZodObject<{
18719
19393
  device_name: string;
18720
19394
  product_type: string;
18721
19395
  } | undefined;
19396
+ keynest_metadata?: {
19397
+ address: string | null;
19398
+ device_name: string;
19399
+ key_id: string;
19400
+ property_id: string | null;
19401
+ property_postcode: string | null;
19402
+ key_notes: string | null;
19403
+ subscription_plan: string;
19404
+ status_type: string;
19405
+ current_or_last_store_id: number;
19406
+ last_movement: string;
19407
+ current_status: string | null;
19408
+ current_user_name: string | null;
19409
+ current_user_email: string | null;
19410
+ current_user_phone_number: string | null;
19411
+ current_user_company: string | null;
19412
+ handover_method: string | null;
19413
+ keynest_app_user: string | null;
19414
+ default_office_id: number;
19415
+ fob_id: number;
19416
+ has_photo: boolean;
19417
+ } | undefined;
18722
19418
  }>>, z.ZodIntersection<z.ZodObject<{
18723
19419
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
18724
19420
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -20505,6 +21201,28 @@ export declare const workspaces_batch: z.ZodObject<{
20505
21201
  device_name: string;
20506
21202
  product_type: string;
20507
21203
  } | undefined;
21204
+ keynest_metadata?: {
21205
+ address: string | null;
21206
+ device_name: string;
21207
+ key_id: string;
21208
+ property_id: string | null;
21209
+ property_postcode: string | null;
21210
+ key_notes: string | null;
21211
+ subscription_plan: string;
21212
+ status_type: string;
21213
+ current_or_last_store_id: number;
21214
+ last_movement: string;
21215
+ current_status: string | null;
21216
+ current_user_name: string | null;
21217
+ current_user_email: string | null;
21218
+ current_user_phone_number: string | null;
21219
+ current_user_company: string | null;
21220
+ handover_method: string | null;
21221
+ keynest_app_user: string | null;
21222
+ default_office_id: number;
21223
+ fob_id: number;
21224
+ has_photo: boolean;
21225
+ } | undefined;
20508
21226
  } & {
20509
21227
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
20510
21228
  code_constraints?: ({
@@ -21140,6 +21858,28 @@ export declare const workspaces_batch: z.ZodObject<{
21140
21858
  device_name: string;
21141
21859
  product_type: string;
21142
21860
  } | undefined;
21861
+ keynest_metadata?: {
21862
+ address: string | null;
21863
+ device_name: string;
21864
+ key_id: string;
21865
+ property_id: string | null;
21866
+ property_postcode: string | null;
21867
+ key_notes: string | null;
21868
+ subscription_plan: string;
21869
+ status_type: string;
21870
+ current_or_last_store_id: number;
21871
+ last_movement: string;
21872
+ current_status: string | null;
21873
+ current_user_name: string | null;
21874
+ current_user_email: string | null;
21875
+ current_user_phone_number: string | null;
21876
+ current_user_company: string | null;
21877
+ handover_method: string | null;
21878
+ keynest_app_user: string | null;
21879
+ default_office_id: number;
21880
+ fob_id: number;
21881
+ has_photo: boolean;
21882
+ } | undefined;
21143
21883
  } & {
21144
21884
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
21145
21885
  code_constraints?: ({
@@ -22039,6 +22779,28 @@ export declare const workspaces_batch: z.ZodObject<{
22039
22779
  device_name: string;
22040
22780
  product_type: string;
22041
22781
  } | undefined;
22782
+ keynest_metadata?: {
22783
+ address: string | null;
22784
+ device_name: string;
22785
+ key_id: string;
22786
+ property_id: string | null;
22787
+ property_postcode: string | null;
22788
+ key_notes: string | null;
22789
+ subscription_plan: string;
22790
+ status_type: string;
22791
+ current_or_last_store_id: number;
22792
+ last_movement: string;
22793
+ current_status: string | null;
22794
+ current_user_name: string | null;
22795
+ current_user_email: string | null;
22796
+ current_user_phone_number: string | null;
22797
+ current_user_company: string | null;
22798
+ handover_method: string | null;
22799
+ keynest_app_user: string | null;
22800
+ default_office_id: number;
22801
+ fob_id: number;
22802
+ has_photo: boolean;
22803
+ } | undefined;
22042
22804
  } & {
22043
22805
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
22044
22806
  code_constraints?: ({
@@ -22785,6 +23547,28 @@ export declare const workspaces_batch: z.ZodObject<{
22785
23547
  device_name: string;
22786
23548
  product_type: string;
22787
23549
  } | undefined;
23550
+ keynest_metadata?: {
23551
+ address: string | null;
23552
+ device_name: string;
23553
+ key_id: string;
23554
+ property_id: string | null;
23555
+ property_postcode: string | null;
23556
+ key_notes: string | null;
23557
+ subscription_plan: string;
23558
+ status_type: string;
23559
+ current_or_last_store_id: number;
23560
+ last_movement: string;
23561
+ current_status: string | null;
23562
+ current_user_name: string | null;
23563
+ current_user_email: string | null;
23564
+ current_user_phone_number: string | null;
23565
+ current_user_company: string | null;
23566
+ handover_method: string | null;
23567
+ keynest_app_user: string | null;
23568
+ default_office_id: number;
23569
+ fob_id: number;
23570
+ has_photo: boolean;
23571
+ } | undefined;
22788
23572
  } & {
22789
23573
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
22790
23574
  code_constraints?: ({
@@ -24202,6 +24986,70 @@ export declare const batch: z.ZodObject<{
24202
24986
  device_name: string;
24203
24987
  product_type: string;
24204
24988
  }>>;
24989
+ keynest_metadata: z.ZodOptional<z.ZodObject<{
24990
+ key_id: z.ZodString;
24991
+ device_name: z.ZodString;
24992
+ property_id: z.ZodNullable<z.ZodString>;
24993
+ property_postcode: z.ZodNullable<z.ZodString>;
24994
+ key_notes: z.ZodNullable<z.ZodString>;
24995
+ subscription_plan: z.ZodString;
24996
+ status_type: z.ZodString;
24997
+ current_or_last_store_id: z.ZodNumber;
24998
+ last_movement: z.ZodString;
24999
+ address: z.ZodNullable<z.ZodString>;
25000
+ current_status: z.ZodNullable<z.ZodString>;
25001
+ current_user_name: z.ZodNullable<z.ZodString>;
25002
+ current_user_email: z.ZodNullable<z.ZodString>;
25003
+ current_user_phone_number: z.ZodNullable<z.ZodString>;
25004
+ current_user_company: z.ZodNullable<z.ZodString>;
25005
+ handover_method: z.ZodNullable<z.ZodString>;
25006
+ keynest_app_user: z.ZodNullable<z.ZodString>;
25007
+ default_office_id: z.ZodNumber;
25008
+ fob_id: z.ZodNumber;
25009
+ has_photo: z.ZodBoolean;
25010
+ }, "strip", z.ZodTypeAny, {
25011
+ address: string | null;
25012
+ device_name: string;
25013
+ key_id: string;
25014
+ property_id: string | null;
25015
+ property_postcode: string | null;
25016
+ key_notes: string | null;
25017
+ subscription_plan: string;
25018
+ status_type: string;
25019
+ current_or_last_store_id: number;
25020
+ last_movement: string;
25021
+ current_status: string | null;
25022
+ current_user_name: string | null;
25023
+ current_user_email: string | null;
25024
+ current_user_phone_number: string | null;
25025
+ current_user_company: string | null;
25026
+ handover_method: string | null;
25027
+ keynest_app_user: string | null;
25028
+ default_office_id: number;
25029
+ fob_id: number;
25030
+ has_photo: boolean;
25031
+ }, {
25032
+ address: string | null;
25033
+ device_name: string;
25034
+ key_id: string;
25035
+ property_id: string | null;
25036
+ property_postcode: string | null;
25037
+ key_notes: string | null;
25038
+ subscription_plan: string;
25039
+ status_type: string;
25040
+ current_or_last_store_id: number;
25041
+ last_movement: string;
25042
+ current_status: string | null;
25043
+ current_user_name: string | null;
25044
+ current_user_email: string | null;
25045
+ current_user_phone_number: string | null;
25046
+ current_user_company: string | null;
25047
+ handover_method: string | null;
25048
+ keynest_app_user: string | null;
25049
+ default_office_id: number;
25050
+ fob_id: number;
25051
+ has_photo: boolean;
25052
+ }>>;
24205
25053
  }, "strip", z.ZodTypeAny, {
24206
25054
  ecobee_metadata?: {
24207
25055
  device_name: string;
@@ -24435,6 +25283,28 @@ export declare const batch: z.ZodObject<{
24435
25283
  device_name: string;
24436
25284
  product_type: string;
24437
25285
  } | undefined;
25286
+ keynest_metadata?: {
25287
+ address: string | null;
25288
+ device_name: string;
25289
+ key_id: string;
25290
+ property_id: string | null;
25291
+ property_postcode: string | null;
25292
+ key_notes: string | null;
25293
+ subscription_plan: string;
25294
+ status_type: string;
25295
+ current_or_last_store_id: number;
25296
+ last_movement: string;
25297
+ current_status: string | null;
25298
+ current_user_name: string | null;
25299
+ current_user_email: string | null;
25300
+ current_user_phone_number: string | null;
25301
+ current_user_company: string | null;
25302
+ handover_method: string | null;
25303
+ keynest_app_user: string | null;
25304
+ default_office_id: number;
25305
+ fob_id: number;
25306
+ has_photo: boolean;
25307
+ } | undefined;
24438
25308
  }, {
24439
25309
  ecobee_metadata?: {
24440
25310
  device_name: string;
@@ -24668,6 +25538,28 @@ export declare const batch: z.ZodObject<{
24668
25538
  device_name: string;
24669
25539
  product_type: string;
24670
25540
  } | undefined;
25541
+ keynest_metadata?: {
25542
+ address: string | null;
25543
+ device_name: string;
25544
+ key_id: string;
25545
+ property_id: string | null;
25546
+ property_postcode: string | null;
25547
+ key_notes: string | null;
25548
+ subscription_plan: string;
25549
+ status_type: string;
25550
+ current_or_last_store_id: number;
25551
+ last_movement: string;
25552
+ current_status: string | null;
25553
+ current_user_name: string | null;
25554
+ current_user_email: string | null;
25555
+ current_user_phone_number: string | null;
25556
+ current_user_company: string | null;
25557
+ handover_method: string | null;
25558
+ keynest_app_user: string | null;
25559
+ default_office_id: number;
25560
+ fob_id: number;
25561
+ has_photo: boolean;
25562
+ } | undefined;
24671
25563
  }>>, z.ZodIntersection<z.ZodObject<{
24672
25564
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
24673
25565
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -26454,6 +27346,28 @@ export declare const batch: z.ZodObject<{
26454
27346
  device_name: string;
26455
27347
  product_type: string;
26456
27348
  } | undefined;
27349
+ keynest_metadata?: {
27350
+ address: string | null;
27351
+ device_name: string;
27352
+ key_id: string;
27353
+ property_id: string | null;
27354
+ property_postcode: string | null;
27355
+ key_notes: string | null;
27356
+ subscription_plan: string;
27357
+ status_type: string;
27358
+ current_or_last_store_id: number;
27359
+ last_movement: string;
27360
+ current_status: string | null;
27361
+ current_user_name: string | null;
27362
+ current_user_email: string | null;
27363
+ current_user_phone_number: string | null;
27364
+ current_user_company: string | null;
27365
+ handover_method: string | null;
27366
+ keynest_app_user: string | null;
27367
+ default_office_id: number;
27368
+ fob_id: number;
27369
+ has_photo: boolean;
27370
+ } | undefined;
26457
27371
  } & {
26458
27372
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
26459
27373
  code_constraints?: ({
@@ -27089,6 +28003,28 @@ export declare const batch: z.ZodObject<{
27089
28003
  device_name: string;
27090
28004
  product_type: string;
27091
28005
  } | undefined;
28006
+ keynest_metadata?: {
28007
+ address: string | null;
28008
+ device_name: string;
28009
+ key_id: string;
28010
+ property_id: string | null;
28011
+ property_postcode: string | null;
28012
+ key_notes: string | null;
28013
+ subscription_plan: string;
28014
+ status_type: string;
28015
+ current_or_last_store_id: number;
28016
+ last_movement: string;
28017
+ current_status: string | null;
28018
+ current_user_name: string | null;
28019
+ current_user_email: string | null;
28020
+ current_user_phone_number: string | null;
28021
+ current_user_company: string | null;
28022
+ handover_method: string | null;
28023
+ keynest_app_user: string | null;
28024
+ default_office_id: number;
28025
+ fob_id: number;
28026
+ has_photo: boolean;
28027
+ } | undefined;
27092
28028
  } & {
27093
28029
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
27094
28030
  code_constraints?: ({
@@ -27988,6 +28924,28 @@ export declare const batch: z.ZodObject<{
27988
28924
  device_name: string;
27989
28925
  product_type: string;
27990
28926
  } | undefined;
28927
+ keynest_metadata?: {
28928
+ address: string | null;
28929
+ device_name: string;
28930
+ key_id: string;
28931
+ property_id: string | null;
28932
+ property_postcode: string | null;
28933
+ key_notes: string | null;
28934
+ subscription_plan: string;
28935
+ status_type: string;
28936
+ current_or_last_store_id: number;
28937
+ last_movement: string;
28938
+ current_status: string | null;
28939
+ current_user_name: string | null;
28940
+ current_user_email: string | null;
28941
+ current_user_phone_number: string | null;
28942
+ current_user_company: string | null;
28943
+ handover_method: string | null;
28944
+ keynest_app_user: string | null;
28945
+ default_office_id: number;
28946
+ fob_id: number;
28947
+ has_photo: boolean;
28948
+ } | undefined;
27991
28949
  } & {
27992
28950
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
27993
28951
  code_constraints?: ({
@@ -28734,6 +29692,28 @@ export declare const batch: z.ZodObject<{
28734
29692
  device_name: string;
28735
29693
  product_type: string;
28736
29694
  } | undefined;
29695
+ keynest_metadata?: {
29696
+ address: string | null;
29697
+ device_name: string;
29698
+ key_id: string;
29699
+ property_id: string | null;
29700
+ property_postcode: string | null;
29701
+ key_notes: string | null;
29702
+ subscription_plan: string;
29703
+ status_type: string;
29704
+ current_or_last_store_id: number;
29705
+ last_movement: string;
29706
+ current_status: string | null;
29707
+ current_user_name: string | null;
29708
+ current_user_email: string | null;
29709
+ current_user_phone_number: string | null;
29710
+ current_user_company: string | null;
29711
+ handover_method: string | null;
29712
+ keynest_app_user: string | null;
29713
+ default_office_id: number;
29714
+ fob_id: number;
29715
+ has_photo: boolean;
29716
+ } | undefined;
28737
29717
  } & {
28738
29718
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
28739
29719
  code_constraints?: ({