@seamapi/types 1.551.0 → 1.552.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/connect.cjs +168 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1355 -125
  4. package/dist/index.cjs +168 -1
  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 +1176 -131
  12. package/lib/seam/connect/models/devices/device-metadata.d.ts +95 -0
  13. package/lib/seam/connect/models/devices/device-metadata.js +62 -0
  14. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
  16. package/lib/seam/connect/models/devices/device-type.js +8 -0
  17. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.d.ts +136 -3
  19. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +98 -3
  20. package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
  21. package/lib/seam/connect/openapi.d.ts +90 -0
  22. package/lib/seam/connect/openapi.js +140 -0
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +671 -25
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/devices/device-metadata.ts +62 -0
  27. package/src/lib/seam/connect/models/devices/device-type.ts +18 -0
  28. package/src/lib/seam/connect/openapi.ts +152 -0
  29. package/src/lib/seam/connect/route-types.ts +671 -0
@@ -31,7 +31,7 @@ export declare const spaces_batch: z.ZodObject<{
31
31
  }>, "many">>;
32
32
  devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
33
33
  device_id: z.ZodString;
34
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
34
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
35
35
  nickname: z.ZodOptional<z.ZodString>;
36
36
  display_name: z.ZodString;
37
37
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -992,11 +992,68 @@ export declare const spaces_batch: z.ZodObject<{
992
992
  product_type: string;
993
993
  }>>;
994
994
  keynest_metadata: z.ZodOptional<z.ZodObject<{
995
+ key_id: z.ZodOptional<z.ZodString>;
995
996
  device_name: z.ZodOptional<z.ZodString>;
997
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
998
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
999
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1000
+ subscription_plan: z.ZodOptional<z.ZodString>;
1001
+ status_type: z.ZodOptional<z.ZodString>;
1002
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
1003
+ last_movement: z.ZodOptional<z.ZodString>;
1004
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1005
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1006
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1007
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1008
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1009
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1010
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1011
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1012
+ default_office_id: z.ZodOptional<z.ZodNumber>;
1013
+ fob_id: z.ZodOptional<z.ZodNumber>;
1014
+ has_photo: z.ZodOptional<z.ZodBoolean>;
996
1015
  }, "strip", z.ZodTypeAny, {
997
1016
  device_name?: string | undefined;
1017
+ key_id?: string | undefined;
1018
+ property_id?: string | null | undefined;
1019
+ property_postcode?: string | null | undefined;
1020
+ key_notes?: string | null | undefined;
1021
+ subscription_plan?: string | undefined;
1022
+ status_type?: string | undefined;
1023
+ current_or_last_store_id?: number | undefined;
1024
+ last_movement?: string | undefined;
1025
+ address?: string | null | undefined;
1026
+ current_status?: string | null | undefined;
1027
+ current_user_name?: string | null | undefined;
1028
+ current_user_email?: string | null | undefined;
1029
+ current_user_phone_number?: string | null | undefined;
1030
+ current_user_company?: string | null | undefined;
1031
+ handover_method?: string | null | undefined;
1032
+ keynest_app_user?: string | null | undefined;
1033
+ default_office_id?: number | undefined;
1034
+ fob_id?: number | undefined;
1035
+ has_photo?: boolean | undefined;
998
1036
  }, {
999
1037
  device_name?: string | undefined;
1038
+ key_id?: string | undefined;
1039
+ property_id?: string | null | undefined;
1040
+ property_postcode?: string | null | undefined;
1041
+ key_notes?: string | null | undefined;
1042
+ subscription_plan?: string | undefined;
1043
+ status_type?: string | undefined;
1044
+ current_or_last_store_id?: number | undefined;
1045
+ last_movement?: string | undefined;
1046
+ address?: string | null | undefined;
1047
+ current_status?: string | null | undefined;
1048
+ current_user_name?: string | null | undefined;
1049
+ current_user_email?: string | null | undefined;
1050
+ current_user_phone_number?: string | null | undefined;
1051
+ current_user_company?: string | null | undefined;
1052
+ handover_method?: string | null | undefined;
1053
+ keynest_app_user?: string | null | undefined;
1054
+ default_office_id?: number | undefined;
1055
+ fob_id?: number | undefined;
1056
+ has_photo?: boolean | undefined;
1000
1057
  }>>;
1001
1058
  }, "strip", z.ZodTypeAny, {
1002
1059
  ecobee_metadata?: {
@@ -1234,6 +1291,25 @@ export declare const spaces_batch: z.ZodObject<{
1234
1291
  } | undefined;
1235
1292
  keynest_metadata?: {
1236
1293
  device_name?: string | undefined;
1294
+ key_id?: string | undefined;
1295
+ property_id?: string | null | undefined;
1296
+ property_postcode?: string | null | undefined;
1297
+ key_notes?: string | null | undefined;
1298
+ subscription_plan?: string | undefined;
1299
+ status_type?: string | undefined;
1300
+ current_or_last_store_id?: number | undefined;
1301
+ last_movement?: string | undefined;
1302
+ address?: string | null | undefined;
1303
+ current_status?: string | null | undefined;
1304
+ current_user_name?: string | null | undefined;
1305
+ current_user_email?: string | null | undefined;
1306
+ current_user_phone_number?: string | null | undefined;
1307
+ current_user_company?: string | null | undefined;
1308
+ handover_method?: string | null | undefined;
1309
+ keynest_app_user?: string | null | undefined;
1310
+ default_office_id?: number | undefined;
1311
+ fob_id?: number | undefined;
1312
+ has_photo?: boolean | undefined;
1237
1313
  } | undefined;
1238
1314
  }, {
1239
1315
  ecobee_metadata?: {
@@ -1471,6 +1547,25 @@ export declare const spaces_batch: z.ZodObject<{
1471
1547
  } | undefined;
1472
1548
  keynest_metadata?: {
1473
1549
  device_name?: string | undefined;
1550
+ key_id?: string | undefined;
1551
+ property_id?: string | null | undefined;
1552
+ property_postcode?: string | null | undefined;
1553
+ key_notes?: string | null | undefined;
1554
+ subscription_plan?: string | undefined;
1555
+ status_type?: string | undefined;
1556
+ current_or_last_store_id?: number | undefined;
1557
+ last_movement?: string | undefined;
1558
+ address?: string | null | undefined;
1559
+ current_status?: string | null | undefined;
1560
+ current_user_name?: string | null | undefined;
1561
+ current_user_email?: string | null | undefined;
1562
+ current_user_phone_number?: string | null | undefined;
1563
+ current_user_company?: string | null | undefined;
1564
+ handover_method?: string | null | undefined;
1565
+ keynest_app_user?: string | null | undefined;
1566
+ default_office_id?: number | undefined;
1567
+ fob_id?: number | undefined;
1568
+ has_photo?: boolean | undefined;
1474
1569
  } | undefined;
1475
1570
  }>>, z.ZodIntersection<z.ZodObject<{
1476
1571
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -2964,7 +3059,7 @@ export declare const spaces_batch: z.ZodObject<{
2964
3059
  warning_code: "unknown_issue_with_phone";
2965
3060
  })[];
2966
3061
  custom_metadata: Record<string, string | boolean>;
2967
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
3062
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
2968
3063
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
2969
3064
  properties: {
2970
3065
  name: string;
@@ -3250,6 +3345,25 @@ export declare const spaces_batch: z.ZodObject<{
3250
3345
  } | undefined;
3251
3346
  keynest_metadata?: {
3252
3347
  device_name?: string | undefined;
3348
+ key_id?: string | undefined;
3349
+ property_id?: string | null | undefined;
3350
+ property_postcode?: string | null | undefined;
3351
+ key_notes?: string | null | undefined;
3352
+ subscription_plan?: string | undefined;
3353
+ status_type?: string | undefined;
3354
+ current_or_last_store_id?: number | undefined;
3355
+ last_movement?: string | undefined;
3356
+ address?: string | null | undefined;
3357
+ current_status?: string | null | undefined;
3358
+ current_user_name?: string | null | undefined;
3359
+ current_user_email?: string | null | undefined;
3360
+ current_user_phone_number?: string | null | undefined;
3361
+ current_user_company?: string | null | undefined;
3362
+ handover_method?: string | null | undefined;
3363
+ keynest_app_user?: string | null | undefined;
3364
+ default_office_id?: number | undefined;
3365
+ fob_id?: number | undefined;
3366
+ has_photo?: boolean | undefined;
3253
3367
  } | undefined;
3254
3368
  } & {
3255
3369
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -3605,7 +3719,7 @@ export declare const spaces_batch: z.ZodObject<{
3605
3719
  warning_code: "unknown_issue_with_phone";
3606
3720
  })[];
3607
3721
  custom_metadata: Record<string, string | boolean>;
3608
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
3722
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
3609
3723
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
3610
3724
  properties: {
3611
3725
  name: string;
@@ -3891,6 +4005,25 @@ export declare const spaces_batch: z.ZodObject<{
3891
4005
  } | undefined;
3892
4006
  keynest_metadata?: {
3893
4007
  device_name?: string | undefined;
4008
+ key_id?: string | undefined;
4009
+ property_id?: string | null | undefined;
4010
+ property_postcode?: string | null | undefined;
4011
+ key_notes?: string | null | undefined;
4012
+ subscription_plan?: string | undefined;
4013
+ status_type?: string | undefined;
4014
+ current_or_last_store_id?: number | undefined;
4015
+ last_movement?: string | undefined;
4016
+ address?: string | null | undefined;
4017
+ current_status?: string | null | undefined;
4018
+ current_user_name?: string | null | undefined;
4019
+ current_user_email?: string | null | undefined;
4020
+ current_user_phone_number?: string | null | undefined;
4021
+ current_user_company?: string | null | undefined;
4022
+ handover_method?: string | null | undefined;
4023
+ keynest_app_user?: string | null | undefined;
4024
+ default_office_id?: number | undefined;
4025
+ fob_id?: number | undefined;
4026
+ has_photo?: boolean | undefined;
3894
4027
  } | undefined;
3895
4028
  } & {
3896
4029
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -5226,7 +5359,7 @@ export declare const spaces_batch: z.ZodObject<{
5226
5359
  warning_code: "unknown_issue_with_phone";
5227
5360
  })[];
5228
5361
  custom_metadata: Record<string, string | boolean>;
5229
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
5362
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
5230
5363
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
5231
5364
  properties: {
5232
5365
  name: string;
@@ -5512,6 +5645,25 @@ export declare const spaces_batch: z.ZodObject<{
5512
5645
  } | undefined;
5513
5646
  keynest_metadata?: {
5514
5647
  device_name?: string | undefined;
5648
+ key_id?: string | undefined;
5649
+ property_id?: string | null | undefined;
5650
+ property_postcode?: string | null | undefined;
5651
+ key_notes?: string | null | undefined;
5652
+ subscription_plan?: string | undefined;
5653
+ status_type?: string | undefined;
5654
+ current_or_last_store_id?: number | undefined;
5655
+ last_movement?: string | undefined;
5656
+ address?: string | null | undefined;
5657
+ current_status?: string | null | undefined;
5658
+ current_user_name?: string | null | undefined;
5659
+ current_user_email?: string | null | undefined;
5660
+ current_user_phone_number?: string | null | undefined;
5661
+ current_user_company?: string | null | undefined;
5662
+ handover_method?: string | null | undefined;
5663
+ keynest_app_user?: string | null | undefined;
5664
+ default_office_id?: number | undefined;
5665
+ fob_id?: number | undefined;
5666
+ has_photo?: boolean | undefined;
5515
5667
  } | undefined;
5516
5668
  } & {
5517
5669
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -6082,7 +6234,7 @@ export declare const spaces_batch: z.ZodObject<{
6082
6234
  warning_code: "unknown_issue_with_phone";
6083
6235
  })[];
6084
6236
  custom_metadata: Record<string, string | boolean>;
6085
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
6237
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
6086
6238
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
6087
6239
  properties: {
6088
6240
  name: string;
@@ -6368,6 +6520,25 @@ export declare const spaces_batch: z.ZodObject<{
6368
6520
  } | undefined;
6369
6521
  keynest_metadata?: {
6370
6522
  device_name?: string | undefined;
6523
+ key_id?: string | undefined;
6524
+ property_id?: string | null | undefined;
6525
+ property_postcode?: string | null | undefined;
6526
+ key_notes?: string | null | undefined;
6527
+ subscription_plan?: string | undefined;
6528
+ status_type?: string | undefined;
6529
+ current_or_last_store_id?: number | undefined;
6530
+ last_movement?: string | undefined;
6531
+ address?: string | null | undefined;
6532
+ current_status?: string | null | undefined;
6533
+ current_user_name?: string | null | undefined;
6534
+ current_user_email?: string | null | undefined;
6535
+ current_user_phone_number?: string | null | undefined;
6536
+ current_user_company?: string | null | undefined;
6537
+ handover_method?: string | null | undefined;
6538
+ keynest_app_user?: string | null | undefined;
6539
+ default_office_id?: number | undefined;
6540
+ fob_id?: number | undefined;
6541
+ has_photo?: boolean | undefined;
6371
6542
  } | undefined;
6372
6543
  } & {
6373
6544
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -6778,7 +6949,7 @@ export declare const access_grants_batch: z.ZodObject<{
6778
6949
  }>, "many">>;
6779
6950
  devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
6780
6951
  device_id: z.ZodString;
6781
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
6952
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
6782
6953
  nickname: z.ZodOptional<z.ZodString>;
6783
6954
  display_name: z.ZodString;
6784
6955
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -7739,11 +7910,68 @@ export declare const access_grants_batch: z.ZodObject<{
7739
7910
  product_type: string;
7740
7911
  }>>;
7741
7912
  keynest_metadata: z.ZodOptional<z.ZodObject<{
7913
+ key_id: z.ZodOptional<z.ZodString>;
7742
7914
  device_name: z.ZodOptional<z.ZodString>;
7915
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7916
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7917
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7918
+ subscription_plan: z.ZodOptional<z.ZodString>;
7919
+ status_type: z.ZodOptional<z.ZodString>;
7920
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
7921
+ last_movement: z.ZodOptional<z.ZodString>;
7922
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7923
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7924
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7925
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7926
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7927
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7928
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7929
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7930
+ default_office_id: z.ZodOptional<z.ZodNumber>;
7931
+ fob_id: z.ZodOptional<z.ZodNumber>;
7932
+ has_photo: z.ZodOptional<z.ZodBoolean>;
7743
7933
  }, "strip", z.ZodTypeAny, {
7744
7934
  device_name?: string | undefined;
7935
+ key_id?: string | undefined;
7936
+ property_id?: string | null | undefined;
7937
+ property_postcode?: string | null | undefined;
7938
+ key_notes?: string | null | undefined;
7939
+ subscription_plan?: string | undefined;
7940
+ status_type?: string | undefined;
7941
+ current_or_last_store_id?: number | undefined;
7942
+ last_movement?: string | undefined;
7943
+ address?: string | null | undefined;
7944
+ current_status?: string | null | undefined;
7945
+ current_user_name?: string | null | undefined;
7946
+ current_user_email?: string | null | undefined;
7947
+ current_user_phone_number?: string | null | undefined;
7948
+ current_user_company?: string | null | undefined;
7949
+ handover_method?: string | null | undefined;
7950
+ keynest_app_user?: string | null | undefined;
7951
+ default_office_id?: number | undefined;
7952
+ fob_id?: number | undefined;
7953
+ has_photo?: boolean | undefined;
7745
7954
  }, {
7746
7955
  device_name?: string | undefined;
7956
+ key_id?: string | undefined;
7957
+ property_id?: string | null | undefined;
7958
+ property_postcode?: string | null | undefined;
7959
+ key_notes?: string | null | undefined;
7960
+ subscription_plan?: string | undefined;
7961
+ status_type?: string | undefined;
7962
+ current_or_last_store_id?: number | undefined;
7963
+ last_movement?: string | undefined;
7964
+ address?: string | null | undefined;
7965
+ current_status?: string | null | undefined;
7966
+ current_user_name?: string | null | undefined;
7967
+ current_user_email?: string | null | undefined;
7968
+ current_user_phone_number?: string | null | undefined;
7969
+ current_user_company?: string | null | undefined;
7970
+ handover_method?: string | null | undefined;
7971
+ keynest_app_user?: string | null | undefined;
7972
+ default_office_id?: number | undefined;
7973
+ fob_id?: number | undefined;
7974
+ has_photo?: boolean | undefined;
7747
7975
  }>>;
7748
7976
  }, "strip", z.ZodTypeAny, {
7749
7977
  ecobee_metadata?: {
@@ -7981,6 +8209,25 @@ export declare const access_grants_batch: z.ZodObject<{
7981
8209
  } | undefined;
7982
8210
  keynest_metadata?: {
7983
8211
  device_name?: string | undefined;
8212
+ key_id?: string | undefined;
8213
+ property_id?: string | null | undefined;
8214
+ property_postcode?: string | null | undefined;
8215
+ key_notes?: string | null | undefined;
8216
+ subscription_plan?: string | undefined;
8217
+ status_type?: string | undefined;
8218
+ current_or_last_store_id?: number | undefined;
8219
+ last_movement?: string | undefined;
8220
+ address?: string | null | undefined;
8221
+ current_status?: string | null | undefined;
8222
+ current_user_name?: string | null | undefined;
8223
+ current_user_email?: string | null | undefined;
8224
+ current_user_phone_number?: string | null | undefined;
8225
+ current_user_company?: string | null | undefined;
8226
+ handover_method?: string | null | undefined;
8227
+ keynest_app_user?: string | null | undefined;
8228
+ default_office_id?: number | undefined;
8229
+ fob_id?: number | undefined;
8230
+ has_photo?: boolean | undefined;
7984
8231
  } | undefined;
7985
8232
  }, {
7986
8233
  ecobee_metadata?: {
@@ -8218,6 +8465,25 @@ export declare const access_grants_batch: z.ZodObject<{
8218
8465
  } | undefined;
8219
8466
  keynest_metadata?: {
8220
8467
  device_name?: string | undefined;
8468
+ key_id?: string | undefined;
8469
+ property_id?: string | null | undefined;
8470
+ property_postcode?: string | null | undefined;
8471
+ key_notes?: string | null | undefined;
8472
+ subscription_plan?: string | undefined;
8473
+ status_type?: string | undefined;
8474
+ current_or_last_store_id?: number | undefined;
8475
+ last_movement?: string | undefined;
8476
+ address?: string | null | undefined;
8477
+ current_status?: string | null | undefined;
8478
+ current_user_name?: string | null | undefined;
8479
+ current_user_email?: string | null | undefined;
8480
+ current_user_phone_number?: string | null | undefined;
8481
+ current_user_company?: string | null | undefined;
8482
+ handover_method?: string | null | undefined;
8483
+ keynest_app_user?: string | null | undefined;
8484
+ default_office_id?: number | undefined;
8485
+ fob_id?: number | undefined;
8486
+ has_photo?: boolean | undefined;
8221
8487
  } | undefined;
8222
8488
  }>>, z.ZodIntersection<z.ZodObject<{
8223
8489
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -9711,7 +9977,7 @@ export declare const access_grants_batch: z.ZodObject<{
9711
9977
  warning_code: "unknown_issue_with_phone";
9712
9978
  })[];
9713
9979
  custom_metadata: Record<string, string | boolean>;
9714
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
9980
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
9715
9981
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
9716
9982
  properties: {
9717
9983
  name: string;
@@ -9997,6 +10263,25 @@ export declare const access_grants_batch: z.ZodObject<{
9997
10263
  } | undefined;
9998
10264
  keynest_metadata?: {
9999
10265
  device_name?: string | undefined;
10266
+ key_id?: string | undefined;
10267
+ property_id?: string | null | undefined;
10268
+ property_postcode?: string | null | undefined;
10269
+ key_notes?: string | null | undefined;
10270
+ subscription_plan?: string | undefined;
10271
+ status_type?: string | undefined;
10272
+ current_or_last_store_id?: number | undefined;
10273
+ last_movement?: string | undefined;
10274
+ address?: string | null | undefined;
10275
+ current_status?: string | null | undefined;
10276
+ current_user_name?: string | null | undefined;
10277
+ current_user_email?: string | null | undefined;
10278
+ current_user_phone_number?: string | null | undefined;
10279
+ current_user_company?: string | null | undefined;
10280
+ handover_method?: string | null | undefined;
10281
+ keynest_app_user?: string | null | undefined;
10282
+ default_office_id?: number | undefined;
10283
+ fob_id?: number | undefined;
10284
+ has_photo?: boolean | undefined;
10000
10285
  } | undefined;
10001
10286
  } & {
10002
10287
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -10352,7 +10637,7 @@ export declare const access_grants_batch: z.ZodObject<{
10352
10637
  warning_code: "unknown_issue_with_phone";
10353
10638
  })[];
10354
10639
  custom_metadata: Record<string, string | boolean>;
10355
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
10640
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
10356
10641
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
10357
10642
  properties: {
10358
10643
  name: string;
@@ -10638,6 +10923,25 @@ export declare const access_grants_batch: z.ZodObject<{
10638
10923
  } | undefined;
10639
10924
  keynest_metadata?: {
10640
10925
  device_name?: string | undefined;
10926
+ key_id?: string | undefined;
10927
+ property_id?: string | null | undefined;
10928
+ property_postcode?: string | null | undefined;
10929
+ key_notes?: string | null | undefined;
10930
+ subscription_plan?: string | undefined;
10931
+ status_type?: string | undefined;
10932
+ current_or_last_store_id?: number | undefined;
10933
+ last_movement?: string | undefined;
10934
+ address?: string | null | undefined;
10935
+ current_status?: string | null | undefined;
10936
+ current_user_name?: string | null | undefined;
10937
+ current_user_email?: string | null | undefined;
10938
+ current_user_phone_number?: string | null | undefined;
10939
+ current_user_company?: string | null | undefined;
10940
+ handover_method?: string | null | undefined;
10941
+ keynest_app_user?: string | null | undefined;
10942
+ default_office_id?: number | undefined;
10943
+ fob_id?: number | undefined;
10944
+ has_photo?: boolean | undefined;
10641
10945
  } | undefined;
10642
10946
  } & {
10643
10947
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -12148,7 +12452,7 @@ export declare const access_grants_batch: z.ZodObject<{
12148
12452
  warning_code: "unknown_issue_with_phone";
12149
12453
  })[];
12150
12454
  custom_metadata: Record<string, string | boolean>;
12151
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
12455
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
12152
12456
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
12153
12457
  properties: {
12154
12458
  name: string;
@@ -12434,6 +12738,25 @@ export declare const access_grants_batch: z.ZodObject<{
12434
12738
  } | undefined;
12435
12739
  keynest_metadata?: {
12436
12740
  device_name?: string | undefined;
12741
+ key_id?: string | undefined;
12742
+ property_id?: string | null | undefined;
12743
+ property_postcode?: string | null | undefined;
12744
+ key_notes?: string | null | undefined;
12745
+ subscription_plan?: string | undefined;
12746
+ status_type?: string | undefined;
12747
+ current_or_last_store_id?: number | undefined;
12748
+ last_movement?: string | undefined;
12749
+ address?: string | null | undefined;
12750
+ current_status?: string | null | undefined;
12751
+ current_user_name?: string | null | undefined;
12752
+ current_user_email?: string | null | undefined;
12753
+ current_user_phone_number?: string | null | undefined;
12754
+ current_user_company?: string | null | undefined;
12755
+ handover_method?: string | null | undefined;
12756
+ keynest_app_user?: string | null | undefined;
12757
+ default_office_id?: number | undefined;
12758
+ fob_id?: number | undefined;
12759
+ has_photo?: boolean | undefined;
12437
12760
  } | undefined;
12438
12761
  } & {
12439
12762
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -13050,7 +13373,7 @@ export declare const access_grants_batch: z.ZodObject<{
13050
13373
  warning_code: "unknown_issue_with_phone";
13051
13374
  })[];
13052
13375
  custom_metadata: Record<string, string | boolean>;
13053
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
13376
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
13054
13377
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
13055
13378
  properties: {
13056
13379
  name: string;
@@ -13336,6 +13659,25 @@ export declare const access_grants_batch: z.ZodObject<{
13336
13659
  } | undefined;
13337
13660
  keynest_metadata?: {
13338
13661
  device_name?: string | undefined;
13662
+ key_id?: string | undefined;
13663
+ property_id?: string | null | undefined;
13664
+ property_postcode?: string | null | undefined;
13665
+ key_notes?: string | null | undefined;
13666
+ subscription_plan?: string | undefined;
13667
+ status_type?: string | undefined;
13668
+ current_or_last_store_id?: number | undefined;
13669
+ last_movement?: string | undefined;
13670
+ address?: string | null | undefined;
13671
+ current_status?: string | null | undefined;
13672
+ current_user_name?: string | null | undefined;
13673
+ current_user_email?: string | null | undefined;
13674
+ current_user_phone_number?: string | null | undefined;
13675
+ current_user_company?: string | null | undefined;
13676
+ handover_method?: string | null | undefined;
13677
+ keynest_app_user?: string | null | undefined;
13678
+ default_office_id?: number | undefined;
13679
+ fob_id?: number | undefined;
13680
+ has_photo?: boolean | undefined;
13339
13681
  } | undefined;
13340
13682
  } & {
13341
13683
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -13792,7 +14134,7 @@ export declare const access_methods_batch: z.ZodObject<{
13792
14134
  }>, "many">>;
13793
14135
  devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
13794
14136
  device_id: z.ZodString;
13795
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
14137
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
13796
14138
  nickname: z.ZodOptional<z.ZodString>;
13797
14139
  display_name: z.ZodString;
13798
14140
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -14753,11 +15095,68 @@ export declare const access_methods_batch: z.ZodObject<{
14753
15095
  product_type: string;
14754
15096
  }>>;
14755
15097
  keynest_metadata: z.ZodOptional<z.ZodObject<{
15098
+ key_id: z.ZodOptional<z.ZodString>;
14756
15099
  device_name: z.ZodOptional<z.ZodString>;
15100
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15101
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15102
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15103
+ subscription_plan: z.ZodOptional<z.ZodString>;
15104
+ status_type: z.ZodOptional<z.ZodString>;
15105
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
15106
+ last_movement: z.ZodOptional<z.ZodString>;
15107
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15108
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15109
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15110
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15111
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15112
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15113
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15114
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15115
+ default_office_id: z.ZodOptional<z.ZodNumber>;
15116
+ fob_id: z.ZodOptional<z.ZodNumber>;
15117
+ has_photo: z.ZodOptional<z.ZodBoolean>;
14757
15118
  }, "strip", z.ZodTypeAny, {
14758
15119
  device_name?: string | undefined;
15120
+ key_id?: string | undefined;
15121
+ property_id?: string | null | undefined;
15122
+ property_postcode?: string | null | undefined;
15123
+ key_notes?: string | null | undefined;
15124
+ subscription_plan?: string | undefined;
15125
+ status_type?: string | undefined;
15126
+ current_or_last_store_id?: number | undefined;
15127
+ last_movement?: string | undefined;
15128
+ address?: string | null | undefined;
15129
+ current_status?: string | null | undefined;
15130
+ current_user_name?: string | null | undefined;
15131
+ current_user_email?: string | null | undefined;
15132
+ current_user_phone_number?: string | null | undefined;
15133
+ current_user_company?: string | null | undefined;
15134
+ handover_method?: string | null | undefined;
15135
+ keynest_app_user?: string | null | undefined;
15136
+ default_office_id?: number | undefined;
15137
+ fob_id?: number | undefined;
15138
+ has_photo?: boolean | undefined;
14759
15139
  }, {
14760
15140
  device_name?: string | undefined;
15141
+ key_id?: string | undefined;
15142
+ property_id?: string | null | undefined;
15143
+ property_postcode?: string | null | undefined;
15144
+ key_notes?: string | null | undefined;
15145
+ subscription_plan?: string | undefined;
15146
+ status_type?: string | undefined;
15147
+ current_or_last_store_id?: number | undefined;
15148
+ last_movement?: string | undefined;
15149
+ address?: string | null | undefined;
15150
+ current_status?: string | null | undefined;
15151
+ current_user_name?: string | null | undefined;
15152
+ current_user_email?: string | null | undefined;
15153
+ current_user_phone_number?: string | null | undefined;
15154
+ current_user_company?: string | null | undefined;
15155
+ handover_method?: string | null | undefined;
15156
+ keynest_app_user?: string | null | undefined;
15157
+ default_office_id?: number | undefined;
15158
+ fob_id?: number | undefined;
15159
+ has_photo?: boolean | undefined;
14761
15160
  }>>;
14762
15161
  }, "strip", z.ZodTypeAny, {
14763
15162
  ecobee_metadata?: {
@@ -14995,6 +15394,25 @@ export declare const access_methods_batch: z.ZodObject<{
14995
15394
  } | undefined;
14996
15395
  keynest_metadata?: {
14997
15396
  device_name?: string | undefined;
15397
+ key_id?: string | undefined;
15398
+ property_id?: string | null | undefined;
15399
+ property_postcode?: string | null | undefined;
15400
+ key_notes?: string | null | undefined;
15401
+ subscription_plan?: string | undefined;
15402
+ status_type?: string | undefined;
15403
+ current_or_last_store_id?: number | undefined;
15404
+ last_movement?: string | undefined;
15405
+ address?: string | null | undefined;
15406
+ current_status?: string | null | undefined;
15407
+ current_user_name?: string | null | undefined;
15408
+ current_user_email?: string | null | undefined;
15409
+ current_user_phone_number?: string | null | undefined;
15410
+ current_user_company?: string | null | undefined;
15411
+ handover_method?: string | null | undefined;
15412
+ keynest_app_user?: string | null | undefined;
15413
+ default_office_id?: number | undefined;
15414
+ fob_id?: number | undefined;
15415
+ has_photo?: boolean | undefined;
14998
15416
  } | undefined;
14999
15417
  }, {
15000
15418
  ecobee_metadata?: {
@@ -15232,6 +15650,25 @@ export declare const access_methods_batch: z.ZodObject<{
15232
15650
  } | undefined;
15233
15651
  keynest_metadata?: {
15234
15652
  device_name?: string | undefined;
15653
+ key_id?: string | undefined;
15654
+ property_id?: string | null | undefined;
15655
+ property_postcode?: string | null | undefined;
15656
+ key_notes?: string | null | undefined;
15657
+ subscription_plan?: string | undefined;
15658
+ status_type?: string | undefined;
15659
+ current_or_last_store_id?: number | undefined;
15660
+ last_movement?: string | undefined;
15661
+ address?: string | null | undefined;
15662
+ current_status?: string | null | undefined;
15663
+ current_user_name?: string | null | undefined;
15664
+ current_user_email?: string | null | undefined;
15665
+ current_user_phone_number?: string | null | undefined;
15666
+ current_user_company?: string | null | undefined;
15667
+ handover_method?: string | null | undefined;
15668
+ keynest_app_user?: string | null | undefined;
15669
+ default_office_id?: number | undefined;
15670
+ fob_id?: number | undefined;
15671
+ has_photo?: boolean | undefined;
15235
15672
  } | undefined;
15236
15673
  }>>, z.ZodIntersection<z.ZodObject<{
15237
15674
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -16725,7 +17162,7 @@ export declare const access_methods_batch: z.ZodObject<{
16725
17162
  warning_code: "unknown_issue_with_phone";
16726
17163
  })[];
16727
17164
  custom_metadata: Record<string, string | boolean>;
16728
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
17165
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
16729
17166
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
16730
17167
  properties: {
16731
17168
  name: string;
@@ -17011,6 +17448,25 @@ export declare const access_methods_batch: z.ZodObject<{
17011
17448
  } | undefined;
17012
17449
  keynest_metadata?: {
17013
17450
  device_name?: string | undefined;
17451
+ key_id?: string | undefined;
17452
+ property_id?: string | null | undefined;
17453
+ property_postcode?: string | null | undefined;
17454
+ key_notes?: string | null | undefined;
17455
+ subscription_plan?: string | undefined;
17456
+ status_type?: string | undefined;
17457
+ current_or_last_store_id?: number | undefined;
17458
+ last_movement?: string | undefined;
17459
+ address?: string | null | undefined;
17460
+ current_status?: string | null | undefined;
17461
+ current_user_name?: string | null | undefined;
17462
+ current_user_email?: string | null | undefined;
17463
+ current_user_phone_number?: string | null | undefined;
17464
+ current_user_company?: string | null | undefined;
17465
+ handover_method?: string | null | undefined;
17466
+ keynest_app_user?: string | null | undefined;
17467
+ default_office_id?: number | undefined;
17468
+ fob_id?: number | undefined;
17469
+ has_photo?: boolean | undefined;
17014
17470
  } | undefined;
17015
17471
  } & {
17016
17472
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -17366,7 +17822,7 @@ export declare const access_methods_batch: z.ZodObject<{
17366
17822
  warning_code: "unknown_issue_with_phone";
17367
17823
  })[];
17368
17824
  custom_metadata: Record<string, string | boolean>;
17369
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
17825
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
17370
17826
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
17371
17827
  properties: {
17372
17828
  name: string;
@@ -17652,6 +18108,25 @@ export declare const access_methods_batch: z.ZodObject<{
17652
18108
  } | undefined;
17653
18109
  keynest_metadata?: {
17654
18110
  device_name?: string | undefined;
18111
+ key_id?: string | undefined;
18112
+ property_id?: string | null | undefined;
18113
+ property_postcode?: string | null | undefined;
18114
+ key_notes?: string | null | undefined;
18115
+ subscription_plan?: string | undefined;
18116
+ status_type?: string | undefined;
18117
+ current_or_last_store_id?: number | undefined;
18118
+ last_movement?: string | undefined;
18119
+ address?: string | null | undefined;
18120
+ current_status?: string | null | undefined;
18121
+ current_user_name?: string | null | undefined;
18122
+ current_user_email?: string | null | undefined;
18123
+ current_user_phone_number?: string | null | undefined;
18124
+ current_user_company?: string | null | undefined;
18125
+ handover_method?: string | null | undefined;
18126
+ keynest_app_user?: string | null | undefined;
18127
+ default_office_id?: number | undefined;
18128
+ fob_id?: number | undefined;
18129
+ has_photo?: boolean | undefined;
17655
18130
  } | undefined;
17656
18131
  } & {
17657
18132
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -18312,7 +18787,7 @@ export declare const access_methods_batch: z.ZodObject<{
18312
18787
  warning_code: "unknown_issue_with_phone";
18313
18788
  })[];
18314
18789
  custom_metadata: Record<string, string | boolean>;
18315
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
18790
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
18316
18791
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
18317
18792
  properties: {
18318
18793
  name: string;
@@ -18598,6 +19073,25 @@ export declare const access_methods_batch: z.ZodObject<{
18598
19073
  } | undefined;
18599
19074
  keynest_metadata?: {
18600
19075
  device_name?: string | undefined;
19076
+ key_id?: string | undefined;
19077
+ property_id?: string | null | undefined;
19078
+ property_postcode?: string | null | undefined;
19079
+ key_notes?: string | null | undefined;
19080
+ subscription_plan?: string | undefined;
19081
+ status_type?: string | undefined;
19082
+ current_or_last_store_id?: number | undefined;
19083
+ last_movement?: string | undefined;
19084
+ address?: string | null | undefined;
19085
+ current_status?: string | null | undefined;
19086
+ current_user_name?: string | null | undefined;
19087
+ current_user_email?: string | null | undefined;
19088
+ current_user_phone_number?: string | null | undefined;
19089
+ current_user_company?: string | null | undefined;
19090
+ handover_method?: string | null | undefined;
19091
+ keynest_app_user?: string | null | undefined;
19092
+ default_office_id?: number | undefined;
19093
+ fob_id?: number | undefined;
19094
+ has_photo?: boolean | undefined;
18601
19095
  } | undefined;
18602
19096
  } & {
18603
19097
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -19031,7 +19525,7 @@ export declare const access_methods_batch: z.ZodObject<{
19031
19525
  warning_code: "unknown_issue_with_phone";
19032
19526
  })[];
19033
19527
  custom_metadata: Record<string, string | boolean>;
19034
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
19528
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
19035
19529
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
19036
19530
  properties: {
19037
19531
  name: string;
@@ -19317,6 +19811,25 @@ export declare const access_methods_batch: z.ZodObject<{
19317
19811
  } | undefined;
19318
19812
  keynest_metadata?: {
19319
19813
  device_name?: string | undefined;
19814
+ key_id?: string | undefined;
19815
+ property_id?: string | null | undefined;
19816
+ property_postcode?: string | null | undefined;
19817
+ key_notes?: string | null | undefined;
19818
+ subscription_plan?: string | undefined;
19819
+ status_type?: string | undefined;
19820
+ current_or_last_store_id?: number | undefined;
19821
+ last_movement?: string | undefined;
19822
+ address?: string | null | undefined;
19823
+ current_status?: string | null | undefined;
19824
+ current_user_name?: string | null | undefined;
19825
+ current_user_email?: string | null | undefined;
19826
+ current_user_phone_number?: string | null | undefined;
19827
+ current_user_company?: string | null | undefined;
19828
+ handover_method?: string | null | undefined;
19829
+ keynest_app_user?: string | null | undefined;
19830
+ default_office_id?: number | undefined;
19831
+ fob_id?: number | undefined;
19832
+ has_photo?: boolean | undefined;
19320
19833
  } | undefined;
19321
19834
  } & {
19322
19835
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -19755,7 +20268,7 @@ export declare const workspaces_batch: z.ZodObject<{
19755
20268
  }>, "many">>;
19756
20269
  devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
19757
20270
  device_id: z.ZodString;
19758
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
20271
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
19759
20272
  nickname: z.ZodOptional<z.ZodString>;
19760
20273
  display_name: z.ZodString;
19761
20274
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -20716,11 +21229,68 @@ export declare const workspaces_batch: z.ZodObject<{
20716
21229
  product_type: string;
20717
21230
  }>>;
20718
21231
  keynest_metadata: z.ZodOptional<z.ZodObject<{
21232
+ key_id: z.ZodOptional<z.ZodString>;
20719
21233
  device_name: z.ZodOptional<z.ZodString>;
21234
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21235
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21236
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21237
+ subscription_plan: z.ZodOptional<z.ZodString>;
21238
+ status_type: z.ZodOptional<z.ZodString>;
21239
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
21240
+ last_movement: z.ZodOptional<z.ZodString>;
21241
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21242
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21243
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21244
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21245
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21246
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21247
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21248
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21249
+ default_office_id: z.ZodOptional<z.ZodNumber>;
21250
+ fob_id: z.ZodOptional<z.ZodNumber>;
21251
+ has_photo: z.ZodOptional<z.ZodBoolean>;
20720
21252
  }, "strip", z.ZodTypeAny, {
20721
21253
  device_name?: string | undefined;
21254
+ key_id?: string | undefined;
21255
+ property_id?: string | null | undefined;
21256
+ property_postcode?: string | null | undefined;
21257
+ key_notes?: string | null | undefined;
21258
+ subscription_plan?: string | undefined;
21259
+ status_type?: string | undefined;
21260
+ current_or_last_store_id?: number | undefined;
21261
+ last_movement?: string | undefined;
21262
+ address?: string | null | undefined;
21263
+ current_status?: string | null | undefined;
21264
+ current_user_name?: string | null | undefined;
21265
+ current_user_email?: string | null | undefined;
21266
+ current_user_phone_number?: string | null | undefined;
21267
+ current_user_company?: string | null | undefined;
21268
+ handover_method?: string | null | undefined;
21269
+ keynest_app_user?: string | null | undefined;
21270
+ default_office_id?: number | undefined;
21271
+ fob_id?: number | undefined;
21272
+ has_photo?: boolean | undefined;
20722
21273
  }, {
20723
21274
  device_name?: string | undefined;
21275
+ key_id?: string | undefined;
21276
+ property_id?: string | null | undefined;
21277
+ property_postcode?: string | null | undefined;
21278
+ key_notes?: string | null | undefined;
21279
+ subscription_plan?: string | undefined;
21280
+ status_type?: string | undefined;
21281
+ current_or_last_store_id?: number | undefined;
21282
+ last_movement?: string | undefined;
21283
+ address?: string | null | undefined;
21284
+ current_status?: string | null | undefined;
21285
+ current_user_name?: string | null | undefined;
21286
+ current_user_email?: string | null | undefined;
21287
+ current_user_phone_number?: string | null | undefined;
21288
+ current_user_company?: string | null | undefined;
21289
+ handover_method?: string | null | undefined;
21290
+ keynest_app_user?: string | null | undefined;
21291
+ default_office_id?: number | undefined;
21292
+ fob_id?: number | undefined;
21293
+ has_photo?: boolean | undefined;
20724
21294
  }>>;
20725
21295
  }, "strip", z.ZodTypeAny, {
20726
21296
  ecobee_metadata?: {
@@ -20958,6 +21528,25 @@ export declare const workspaces_batch: z.ZodObject<{
20958
21528
  } | undefined;
20959
21529
  keynest_metadata?: {
20960
21530
  device_name?: string | undefined;
21531
+ key_id?: string | undefined;
21532
+ property_id?: string | null | undefined;
21533
+ property_postcode?: string | null | undefined;
21534
+ key_notes?: string | null | undefined;
21535
+ subscription_plan?: string | undefined;
21536
+ status_type?: string | undefined;
21537
+ current_or_last_store_id?: number | undefined;
21538
+ last_movement?: string | undefined;
21539
+ address?: string | null | undefined;
21540
+ current_status?: string | null | undefined;
21541
+ current_user_name?: string | null | undefined;
21542
+ current_user_email?: string | null | undefined;
21543
+ current_user_phone_number?: string | null | undefined;
21544
+ current_user_company?: string | null | undefined;
21545
+ handover_method?: string | null | undefined;
21546
+ keynest_app_user?: string | null | undefined;
21547
+ default_office_id?: number | undefined;
21548
+ fob_id?: number | undefined;
21549
+ has_photo?: boolean | undefined;
20961
21550
  } | undefined;
20962
21551
  }, {
20963
21552
  ecobee_metadata?: {
@@ -21195,6 +21784,25 @@ export declare const workspaces_batch: z.ZodObject<{
21195
21784
  } | undefined;
21196
21785
  keynest_metadata?: {
21197
21786
  device_name?: string | undefined;
21787
+ key_id?: string | undefined;
21788
+ property_id?: string | null | undefined;
21789
+ property_postcode?: string | null | undefined;
21790
+ key_notes?: string | null | undefined;
21791
+ subscription_plan?: string | undefined;
21792
+ status_type?: string | undefined;
21793
+ current_or_last_store_id?: number | undefined;
21794
+ last_movement?: string | undefined;
21795
+ address?: string | null | undefined;
21796
+ current_status?: string | null | undefined;
21797
+ current_user_name?: string | null | undefined;
21798
+ current_user_email?: string | null | undefined;
21799
+ current_user_phone_number?: string | null | undefined;
21800
+ current_user_company?: string | null | undefined;
21801
+ handover_method?: string | null | undefined;
21802
+ keynest_app_user?: string | null | undefined;
21803
+ default_office_id?: number | undefined;
21804
+ fob_id?: number | undefined;
21805
+ has_photo?: boolean | undefined;
21198
21806
  } | undefined;
21199
21807
  }>>, z.ZodIntersection<z.ZodObject<{
21200
21808
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -22688,7 +23296,7 @@ export declare const workspaces_batch: z.ZodObject<{
22688
23296
  warning_code: "unknown_issue_with_phone";
22689
23297
  })[];
22690
23298
  custom_metadata: Record<string, string | boolean>;
22691
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
23299
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
22692
23300
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
22693
23301
  properties: {
22694
23302
  name: string;
@@ -22974,6 +23582,25 @@ export declare const workspaces_batch: z.ZodObject<{
22974
23582
  } | undefined;
22975
23583
  keynest_metadata?: {
22976
23584
  device_name?: string | undefined;
23585
+ key_id?: string | undefined;
23586
+ property_id?: string | null | undefined;
23587
+ property_postcode?: string | null | undefined;
23588
+ key_notes?: string | null | undefined;
23589
+ subscription_plan?: string | undefined;
23590
+ status_type?: string | undefined;
23591
+ current_or_last_store_id?: number | undefined;
23592
+ last_movement?: string | undefined;
23593
+ address?: string | null | undefined;
23594
+ current_status?: string | null | undefined;
23595
+ current_user_name?: string | null | undefined;
23596
+ current_user_email?: string | null | undefined;
23597
+ current_user_phone_number?: string | null | undefined;
23598
+ current_user_company?: string | null | undefined;
23599
+ handover_method?: string | null | undefined;
23600
+ keynest_app_user?: string | null | undefined;
23601
+ default_office_id?: number | undefined;
23602
+ fob_id?: number | undefined;
23603
+ has_photo?: boolean | undefined;
22977
23604
  } | undefined;
22978
23605
  } & {
22979
23606
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -23329,7 +23956,7 @@ export declare const workspaces_batch: z.ZodObject<{
23329
23956
  warning_code: "unknown_issue_with_phone";
23330
23957
  })[];
23331
23958
  custom_metadata: Record<string, string | boolean>;
23332
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
23959
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
23333
23960
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
23334
23961
  properties: {
23335
23962
  name: string;
@@ -23615,6 +24242,25 @@ export declare const workspaces_batch: z.ZodObject<{
23615
24242
  } | undefined;
23616
24243
  keynest_metadata?: {
23617
24244
  device_name?: string | undefined;
24245
+ key_id?: string | undefined;
24246
+ property_id?: string | null | undefined;
24247
+ property_postcode?: string | null | undefined;
24248
+ key_notes?: string | null | undefined;
24249
+ subscription_plan?: string | undefined;
24250
+ status_type?: string | undefined;
24251
+ current_or_last_store_id?: number | undefined;
24252
+ last_movement?: string | undefined;
24253
+ address?: string | null | undefined;
24254
+ current_status?: string | null | undefined;
24255
+ current_user_name?: string | null | undefined;
24256
+ current_user_email?: string | null | undefined;
24257
+ current_user_phone_number?: string | null | undefined;
24258
+ current_user_company?: string | null | undefined;
24259
+ handover_method?: string | null | undefined;
24260
+ keynest_app_user?: string | null | undefined;
24261
+ default_office_id?: number | undefined;
24262
+ fob_id?: number | undefined;
24263
+ has_photo?: boolean | undefined;
23618
24264
  } | undefined;
23619
24265
  } & {
23620
24266
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -25258,17 +25904,17 @@ export declare const workspaces_batch: z.ZodObject<{
25258
25904
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25259
25905
  endpoint_id: z.ZodOptional<z.ZodString>;
25260
25906
  }, "strip", z.ZodTypeAny, {
25907
+ key_id?: string | undefined;
25261
25908
  endpoint_id?: string | undefined;
25262
25909
  auto_join?: boolean | undefined;
25263
25910
  override_guest_acs_entrance_ids?: string[] | undefined;
25264
- key_id?: string | undefined;
25265
25911
  key_issuing_request_id?: string | undefined;
25266
25912
  door_names?: string[] | undefined;
25267
25913
  }, {
25914
+ key_id?: string | undefined;
25268
25915
  endpoint_id?: string | undefined;
25269
25916
  auto_join?: boolean | undefined;
25270
25917
  override_guest_acs_entrance_ids?: string[] | undefined;
25271
- key_id?: string | undefined;
25272
25918
  key_issuing_request_id?: string | undefined;
25273
25919
  door_names?: string[] | undefined;
25274
25920
  }>>;
@@ -25326,10 +25972,10 @@ export declare const workspaces_batch: z.ZodObject<{
25326
25972
  credential_id?: string | undefined;
25327
25973
  } | undefined;
25328
25974
  assa_abloy_vostio_metadata?: {
25975
+ key_id?: string | undefined;
25329
25976
  endpoint_id?: string | undefined;
25330
25977
  auto_join?: boolean | undefined;
25331
25978
  override_guest_acs_entrance_ids?: string[] | undefined;
25332
- key_id?: string | undefined;
25333
25979
  key_issuing_request_id?: string | undefined;
25334
25980
  door_names?: string[] | undefined;
25335
25981
  } | undefined;
@@ -25398,10 +26044,10 @@ export declare const workspaces_batch: z.ZodObject<{
25398
26044
  credential_id?: string | undefined;
25399
26045
  } | undefined;
25400
26046
  assa_abloy_vostio_metadata?: {
26047
+ key_id?: string | undefined;
25401
26048
  endpoint_id?: string | undefined;
25402
26049
  auto_join?: boolean | undefined;
25403
26050
  override_guest_acs_entrance_ids?: string[] | undefined;
25404
- key_id?: string | undefined;
25405
26051
  key_issuing_request_id?: string | undefined;
25406
26052
  door_names?: string[] | undefined;
25407
26053
  } | undefined;
@@ -25568,17 +26214,17 @@ export declare const workspaces_batch: z.ZodObject<{
25568
26214
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
25569
26215
  endpoint_id: z.ZodOptional<z.ZodString>;
25570
26216
  }, "strip", z.ZodTypeAny, {
26217
+ key_id?: string | undefined;
25571
26218
  endpoint_id?: string | undefined;
25572
26219
  auto_join?: boolean | undefined;
25573
26220
  override_guest_acs_entrance_ids?: string[] | undefined;
25574
- key_id?: string | undefined;
25575
26221
  key_issuing_request_id?: string | undefined;
25576
26222
  door_names?: string[] | undefined;
25577
26223
  }, {
26224
+ key_id?: string | undefined;
25578
26225
  endpoint_id?: string | undefined;
25579
26226
  auto_join?: boolean | undefined;
25580
26227
  override_guest_acs_entrance_ids?: string[] | undefined;
25581
- key_id?: string | undefined;
25582
26228
  key_issuing_request_id?: string | undefined;
25583
26229
  door_names?: string[] | undefined;
25584
26230
  }>>;
@@ -25636,10 +26282,10 @@ export declare const workspaces_batch: z.ZodObject<{
25636
26282
  credential_id?: string | undefined;
25637
26283
  } | undefined;
25638
26284
  assa_abloy_vostio_metadata?: {
26285
+ key_id?: string | undefined;
25639
26286
  endpoint_id?: string | undefined;
25640
26287
  auto_join?: boolean | undefined;
25641
26288
  override_guest_acs_entrance_ids?: string[] | undefined;
25642
- key_id?: string | undefined;
25643
26289
  key_issuing_request_id?: string | undefined;
25644
26290
  door_names?: string[] | undefined;
25645
26291
  } | undefined;
@@ -25708,10 +26354,10 @@ export declare const workspaces_batch: z.ZodObject<{
25708
26354
  credential_id?: string | undefined;
25709
26355
  } | undefined;
25710
26356
  assa_abloy_vostio_metadata?: {
26357
+ key_id?: string | undefined;
25711
26358
  endpoint_id?: string | undefined;
25712
26359
  auto_join?: boolean | undefined;
25713
26360
  override_guest_acs_entrance_ids?: string[] | undefined;
25714
- key_id?: string | undefined;
25715
26361
  key_issuing_request_id?: string | undefined;
25716
26362
  door_names?: string[] | undefined;
25717
26363
  } | undefined;
@@ -26143,17 +26789,17 @@ export declare const workspaces_batch: z.ZodObject<{
26143
26789
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26144
26790
  endpoint_id: z.ZodOptional<z.ZodString>;
26145
26791
  }, "strip", z.ZodTypeAny, {
26792
+ key_id?: string | undefined;
26146
26793
  endpoint_id?: string | undefined;
26147
26794
  auto_join?: boolean | undefined;
26148
26795
  override_guest_acs_entrance_ids?: string[] | undefined;
26149
- key_id?: string | undefined;
26150
26796
  key_issuing_request_id?: string | undefined;
26151
26797
  door_names?: string[] | undefined;
26152
26798
  }, {
26799
+ key_id?: string | undefined;
26153
26800
  endpoint_id?: string | undefined;
26154
26801
  auto_join?: boolean | undefined;
26155
26802
  override_guest_acs_entrance_ids?: string[] | undefined;
26156
- key_id?: string | undefined;
26157
26803
  key_issuing_request_id?: string | undefined;
26158
26804
  door_names?: string[] | undefined;
26159
26805
  }>>;
@@ -26211,10 +26857,10 @@ export declare const workspaces_batch: z.ZodObject<{
26211
26857
  credential_id?: string | undefined;
26212
26858
  } | undefined;
26213
26859
  assa_abloy_vostio_metadata?: {
26860
+ key_id?: string | undefined;
26214
26861
  endpoint_id?: string | undefined;
26215
26862
  auto_join?: boolean | undefined;
26216
26863
  override_guest_acs_entrance_ids?: string[] | undefined;
26217
- key_id?: string | undefined;
26218
26864
  key_issuing_request_id?: string | undefined;
26219
26865
  door_names?: string[] | undefined;
26220
26866
  } | undefined;
@@ -26283,10 +26929,10 @@ export declare const workspaces_batch: z.ZodObject<{
26283
26929
  credential_id?: string | undefined;
26284
26930
  } | undefined;
26285
26931
  assa_abloy_vostio_metadata?: {
26932
+ key_id?: string | undefined;
26286
26933
  endpoint_id?: string | undefined;
26287
26934
  auto_join?: boolean | undefined;
26288
26935
  override_guest_acs_entrance_ids?: string[] | undefined;
26289
- key_id?: string | undefined;
26290
26936
  key_issuing_request_id?: string | undefined;
26291
26937
  door_names?: string[] | undefined;
26292
26938
  } | undefined;
@@ -26452,17 +27098,17 @@ export declare const workspaces_batch: z.ZodObject<{
26452
27098
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26453
27099
  endpoint_id: z.ZodOptional<z.ZodString>;
26454
27100
  }, "strip", z.ZodTypeAny, {
27101
+ key_id?: string | undefined;
26455
27102
  endpoint_id?: string | undefined;
26456
27103
  auto_join?: boolean | undefined;
26457
27104
  override_guest_acs_entrance_ids?: string[] | undefined;
26458
- key_id?: string | undefined;
26459
27105
  key_issuing_request_id?: string | undefined;
26460
27106
  door_names?: string[] | undefined;
26461
27107
  }, {
27108
+ key_id?: string | undefined;
26462
27109
  endpoint_id?: string | undefined;
26463
27110
  auto_join?: boolean | undefined;
26464
27111
  override_guest_acs_entrance_ids?: string[] | undefined;
26465
- key_id?: string | undefined;
26466
27112
  key_issuing_request_id?: string | undefined;
26467
27113
  door_names?: string[] | undefined;
26468
27114
  }>>;
@@ -26520,10 +27166,10 @@ export declare const workspaces_batch: z.ZodObject<{
26520
27166
  credential_id?: string | undefined;
26521
27167
  } | undefined;
26522
27168
  assa_abloy_vostio_metadata?: {
27169
+ key_id?: string | undefined;
26523
27170
  endpoint_id?: string | undefined;
26524
27171
  auto_join?: boolean | undefined;
26525
27172
  override_guest_acs_entrance_ids?: string[] | undefined;
26526
- key_id?: string | undefined;
26527
27173
  key_issuing_request_id?: string | undefined;
26528
27174
  door_names?: string[] | undefined;
26529
27175
  } | undefined;
@@ -26592,10 +27238,10 @@ export declare const workspaces_batch: z.ZodObject<{
26592
27238
  credential_id?: string | undefined;
26593
27239
  } | undefined;
26594
27240
  assa_abloy_vostio_metadata?: {
27241
+ key_id?: string | undefined;
26595
27242
  endpoint_id?: string | undefined;
26596
27243
  auto_join?: boolean | undefined;
26597
27244
  override_guest_acs_entrance_ids?: string[] | undefined;
26598
- key_id?: string | undefined;
26599
27245
  key_issuing_request_id?: string | undefined;
26600
27246
  door_names?: string[] | undefined;
26601
27247
  } | undefined;
@@ -26701,10 +27347,10 @@ export declare const workspaces_batch: z.ZodObject<{
26701
27347
  credential_id?: string | undefined;
26702
27348
  } | undefined;
26703
27349
  assa_abloy_vostio_metadata?: {
27350
+ key_id?: string | undefined;
26704
27351
  endpoint_id?: string | undefined;
26705
27352
  auto_join?: boolean | undefined;
26706
27353
  override_guest_acs_entrance_ids?: string[] | undefined;
26707
- key_id?: string | undefined;
26708
27354
  key_issuing_request_id?: string | undefined;
26709
27355
  door_names?: string[] | undefined;
26710
27356
  } | undefined;
@@ -26773,10 +27419,10 @@ export declare const workspaces_batch: z.ZodObject<{
26773
27419
  credential_id?: string | undefined;
26774
27420
  } | undefined;
26775
27421
  assa_abloy_vostio_metadata?: {
27422
+ key_id?: string | undefined;
26776
27423
  endpoint_id?: string | undefined;
26777
27424
  auto_join?: boolean | undefined;
26778
27425
  override_guest_acs_entrance_ids?: string[] | undefined;
26779
- key_id?: string | undefined;
26780
27426
  key_issuing_request_id?: string | undefined;
26781
27427
  door_names?: string[] | undefined;
26782
27428
  } | undefined;
@@ -26872,10 +27518,10 @@ export declare const workspaces_batch: z.ZodObject<{
26872
27518
  credential_id?: string | undefined;
26873
27519
  } | undefined;
26874
27520
  assa_abloy_vostio_metadata?: {
27521
+ key_id?: string | undefined;
26875
27522
  endpoint_id?: string | undefined;
26876
27523
  auto_join?: boolean | undefined;
26877
27524
  override_guest_acs_entrance_ids?: string[] | undefined;
26878
- key_id?: string | undefined;
26879
27525
  key_issuing_request_id?: string | undefined;
26880
27526
  door_names?: string[] | undefined;
26881
27527
  } | undefined;
@@ -26944,10 +27590,10 @@ export declare const workspaces_batch: z.ZodObject<{
26944
27590
  credential_id?: string | undefined;
26945
27591
  } | undefined;
26946
27592
  assa_abloy_vostio_metadata?: {
27593
+ key_id?: string | undefined;
26947
27594
  endpoint_id?: string | undefined;
26948
27595
  auto_join?: boolean | undefined;
26949
27596
  override_guest_acs_entrance_ids?: string[] | undefined;
26950
- key_id?: string | undefined;
26951
27597
  key_issuing_request_id?: string | undefined;
26952
27598
  door_names?: string[] | undefined;
26953
27599
  } | undefined;
@@ -27048,10 +27694,10 @@ export declare const workspaces_batch: z.ZodObject<{
27048
27694
  credential_id?: string | undefined;
27049
27695
  } | undefined;
27050
27696
  assa_abloy_vostio_metadata?: {
27697
+ key_id?: string | undefined;
27051
27698
  endpoint_id?: string | undefined;
27052
27699
  auto_join?: boolean | undefined;
27053
27700
  override_guest_acs_entrance_ids?: string[] | undefined;
27054
- key_id?: string | undefined;
27055
27701
  key_issuing_request_id?: string | undefined;
27056
27702
  door_names?: string[] | undefined;
27057
27703
  } | undefined;
@@ -27120,10 +27766,10 @@ export declare const workspaces_batch: z.ZodObject<{
27120
27766
  credential_id?: string | undefined;
27121
27767
  } | undefined;
27122
27768
  assa_abloy_vostio_metadata?: {
27769
+ key_id?: string | undefined;
27123
27770
  endpoint_id?: string | undefined;
27124
27771
  auto_join?: boolean | undefined;
27125
27772
  override_guest_acs_entrance_ids?: string[] | undefined;
27126
- key_id?: string | undefined;
27127
27773
  key_issuing_request_id?: string | undefined;
27128
27774
  door_names?: string[] | undefined;
27129
27775
  } | undefined;
@@ -27225,10 +27871,10 @@ export declare const workspaces_batch: z.ZodObject<{
27225
27871
  credential_id?: string | undefined;
27226
27872
  } | undefined;
27227
27873
  assa_abloy_vostio_metadata?: {
27874
+ key_id?: string | undefined;
27228
27875
  endpoint_id?: string | undefined;
27229
27876
  auto_join?: boolean | undefined;
27230
27877
  override_guest_acs_entrance_ids?: string[] | undefined;
27231
- key_id?: string | undefined;
27232
27878
  key_issuing_request_id?: string | undefined;
27233
27879
  door_names?: string[] | undefined;
27234
27880
  } | undefined;
@@ -27297,10 +27943,10 @@ export declare const workspaces_batch: z.ZodObject<{
27297
27943
  credential_id?: string | undefined;
27298
27944
  } | undefined;
27299
27945
  assa_abloy_vostio_metadata?: {
27946
+ key_id?: string | undefined;
27300
27947
  endpoint_id?: string | undefined;
27301
27948
  auto_join?: boolean | undefined;
27302
27949
  override_guest_acs_entrance_ids?: string[] | undefined;
27303
- key_id?: string | undefined;
27304
27950
  key_issuing_request_id?: string | undefined;
27305
27951
  door_names?: string[] | undefined;
27306
27952
  } | undefined;
@@ -27561,17 +28207,17 @@ export declare const workspaces_batch: z.ZodObject<{
27561
28207
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
27562
28208
  endpoint_id: z.ZodOptional<z.ZodString>;
27563
28209
  }, "strip", z.ZodTypeAny, {
28210
+ key_id?: string | undefined;
27564
28211
  endpoint_id?: string | undefined;
27565
28212
  auto_join?: boolean | undefined;
27566
28213
  override_guest_acs_entrance_ids?: string[] | undefined;
27567
- key_id?: string | undefined;
27568
28214
  key_issuing_request_id?: string | undefined;
27569
28215
  door_names?: string[] | undefined;
27570
28216
  }, {
28217
+ key_id?: string | undefined;
27571
28218
  endpoint_id?: string | undefined;
27572
28219
  auto_join?: boolean | undefined;
27573
28220
  override_guest_acs_entrance_ids?: string[] | undefined;
27574
- key_id?: string | undefined;
27575
28221
  key_issuing_request_id?: string | undefined;
27576
28222
  door_names?: string[] | undefined;
27577
28223
  }>>;
@@ -27629,10 +28275,10 @@ export declare const workspaces_batch: z.ZodObject<{
27629
28275
  credential_id?: string | undefined;
27630
28276
  } | undefined;
27631
28277
  assa_abloy_vostio_metadata?: {
28278
+ key_id?: string | undefined;
27632
28279
  endpoint_id?: string | undefined;
27633
28280
  auto_join?: boolean | undefined;
27634
28281
  override_guest_acs_entrance_ids?: string[] | undefined;
27635
- key_id?: string | undefined;
27636
28282
  key_issuing_request_id?: string | undefined;
27637
28283
  door_names?: string[] | undefined;
27638
28284
  } | undefined;
@@ -27701,10 +28347,10 @@ export declare const workspaces_batch: z.ZodObject<{
27701
28347
  credential_id?: string | undefined;
27702
28348
  } | undefined;
27703
28349
  assa_abloy_vostio_metadata?: {
28350
+ key_id?: string | undefined;
27704
28351
  endpoint_id?: string | undefined;
27705
28352
  auto_join?: boolean | undefined;
27706
28353
  override_guest_acs_entrance_ids?: string[] | undefined;
27707
- key_id?: string | undefined;
27708
28354
  key_issuing_request_id?: string | undefined;
27709
28355
  door_names?: string[] | undefined;
27710
28356
  } | undefined;
@@ -27870,17 +28516,17 @@ export declare const workspaces_batch: z.ZodObject<{
27870
28516
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
27871
28517
  endpoint_id: z.ZodOptional<z.ZodString>;
27872
28518
  }, "strip", z.ZodTypeAny, {
28519
+ key_id?: string | undefined;
27873
28520
  endpoint_id?: string | undefined;
27874
28521
  auto_join?: boolean | undefined;
27875
28522
  override_guest_acs_entrance_ids?: string[] | undefined;
27876
- key_id?: string | undefined;
27877
28523
  key_issuing_request_id?: string | undefined;
27878
28524
  door_names?: string[] | undefined;
27879
28525
  }, {
28526
+ key_id?: string | undefined;
27880
28527
  endpoint_id?: string | undefined;
27881
28528
  auto_join?: boolean | undefined;
27882
28529
  override_guest_acs_entrance_ids?: string[] | undefined;
27883
- key_id?: string | undefined;
27884
28530
  key_issuing_request_id?: string | undefined;
27885
28531
  door_names?: string[] | undefined;
27886
28532
  }>>;
@@ -27938,10 +28584,10 @@ export declare const workspaces_batch: z.ZodObject<{
27938
28584
  credential_id?: string | undefined;
27939
28585
  } | undefined;
27940
28586
  assa_abloy_vostio_metadata?: {
28587
+ key_id?: string | undefined;
27941
28588
  endpoint_id?: string | undefined;
27942
28589
  auto_join?: boolean | undefined;
27943
28590
  override_guest_acs_entrance_ids?: string[] | undefined;
27944
- key_id?: string | undefined;
27945
28591
  key_issuing_request_id?: string | undefined;
27946
28592
  door_names?: string[] | undefined;
27947
28593
  } | undefined;
@@ -28010,10 +28656,10 @@ export declare const workspaces_batch: z.ZodObject<{
28010
28656
  credential_id?: string | undefined;
28011
28657
  } | undefined;
28012
28658
  assa_abloy_vostio_metadata?: {
28659
+ key_id?: string | undefined;
28013
28660
  endpoint_id?: string | undefined;
28014
28661
  auto_join?: boolean | undefined;
28015
28662
  override_guest_acs_entrance_ids?: string[] | undefined;
28016
- key_id?: string | undefined;
28017
28663
  key_issuing_request_id?: string | undefined;
28018
28664
  door_names?: string[] | undefined;
28019
28665
  } | undefined;
@@ -28087,10 +28733,10 @@ export declare const workspaces_batch: z.ZodObject<{
28087
28733
  credential_id?: string | undefined;
28088
28734
  } | undefined;
28089
28735
  assa_abloy_vostio_metadata?: {
28736
+ key_id?: string | undefined;
28090
28737
  endpoint_id?: string | undefined;
28091
28738
  auto_join?: boolean | undefined;
28092
28739
  override_guest_acs_entrance_ids?: string[] | undefined;
28093
- key_id?: string | undefined;
28094
28740
  key_issuing_request_id?: string | undefined;
28095
28741
  door_names?: string[] | undefined;
28096
28742
  } | undefined;
@@ -28159,10 +28805,10 @@ export declare const workspaces_batch: z.ZodObject<{
28159
28805
  credential_id?: string | undefined;
28160
28806
  } | undefined;
28161
28807
  assa_abloy_vostio_metadata?: {
28808
+ key_id?: string | undefined;
28162
28809
  endpoint_id?: string | undefined;
28163
28810
  auto_join?: boolean | undefined;
28164
28811
  override_guest_acs_entrance_ids?: string[] | undefined;
28165
- key_id?: string | undefined;
28166
28812
  key_issuing_request_id?: string | undefined;
28167
28813
  door_names?: string[] | undefined;
28168
28814
  } | undefined;
@@ -28237,10 +28883,10 @@ export declare const workspaces_batch: z.ZodObject<{
28237
28883
  credential_id?: string | undefined;
28238
28884
  } | undefined;
28239
28885
  assa_abloy_vostio_metadata?: {
28886
+ key_id?: string | undefined;
28240
28887
  endpoint_id?: string | undefined;
28241
28888
  auto_join?: boolean | undefined;
28242
28889
  override_guest_acs_entrance_ids?: string[] | undefined;
28243
- key_id?: string | undefined;
28244
28890
  key_issuing_request_id?: string | undefined;
28245
28891
  door_names?: string[] | undefined;
28246
28892
  } | undefined;
@@ -28309,10 +28955,10 @@ export declare const workspaces_batch: z.ZodObject<{
28309
28955
  credential_id?: string | undefined;
28310
28956
  } | undefined;
28311
28957
  assa_abloy_vostio_metadata?: {
28958
+ key_id?: string | undefined;
28312
28959
  endpoint_id?: string | undefined;
28313
28960
  auto_join?: boolean | undefined;
28314
28961
  override_guest_acs_entrance_ids?: string[] | undefined;
28315
- key_id?: string | undefined;
28316
28962
  key_issuing_request_id?: string | undefined;
28317
28963
  door_names?: string[] | undefined;
28318
28964
  } | undefined;
@@ -30247,7 +30893,7 @@ export declare const workspaces_batch: z.ZodObject<{
30247
30893
  }>, "many">>;
30248
30894
  unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
30249
30895
  device_id: z.ZodString;
30250
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
30896
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
30251
30897
  nickname: z.ZodOptional<z.ZodString>;
30252
30898
  display_name: z.ZodString;
30253
30899
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -31208,11 +31854,68 @@ export declare const workspaces_batch: z.ZodObject<{
31208
31854
  product_type: string;
31209
31855
  }>>;
31210
31856
  keynest_metadata: z.ZodOptional<z.ZodObject<{
31857
+ key_id: z.ZodOptional<z.ZodString>;
31211
31858
  device_name: z.ZodOptional<z.ZodString>;
31859
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31860
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31861
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31862
+ subscription_plan: z.ZodOptional<z.ZodString>;
31863
+ status_type: z.ZodOptional<z.ZodString>;
31864
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
31865
+ last_movement: z.ZodOptional<z.ZodString>;
31866
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31867
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31868
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31869
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31870
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31871
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31872
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31873
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31874
+ default_office_id: z.ZodOptional<z.ZodNumber>;
31875
+ fob_id: z.ZodOptional<z.ZodNumber>;
31876
+ has_photo: z.ZodOptional<z.ZodBoolean>;
31212
31877
  }, "strip", z.ZodTypeAny, {
31213
31878
  device_name?: string | undefined;
31879
+ key_id?: string | undefined;
31880
+ property_id?: string | null | undefined;
31881
+ property_postcode?: string | null | undefined;
31882
+ key_notes?: string | null | undefined;
31883
+ subscription_plan?: string | undefined;
31884
+ status_type?: string | undefined;
31885
+ current_or_last_store_id?: number | undefined;
31886
+ last_movement?: string | undefined;
31887
+ address?: string | null | undefined;
31888
+ current_status?: string | null | undefined;
31889
+ current_user_name?: string | null | undefined;
31890
+ current_user_email?: string | null | undefined;
31891
+ current_user_phone_number?: string | null | undefined;
31892
+ current_user_company?: string | null | undefined;
31893
+ handover_method?: string | null | undefined;
31894
+ keynest_app_user?: string | null | undefined;
31895
+ default_office_id?: number | undefined;
31896
+ fob_id?: number | undefined;
31897
+ has_photo?: boolean | undefined;
31214
31898
  }, {
31215
31899
  device_name?: string | undefined;
31900
+ key_id?: string | undefined;
31901
+ property_id?: string | null | undefined;
31902
+ property_postcode?: string | null | undefined;
31903
+ key_notes?: string | null | undefined;
31904
+ subscription_plan?: string | undefined;
31905
+ status_type?: string | undefined;
31906
+ current_or_last_store_id?: number | undefined;
31907
+ last_movement?: string | undefined;
31908
+ address?: string | null | undefined;
31909
+ current_status?: string | null | undefined;
31910
+ current_user_name?: string | null | undefined;
31911
+ current_user_email?: string | null | undefined;
31912
+ current_user_phone_number?: string | null | undefined;
31913
+ current_user_company?: string | null | undefined;
31914
+ handover_method?: string | null | undefined;
31915
+ keynest_app_user?: string | null | undefined;
31916
+ default_office_id?: number | undefined;
31917
+ fob_id?: number | undefined;
31918
+ has_photo?: boolean | undefined;
31216
31919
  }>>;
31217
31920
  }, "strip", z.ZodTypeAny, {
31218
31921
  ecobee_metadata?: {
@@ -31450,6 +32153,25 @@ export declare const workspaces_batch: z.ZodObject<{
31450
32153
  } | undefined;
31451
32154
  keynest_metadata?: {
31452
32155
  device_name?: string | undefined;
32156
+ key_id?: string | undefined;
32157
+ property_id?: string | null | undefined;
32158
+ property_postcode?: string | null | undefined;
32159
+ key_notes?: string | null | undefined;
32160
+ subscription_plan?: string | undefined;
32161
+ status_type?: string | undefined;
32162
+ current_or_last_store_id?: number | undefined;
32163
+ last_movement?: string | undefined;
32164
+ address?: string | null | undefined;
32165
+ current_status?: string | null | undefined;
32166
+ current_user_name?: string | null | undefined;
32167
+ current_user_email?: string | null | undefined;
32168
+ current_user_phone_number?: string | null | undefined;
32169
+ current_user_company?: string | null | undefined;
32170
+ handover_method?: string | null | undefined;
32171
+ keynest_app_user?: string | null | undefined;
32172
+ default_office_id?: number | undefined;
32173
+ fob_id?: number | undefined;
32174
+ has_photo?: boolean | undefined;
31453
32175
  } | undefined;
31454
32176
  }, {
31455
32177
  ecobee_metadata?: {
@@ -31687,6 +32409,25 @@ export declare const workspaces_batch: z.ZodObject<{
31687
32409
  } | undefined;
31688
32410
  keynest_metadata?: {
31689
32411
  device_name?: string | undefined;
32412
+ key_id?: string | undefined;
32413
+ property_id?: string | null | undefined;
32414
+ property_postcode?: string | null | undefined;
32415
+ key_notes?: string | null | undefined;
32416
+ subscription_plan?: string | undefined;
32417
+ status_type?: string | undefined;
32418
+ current_or_last_store_id?: number | undefined;
32419
+ last_movement?: string | undefined;
32420
+ address?: string | null | undefined;
32421
+ current_status?: string | null | undefined;
32422
+ current_user_name?: string | null | undefined;
32423
+ current_user_email?: string | null | undefined;
32424
+ current_user_phone_number?: string | null | undefined;
32425
+ current_user_company?: string | null | undefined;
32426
+ handover_method?: string | null | undefined;
32427
+ keynest_app_user?: string | null | undefined;
32428
+ default_office_id?: number | undefined;
32429
+ fob_id?: number | undefined;
32430
+ has_photo?: boolean | undefined;
31690
32431
  } | undefined;
31691
32432
  }>>, z.ZodIntersection<z.ZodObject<{
31692
32433
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -33332,7 +34073,7 @@ export declare const workspaces_batch: z.ZodObject<{
33332
34073
  warning_code: "unknown_issue_with_phone";
33333
34074
  })[];
33334
34075
  custom_metadata: Record<string, string | boolean>;
33335
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
34076
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
33336
34077
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
33337
34078
  properties: {
33338
34079
  name: string;
@@ -33564,7 +34305,7 @@ export declare const workspaces_batch: z.ZodObject<{
33564
34305
  warning_code: "unknown_issue_with_phone";
33565
34306
  })[];
33566
34307
  custom_metadata: Record<string, string | boolean>;
33567
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
34308
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
33568
34309
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
33569
34310
  properties: {
33570
34311
  name: string;
@@ -40574,7 +41315,7 @@ export declare const workspaces_batch: z.ZodObject<{
40574
41315
  warning_code: "unknown_issue_with_phone";
40575
41316
  })[];
40576
41317
  custom_metadata: Record<string, string | boolean>;
40577
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
41318
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
40578
41319
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
40579
41320
  properties: {
40580
41321
  name: string;
@@ -40860,6 +41601,25 @@ export declare const workspaces_batch: z.ZodObject<{
40860
41601
  } | undefined;
40861
41602
  keynest_metadata?: {
40862
41603
  device_name?: string | undefined;
41604
+ key_id?: string | undefined;
41605
+ property_id?: string | null | undefined;
41606
+ property_postcode?: string | null | undefined;
41607
+ key_notes?: string | null | undefined;
41608
+ subscription_plan?: string | undefined;
41609
+ status_type?: string | undefined;
41610
+ current_or_last_store_id?: number | undefined;
41611
+ last_movement?: string | undefined;
41612
+ address?: string | null | undefined;
41613
+ current_status?: string | null | undefined;
41614
+ current_user_name?: string | null | undefined;
41615
+ current_user_email?: string | null | undefined;
41616
+ current_user_phone_number?: string | null | undefined;
41617
+ current_user_company?: string | null | undefined;
41618
+ handover_method?: string | null | undefined;
41619
+ keynest_app_user?: string | null | undefined;
41620
+ default_office_id?: number | undefined;
41621
+ fob_id?: number | undefined;
41622
+ has_photo?: boolean | undefined;
40863
41623
  } | undefined;
40864
41624
  } & {
40865
41625
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -41524,10 +42284,10 @@ export declare const workspaces_batch: z.ZodObject<{
41524
42284
  credential_id?: string | undefined;
41525
42285
  } | undefined;
41526
42286
  assa_abloy_vostio_metadata?: {
42287
+ key_id?: string | undefined;
41527
42288
  endpoint_id?: string | undefined;
41528
42289
  auto_join?: boolean | undefined;
41529
42290
  override_guest_acs_entrance_ids?: string[] | undefined;
41530
- key_id?: string | undefined;
41531
42291
  key_issuing_request_id?: string | undefined;
41532
42292
  door_names?: string[] | undefined;
41533
42293
  } | undefined;
@@ -41597,10 +42357,10 @@ export declare const workspaces_batch: z.ZodObject<{
41597
42357
  credential_id?: string | undefined;
41598
42358
  } | undefined;
41599
42359
  assa_abloy_vostio_metadata?: {
42360
+ key_id?: string | undefined;
41600
42361
  endpoint_id?: string | undefined;
41601
42362
  auto_join?: boolean | undefined;
41602
42363
  override_guest_acs_entrance_ids?: string[] | undefined;
41603
- key_id?: string | undefined;
41604
42364
  key_issuing_request_id?: string | undefined;
41605
42365
  door_names?: string[] | undefined;
41606
42366
  } | undefined;
@@ -41856,10 +42616,10 @@ export declare const workspaces_batch: z.ZodObject<{
41856
42616
  credential_id?: string | undefined;
41857
42617
  } | undefined;
41858
42618
  assa_abloy_vostio_metadata?: {
42619
+ key_id?: string | undefined;
41859
42620
  endpoint_id?: string | undefined;
41860
42621
  auto_join?: boolean | undefined;
41861
42622
  override_guest_acs_entrance_ids?: string[] | undefined;
41862
- key_id?: string | undefined;
41863
42623
  key_issuing_request_id?: string | undefined;
41864
42624
  door_names?: string[] | undefined;
41865
42625
  } | undefined;
@@ -41928,10 +42688,10 @@ export declare const workspaces_batch: z.ZodObject<{
41928
42688
  credential_id?: string | undefined;
41929
42689
  } | undefined;
41930
42690
  assa_abloy_vostio_metadata?: {
42691
+ key_id?: string | undefined;
41931
42692
  endpoint_id?: string | undefined;
41932
42693
  auto_join?: boolean | undefined;
41933
42694
  override_guest_acs_entrance_ids?: string[] | undefined;
41934
- key_id?: string | undefined;
41935
42695
  key_issuing_request_id?: string | undefined;
41936
42696
  door_names?: string[] | undefined;
41937
42697
  } | undefined;
@@ -42122,10 +42882,10 @@ export declare const workspaces_batch: z.ZodObject<{
42122
42882
  credential_id?: string | undefined;
42123
42883
  } | undefined;
42124
42884
  assa_abloy_vostio_metadata?: {
42885
+ key_id?: string | undefined;
42125
42886
  endpoint_id?: string | undefined;
42126
42887
  auto_join?: boolean | undefined;
42127
42888
  override_guest_acs_entrance_ids?: string[] | undefined;
42128
- key_id?: string | undefined;
42129
42889
  key_issuing_request_id?: string | undefined;
42130
42890
  door_names?: string[] | undefined;
42131
42891
  } | undefined;
@@ -42194,10 +42954,10 @@ export declare const workspaces_batch: z.ZodObject<{
42194
42954
  credential_id?: string | undefined;
42195
42955
  } | undefined;
42196
42956
  assa_abloy_vostio_metadata?: {
42957
+ key_id?: string | undefined;
42197
42958
  endpoint_id?: string | undefined;
42198
42959
  auto_join?: boolean | undefined;
42199
42960
  override_guest_acs_entrance_ids?: string[] | undefined;
42200
- key_id?: string | undefined;
42201
42961
  key_issuing_request_id?: string | undefined;
42202
42962
  door_names?: string[] | undefined;
42203
42963
  } | undefined;
@@ -42674,7 +43434,7 @@ export declare const workspaces_batch: z.ZodObject<{
42674
43434
  warning_code: "unknown_issue_with_phone";
42675
43435
  })[];
42676
43436
  custom_metadata: Record<string, string | boolean>;
42677
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
43437
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
42678
43438
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
42679
43439
  properties: {
42680
43440
  name: string;
@@ -44509,7 +45269,7 @@ export declare const workspaces_batch: z.ZodObject<{
44509
45269
  warning_code: "unknown_issue_with_phone";
44510
45270
  })[];
44511
45271
  custom_metadata: Record<string, string | boolean>;
44512
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
45272
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
44513
45273
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
44514
45274
  properties: {
44515
45275
  name: string;
@@ -44795,6 +45555,25 @@ export declare const workspaces_batch: z.ZodObject<{
44795
45555
  } | undefined;
44796
45556
  keynest_metadata?: {
44797
45557
  device_name?: string | undefined;
45558
+ key_id?: string | undefined;
45559
+ property_id?: string | null | undefined;
45560
+ property_postcode?: string | null | undefined;
45561
+ key_notes?: string | null | undefined;
45562
+ subscription_plan?: string | undefined;
45563
+ status_type?: string | undefined;
45564
+ current_or_last_store_id?: number | undefined;
45565
+ last_movement?: string | undefined;
45566
+ address?: string | null | undefined;
45567
+ current_status?: string | null | undefined;
45568
+ current_user_name?: string | null | undefined;
45569
+ current_user_email?: string | null | undefined;
45570
+ current_user_phone_number?: string | null | undefined;
45571
+ current_user_company?: string | null | undefined;
45572
+ handover_method?: string | null | undefined;
45573
+ keynest_app_user?: string | null | undefined;
45574
+ default_office_id?: number | undefined;
45575
+ fob_id?: number | undefined;
45576
+ has_photo?: boolean | undefined;
44798
45577
  } | undefined;
44799
45578
  } & {
44800
45579
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -45459,10 +46238,10 @@ export declare const workspaces_batch: z.ZodObject<{
45459
46238
  credential_id?: string | undefined;
45460
46239
  } | undefined;
45461
46240
  assa_abloy_vostio_metadata?: {
46241
+ key_id?: string | undefined;
45462
46242
  endpoint_id?: string | undefined;
45463
46243
  auto_join?: boolean | undefined;
45464
46244
  override_guest_acs_entrance_ids?: string[] | undefined;
45465
- key_id?: string | undefined;
45466
46245
  key_issuing_request_id?: string | undefined;
45467
46246
  door_names?: string[] | undefined;
45468
46247
  } | undefined;
@@ -45532,10 +46311,10 @@ export declare const workspaces_batch: z.ZodObject<{
45532
46311
  credential_id?: string | undefined;
45533
46312
  } | undefined;
45534
46313
  assa_abloy_vostio_metadata?: {
46314
+ key_id?: string | undefined;
45535
46315
  endpoint_id?: string | undefined;
45536
46316
  auto_join?: boolean | undefined;
45537
46317
  override_guest_acs_entrance_ids?: string[] | undefined;
45538
- key_id?: string | undefined;
45539
46318
  key_issuing_request_id?: string | undefined;
45540
46319
  door_names?: string[] | undefined;
45541
46320
  } | undefined;
@@ -45791,10 +46570,10 @@ export declare const workspaces_batch: z.ZodObject<{
45791
46570
  credential_id?: string | undefined;
45792
46571
  } | undefined;
45793
46572
  assa_abloy_vostio_metadata?: {
46573
+ key_id?: string | undefined;
45794
46574
  endpoint_id?: string | undefined;
45795
46575
  auto_join?: boolean | undefined;
45796
46576
  override_guest_acs_entrance_ids?: string[] | undefined;
45797
- key_id?: string | undefined;
45798
46577
  key_issuing_request_id?: string | undefined;
45799
46578
  door_names?: string[] | undefined;
45800
46579
  } | undefined;
@@ -45863,10 +46642,10 @@ export declare const workspaces_batch: z.ZodObject<{
45863
46642
  credential_id?: string | undefined;
45864
46643
  } | undefined;
45865
46644
  assa_abloy_vostio_metadata?: {
46645
+ key_id?: string | undefined;
45866
46646
  endpoint_id?: string | undefined;
45867
46647
  auto_join?: boolean | undefined;
45868
46648
  override_guest_acs_entrance_ids?: string[] | undefined;
45869
- key_id?: string | undefined;
45870
46649
  key_issuing_request_id?: string | undefined;
45871
46650
  door_names?: string[] | undefined;
45872
46651
  } | undefined;
@@ -46057,10 +46836,10 @@ export declare const workspaces_batch: z.ZodObject<{
46057
46836
  credential_id?: string | undefined;
46058
46837
  } | undefined;
46059
46838
  assa_abloy_vostio_metadata?: {
46839
+ key_id?: string | undefined;
46060
46840
  endpoint_id?: string | undefined;
46061
46841
  auto_join?: boolean | undefined;
46062
46842
  override_guest_acs_entrance_ids?: string[] | undefined;
46063
- key_id?: string | undefined;
46064
46843
  key_issuing_request_id?: string | undefined;
46065
46844
  door_names?: string[] | undefined;
46066
46845
  } | undefined;
@@ -46129,10 +46908,10 @@ export declare const workspaces_batch: z.ZodObject<{
46129
46908
  credential_id?: string | undefined;
46130
46909
  } | undefined;
46131
46910
  assa_abloy_vostio_metadata?: {
46911
+ key_id?: string | undefined;
46132
46912
  endpoint_id?: string | undefined;
46133
46913
  auto_join?: boolean | undefined;
46134
46914
  override_guest_acs_entrance_ids?: string[] | undefined;
46135
- key_id?: string | undefined;
46136
46915
  key_issuing_request_id?: string | undefined;
46137
46916
  door_names?: string[] | undefined;
46138
46917
  } | undefined;
@@ -46609,7 +47388,7 @@ export declare const workspaces_batch: z.ZodObject<{
46609
47388
  warning_code: "unknown_issue_with_phone";
46610
47389
  })[];
46611
47390
  custom_metadata: Record<string, string | boolean>;
46612
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
47391
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
46613
47392
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
46614
47393
  properties: {
46615
47394
  name: string;
@@ -48438,7 +49217,7 @@ export declare const batch: z.ZodObject<{
48438
49217
  }>, "many">>;
48439
49218
  devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
48440
49219
  device_id: z.ZodString;
48441
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
49220
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
48442
49221
  nickname: z.ZodOptional<z.ZodString>;
48443
49222
  display_name: z.ZodString;
48444
49223
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -49399,11 +50178,68 @@ export declare const batch: z.ZodObject<{
49399
50178
  product_type: string;
49400
50179
  }>>;
49401
50180
  keynest_metadata: z.ZodOptional<z.ZodObject<{
50181
+ key_id: z.ZodOptional<z.ZodString>;
49402
50182
  device_name: z.ZodOptional<z.ZodString>;
50183
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50184
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50185
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50186
+ subscription_plan: z.ZodOptional<z.ZodString>;
50187
+ status_type: z.ZodOptional<z.ZodString>;
50188
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
50189
+ last_movement: z.ZodOptional<z.ZodString>;
50190
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50191
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50192
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50193
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50194
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50195
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50196
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50197
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50198
+ default_office_id: z.ZodOptional<z.ZodNumber>;
50199
+ fob_id: z.ZodOptional<z.ZodNumber>;
50200
+ has_photo: z.ZodOptional<z.ZodBoolean>;
49403
50201
  }, "strip", z.ZodTypeAny, {
49404
50202
  device_name?: string | undefined;
50203
+ key_id?: string | undefined;
50204
+ property_id?: string | null | undefined;
50205
+ property_postcode?: string | null | undefined;
50206
+ key_notes?: string | null | undefined;
50207
+ subscription_plan?: string | undefined;
50208
+ status_type?: string | undefined;
50209
+ current_or_last_store_id?: number | undefined;
50210
+ last_movement?: string | undefined;
50211
+ address?: string | null | undefined;
50212
+ current_status?: string | null | undefined;
50213
+ current_user_name?: string | null | undefined;
50214
+ current_user_email?: string | null | undefined;
50215
+ current_user_phone_number?: string | null | undefined;
50216
+ current_user_company?: string | null | undefined;
50217
+ handover_method?: string | null | undefined;
50218
+ keynest_app_user?: string | null | undefined;
50219
+ default_office_id?: number | undefined;
50220
+ fob_id?: number | undefined;
50221
+ has_photo?: boolean | undefined;
49405
50222
  }, {
49406
50223
  device_name?: string | undefined;
50224
+ key_id?: string | undefined;
50225
+ property_id?: string | null | undefined;
50226
+ property_postcode?: string | null | undefined;
50227
+ key_notes?: string | null | undefined;
50228
+ subscription_plan?: string | undefined;
50229
+ status_type?: string | undefined;
50230
+ current_or_last_store_id?: number | undefined;
50231
+ last_movement?: string | undefined;
50232
+ address?: string | null | undefined;
50233
+ current_status?: string | null | undefined;
50234
+ current_user_name?: string | null | undefined;
50235
+ current_user_email?: string | null | undefined;
50236
+ current_user_phone_number?: string | null | undefined;
50237
+ current_user_company?: string | null | undefined;
50238
+ handover_method?: string | null | undefined;
50239
+ keynest_app_user?: string | null | undefined;
50240
+ default_office_id?: number | undefined;
50241
+ fob_id?: number | undefined;
50242
+ has_photo?: boolean | undefined;
49407
50243
  }>>;
49408
50244
  }, "strip", z.ZodTypeAny, {
49409
50245
  ecobee_metadata?: {
@@ -49641,6 +50477,25 @@ export declare const batch: z.ZodObject<{
49641
50477
  } | undefined;
49642
50478
  keynest_metadata?: {
49643
50479
  device_name?: string | undefined;
50480
+ key_id?: string | undefined;
50481
+ property_id?: string | null | undefined;
50482
+ property_postcode?: string | null | undefined;
50483
+ key_notes?: string | null | undefined;
50484
+ subscription_plan?: string | undefined;
50485
+ status_type?: string | undefined;
50486
+ current_or_last_store_id?: number | undefined;
50487
+ last_movement?: string | undefined;
50488
+ address?: string | null | undefined;
50489
+ current_status?: string | null | undefined;
50490
+ current_user_name?: string | null | undefined;
50491
+ current_user_email?: string | null | undefined;
50492
+ current_user_phone_number?: string | null | undefined;
50493
+ current_user_company?: string | null | undefined;
50494
+ handover_method?: string | null | undefined;
50495
+ keynest_app_user?: string | null | undefined;
50496
+ default_office_id?: number | undefined;
50497
+ fob_id?: number | undefined;
50498
+ has_photo?: boolean | undefined;
49644
50499
  } | undefined;
49645
50500
  }, {
49646
50501
  ecobee_metadata?: {
@@ -49878,6 +50733,25 @@ export declare const batch: z.ZodObject<{
49878
50733
  } | undefined;
49879
50734
  keynest_metadata?: {
49880
50735
  device_name?: string | undefined;
50736
+ key_id?: string | undefined;
50737
+ property_id?: string | null | undefined;
50738
+ property_postcode?: string | null | undefined;
50739
+ key_notes?: string | null | undefined;
50740
+ subscription_plan?: string | undefined;
50741
+ status_type?: string | undefined;
50742
+ current_or_last_store_id?: number | undefined;
50743
+ last_movement?: string | undefined;
50744
+ address?: string | null | undefined;
50745
+ current_status?: string | null | undefined;
50746
+ current_user_name?: string | null | undefined;
50747
+ current_user_email?: string | null | undefined;
50748
+ current_user_phone_number?: string | null | undefined;
50749
+ current_user_company?: string | null | undefined;
50750
+ handover_method?: string | null | undefined;
50751
+ keynest_app_user?: string | null | undefined;
50752
+ default_office_id?: number | undefined;
50753
+ fob_id?: number | undefined;
50754
+ has_photo?: boolean | undefined;
49881
50755
  } | undefined;
49882
50756
  }>>, z.ZodIntersection<z.ZodObject<{
49883
50757
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -51371,7 +52245,7 @@ export declare const batch: z.ZodObject<{
51371
52245
  warning_code: "unknown_issue_with_phone";
51372
52246
  })[];
51373
52247
  custom_metadata: Record<string, string | boolean>;
51374
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
52248
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
51375
52249
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
51376
52250
  properties: {
51377
52251
  name: string;
@@ -51657,6 +52531,25 @@ export declare const batch: z.ZodObject<{
51657
52531
  } | undefined;
51658
52532
  keynest_metadata?: {
51659
52533
  device_name?: string | undefined;
52534
+ key_id?: string | undefined;
52535
+ property_id?: string | null | undefined;
52536
+ property_postcode?: string | null | undefined;
52537
+ key_notes?: string | null | undefined;
52538
+ subscription_plan?: string | undefined;
52539
+ status_type?: string | undefined;
52540
+ current_or_last_store_id?: number | undefined;
52541
+ last_movement?: string | undefined;
52542
+ address?: string | null | undefined;
52543
+ current_status?: string | null | undefined;
52544
+ current_user_name?: string | null | undefined;
52545
+ current_user_email?: string | null | undefined;
52546
+ current_user_phone_number?: string | null | undefined;
52547
+ current_user_company?: string | null | undefined;
52548
+ handover_method?: string | null | undefined;
52549
+ keynest_app_user?: string | null | undefined;
52550
+ default_office_id?: number | undefined;
52551
+ fob_id?: number | undefined;
52552
+ has_photo?: boolean | undefined;
51660
52553
  } | undefined;
51661
52554
  } & {
51662
52555
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -52012,7 +52905,7 @@ export declare const batch: z.ZodObject<{
52012
52905
  warning_code: "unknown_issue_with_phone";
52013
52906
  })[];
52014
52907
  custom_metadata: Record<string, string | boolean>;
52015
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
52908
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
52016
52909
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
52017
52910
  properties: {
52018
52911
  name: string;
@@ -52298,6 +53191,25 @@ export declare const batch: z.ZodObject<{
52298
53191
  } | undefined;
52299
53192
  keynest_metadata?: {
52300
53193
  device_name?: string | undefined;
53194
+ key_id?: string | undefined;
53195
+ property_id?: string | null | undefined;
53196
+ property_postcode?: string | null | undefined;
53197
+ key_notes?: string | null | undefined;
53198
+ subscription_plan?: string | undefined;
53199
+ status_type?: string | undefined;
53200
+ current_or_last_store_id?: number | undefined;
53201
+ last_movement?: string | undefined;
53202
+ address?: string | null | undefined;
53203
+ current_status?: string | null | undefined;
53204
+ current_user_name?: string | null | undefined;
53205
+ current_user_email?: string | null | undefined;
53206
+ current_user_phone_number?: string | null | undefined;
53207
+ current_user_company?: string | null | undefined;
53208
+ handover_method?: string | null | undefined;
53209
+ keynest_app_user?: string | null | undefined;
53210
+ default_office_id?: number | undefined;
53211
+ fob_id?: number | undefined;
53212
+ has_photo?: boolean | undefined;
52301
53213
  } | undefined;
52302
53214
  } & {
52303
53215
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -53941,17 +54853,17 @@ export declare const batch: z.ZodObject<{
53941
54853
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53942
54854
  endpoint_id: z.ZodOptional<z.ZodString>;
53943
54855
  }, "strip", z.ZodTypeAny, {
54856
+ key_id?: string | undefined;
53944
54857
  endpoint_id?: string | undefined;
53945
54858
  auto_join?: boolean | undefined;
53946
54859
  override_guest_acs_entrance_ids?: string[] | undefined;
53947
- key_id?: string | undefined;
53948
54860
  key_issuing_request_id?: string | undefined;
53949
54861
  door_names?: string[] | undefined;
53950
54862
  }, {
54863
+ key_id?: string | undefined;
53951
54864
  endpoint_id?: string | undefined;
53952
54865
  auto_join?: boolean | undefined;
53953
54866
  override_guest_acs_entrance_ids?: string[] | undefined;
53954
- key_id?: string | undefined;
53955
54867
  key_issuing_request_id?: string | undefined;
53956
54868
  door_names?: string[] | undefined;
53957
54869
  }>>;
@@ -54009,10 +54921,10 @@ export declare const batch: z.ZodObject<{
54009
54921
  credential_id?: string | undefined;
54010
54922
  } | undefined;
54011
54923
  assa_abloy_vostio_metadata?: {
54924
+ key_id?: string | undefined;
54012
54925
  endpoint_id?: string | undefined;
54013
54926
  auto_join?: boolean | undefined;
54014
54927
  override_guest_acs_entrance_ids?: string[] | undefined;
54015
- key_id?: string | undefined;
54016
54928
  key_issuing_request_id?: string | undefined;
54017
54929
  door_names?: string[] | undefined;
54018
54930
  } | undefined;
@@ -54081,10 +54993,10 @@ export declare const batch: z.ZodObject<{
54081
54993
  credential_id?: string | undefined;
54082
54994
  } | undefined;
54083
54995
  assa_abloy_vostio_metadata?: {
54996
+ key_id?: string | undefined;
54084
54997
  endpoint_id?: string | undefined;
54085
54998
  auto_join?: boolean | undefined;
54086
54999
  override_guest_acs_entrance_ids?: string[] | undefined;
54087
- key_id?: string | undefined;
54088
55000
  key_issuing_request_id?: string | undefined;
54089
55001
  door_names?: string[] | undefined;
54090
55002
  } | undefined;
@@ -54251,17 +55163,17 @@ export declare const batch: z.ZodObject<{
54251
55163
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
54252
55164
  endpoint_id: z.ZodOptional<z.ZodString>;
54253
55165
  }, "strip", z.ZodTypeAny, {
55166
+ key_id?: string | undefined;
54254
55167
  endpoint_id?: string | undefined;
54255
55168
  auto_join?: boolean | undefined;
54256
55169
  override_guest_acs_entrance_ids?: string[] | undefined;
54257
- key_id?: string | undefined;
54258
55170
  key_issuing_request_id?: string | undefined;
54259
55171
  door_names?: string[] | undefined;
54260
55172
  }, {
55173
+ key_id?: string | undefined;
54261
55174
  endpoint_id?: string | undefined;
54262
55175
  auto_join?: boolean | undefined;
54263
55176
  override_guest_acs_entrance_ids?: string[] | undefined;
54264
- key_id?: string | undefined;
54265
55177
  key_issuing_request_id?: string | undefined;
54266
55178
  door_names?: string[] | undefined;
54267
55179
  }>>;
@@ -54319,10 +55231,10 @@ export declare const batch: z.ZodObject<{
54319
55231
  credential_id?: string | undefined;
54320
55232
  } | undefined;
54321
55233
  assa_abloy_vostio_metadata?: {
55234
+ key_id?: string | undefined;
54322
55235
  endpoint_id?: string | undefined;
54323
55236
  auto_join?: boolean | undefined;
54324
55237
  override_guest_acs_entrance_ids?: string[] | undefined;
54325
- key_id?: string | undefined;
54326
55238
  key_issuing_request_id?: string | undefined;
54327
55239
  door_names?: string[] | undefined;
54328
55240
  } | undefined;
@@ -54391,10 +55303,10 @@ export declare const batch: z.ZodObject<{
54391
55303
  credential_id?: string | undefined;
54392
55304
  } | undefined;
54393
55305
  assa_abloy_vostio_metadata?: {
55306
+ key_id?: string | undefined;
54394
55307
  endpoint_id?: string | undefined;
54395
55308
  auto_join?: boolean | undefined;
54396
55309
  override_guest_acs_entrance_ids?: string[] | undefined;
54397
- key_id?: string | undefined;
54398
55310
  key_issuing_request_id?: string | undefined;
54399
55311
  door_names?: string[] | undefined;
54400
55312
  } | undefined;
@@ -54826,17 +55738,17 @@ export declare const batch: z.ZodObject<{
54826
55738
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
54827
55739
  endpoint_id: z.ZodOptional<z.ZodString>;
54828
55740
  }, "strip", z.ZodTypeAny, {
55741
+ key_id?: string | undefined;
54829
55742
  endpoint_id?: string | undefined;
54830
55743
  auto_join?: boolean | undefined;
54831
55744
  override_guest_acs_entrance_ids?: string[] | undefined;
54832
- key_id?: string | undefined;
54833
55745
  key_issuing_request_id?: string | undefined;
54834
55746
  door_names?: string[] | undefined;
54835
55747
  }, {
55748
+ key_id?: string | undefined;
54836
55749
  endpoint_id?: string | undefined;
54837
55750
  auto_join?: boolean | undefined;
54838
55751
  override_guest_acs_entrance_ids?: string[] | undefined;
54839
- key_id?: string | undefined;
54840
55752
  key_issuing_request_id?: string | undefined;
54841
55753
  door_names?: string[] | undefined;
54842
55754
  }>>;
@@ -54894,10 +55806,10 @@ export declare const batch: z.ZodObject<{
54894
55806
  credential_id?: string | undefined;
54895
55807
  } | undefined;
54896
55808
  assa_abloy_vostio_metadata?: {
55809
+ key_id?: string | undefined;
54897
55810
  endpoint_id?: string | undefined;
54898
55811
  auto_join?: boolean | undefined;
54899
55812
  override_guest_acs_entrance_ids?: string[] | undefined;
54900
- key_id?: string | undefined;
54901
55813
  key_issuing_request_id?: string | undefined;
54902
55814
  door_names?: string[] | undefined;
54903
55815
  } | undefined;
@@ -54966,10 +55878,10 @@ export declare const batch: z.ZodObject<{
54966
55878
  credential_id?: string | undefined;
54967
55879
  } | undefined;
54968
55880
  assa_abloy_vostio_metadata?: {
55881
+ key_id?: string | undefined;
54969
55882
  endpoint_id?: string | undefined;
54970
55883
  auto_join?: boolean | undefined;
54971
55884
  override_guest_acs_entrance_ids?: string[] | undefined;
54972
- key_id?: string | undefined;
54973
55885
  key_issuing_request_id?: string | undefined;
54974
55886
  door_names?: string[] | undefined;
54975
55887
  } | undefined;
@@ -55135,17 +56047,17 @@ export declare const batch: z.ZodObject<{
55135
56047
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
55136
56048
  endpoint_id: z.ZodOptional<z.ZodString>;
55137
56049
  }, "strip", z.ZodTypeAny, {
56050
+ key_id?: string | undefined;
55138
56051
  endpoint_id?: string | undefined;
55139
56052
  auto_join?: boolean | undefined;
55140
56053
  override_guest_acs_entrance_ids?: string[] | undefined;
55141
- key_id?: string | undefined;
55142
56054
  key_issuing_request_id?: string | undefined;
55143
56055
  door_names?: string[] | undefined;
55144
56056
  }, {
56057
+ key_id?: string | undefined;
55145
56058
  endpoint_id?: string | undefined;
55146
56059
  auto_join?: boolean | undefined;
55147
56060
  override_guest_acs_entrance_ids?: string[] | undefined;
55148
- key_id?: string | undefined;
55149
56061
  key_issuing_request_id?: string | undefined;
55150
56062
  door_names?: string[] | undefined;
55151
56063
  }>>;
@@ -55203,10 +56115,10 @@ export declare const batch: z.ZodObject<{
55203
56115
  credential_id?: string | undefined;
55204
56116
  } | undefined;
55205
56117
  assa_abloy_vostio_metadata?: {
56118
+ key_id?: string | undefined;
55206
56119
  endpoint_id?: string | undefined;
55207
56120
  auto_join?: boolean | undefined;
55208
56121
  override_guest_acs_entrance_ids?: string[] | undefined;
55209
- key_id?: string | undefined;
55210
56122
  key_issuing_request_id?: string | undefined;
55211
56123
  door_names?: string[] | undefined;
55212
56124
  } | undefined;
@@ -55275,10 +56187,10 @@ export declare const batch: z.ZodObject<{
55275
56187
  credential_id?: string | undefined;
55276
56188
  } | undefined;
55277
56189
  assa_abloy_vostio_metadata?: {
56190
+ key_id?: string | undefined;
55278
56191
  endpoint_id?: string | undefined;
55279
56192
  auto_join?: boolean | undefined;
55280
56193
  override_guest_acs_entrance_ids?: string[] | undefined;
55281
- key_id?: string | undefined;
55282
56194
  key_issuing_request_id?: string | undefined;
55283
56195
  door_names?: string[] | undefined;
55284
56196
  } | undefined;
@@ -55384,10 +56296,10 @@ export declare const batch: z.ZodObject<{
55384
56296
  credential_id?: string | undefined;
55385
56297
  } | undefined;
55386
56298
  assa_abloy_vostio_metadata?: {
56299
+ key_id?: string | undefined;
55387
56300
  endpoint_id?: string | undefined;
55388
56301
  auto_join?: boolean | undefined;
55389
56302
  override_guest_acs_entrance_ids?: string[] | undefined;
55390
- key_id?: string | undefined;
55391
56303
  key_issuing_request_id?: string | undefined;
55392
56304
  door_names?: string[] | undefined;
55393
56305
  } | undefined;
@@ -55456,10 +56368,10 @@ export declare const batch: z.ZodObject<{
55456
56368
  credential_id?: string | undefined;
55457
56369
  } | undefined;
55458
56370
  assa_abloy_vostio_metadata?: {
56371
+ key_id?: string | undefined;
55459
56372
  endpoint_id?: string | undefined;
55460
56373
  auto_join?: boolean | undefined;
55461
56374
  override_guest_acs_entrance_ids?: string[] | undefined;
55462
- key_id?: string | undefined;
55463
56375
  key_issuing_request_id?: string | undefined;
55464
56376
  door_names?: string[] | undefined;
55465
56377
  } | undefined;
@@ -55555,10 +56467,10 @@ export declare const batch: z.ZodObject<{
55555
56467
  credential_id?: string | undefined;
55556
56468
  } | undefined;
55557
56469
  assa_abloy_vostio_metadata?: {
56470
+ key_id?: string | undefined;
55558
56471
  endpoint_id?: string | undefined;
55559
56472
  auto_join?: boolean | undefined;
55560
56473
  override_guest_acs_entrance_ids?: string[] | undefined;
55561
- key_id?: string | undefined;
55562
56474
  key_issuing_request_id?: string | undefined;
55563
56475
  door_names?: string[] | undefined;
55564
56476
  } | undefined;
@@ -55627,10 +56539,10 @@ export declare const batch: z.ZodObject<{
55627
56539
  credential_id?: string | undefined;
55628
56540
  } | undefined;
55629
56541
  assa_abloy_vostio_metadata?: {
56542
+ key_id?: string | undefined;
55630
56543
  endpoint_id?: string | undefined;
55631
56544
  auto_join?: boolean | undefined;
55632
56545
  override_guest_acs_entrance_ids?: string[] | undefined;
55633
- key_id?: string | undefined;
55634
56546
  key_issuing_request_id?: string | undefined;
55635
56547
  door_names?: string[] | undefined;
55636
56548
  } | undefined;
@@ -55731,10 +56643,10 @@ export declare const batch: z.ZodObject<{
55731
56643
  credential_id?: string | undefined;
55732
56644
  } | undefined;
55733
56645
  assa_abloy_vostio_metadata?: {
56646
+ key_id?: string | undefined;
55734
56647
  endpoint_id?: string | undefined;
55735
56648
  auto_join?: boolean | undefined;
55736
56649
  override_guest_acs_entrance_ids?: string[] | undefined;
55737
- key_id?: string | undefined;
55738
56650
  key_issuing_request_id?: string | undefined;
55739
56651
  door_names?: string[] | undefined;
55740
56652
  } | undefined;
@@ -55803,10 +56715,10 @@ export declare const batch: z.ZodObject<{
55803
56715
  credential_id?: string | undefined;
55804
56716
  } | undefined;
55805
56717
  assa_abloy_vostio_metadata?: {
56718
+ key_id?: string | undefined;
55806
56719
  endpoint_id?: string | undefined;
55807
56720
  auto_join?: boolean | undefined;
55808
56721
  override_guest_acs_entrance_ids?: string[] | undefined;
55809
- key_id?: string | undefined;
55810
56722
  key_issuing_request_id?: string | undefined;
55811
56723
  door_names?: string[] | undefined;
55812
56724
  } | undefined;
@@ -55908,10 +56820,10 @@ export declare const batch: z.ZodObject<{
55908
56820
  credential_id?: string | undefined;
55909
56821
  } | undefined;
55910
56822
  assa_abloy_vostio_metadata?: {
56823
+ key_id?: string | undefined;
55911
56824
  endpoint_id?: string | undefined;
55912
56825
  auto_join?: boolean | undefined;
55913
56826
  override_guest_acs_entrance_ids?: string[] | undefined;
55914
- key_id?: string | undefined;
55915
56827
  key_issuing_request_id?: string | undefined;
55916
56828
  door_names?: string[] | undefined;
55917
56829
  } | undefined;
@@ -55980,10 +56892,10 @@ export declare const batch: z.ZodObject<{
55980
56892
  credential_id?: string | undefined;
55981
56893
  } | undefined;
55982
56894
  assa_abloy_vostio_metadata?: {
56895
+ key_id?: string | undefined;
55983
56896
  endpoint_id?: string | undefined;
55984
56897
  auto_join?: boolean | undefined;
55985
56898
  override_guest_acs_entrance_ids?: string[] | undefined;
55986
- key_id?: string | undefined;
55987
56899
  key_issuing_request_id?: string | undefined;
55988
56900
  door_names?: string[] | undefined;
55989
56901
  } | undefined;
@@ -56244,17 +57156,17 @@ export declare const batch: z.ZodObject<{
56244
57156
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
56245
57157
  endpoint_id: z.ZodOptional<z.ZodString>;
56246
57158
  }, "strip", z.ZodTypeAny, {
57159
+ key_id?: string | undefined;
56247
57160
  endpoint_id?: string | undefined;
56248
57161
  auto_join?: boolean | undefined;
56249
57162
  override_guest_acs_entrance_ids?: string[] | undefined;
56250
- key_id?: string | undefined;
56251
57163
  key_issuing_request_id?: string | undefined;
56252
57164
  door_names?: string[] | undefined;
56253
57165
  }, {
57166
+ key_id?: string | undefined;
56254
57167
  endpoint_id?: string | undefined;
56255
57168
  auto_join?: boolean | undefined;
56256
57169
  override_guest_acs_entrance_ids?: string[] | undefined;
56257
- key_id?: string | undefined;
56258
57170
  key_issuing_request_id?: string | undefined;
56259
57171
  door_names?: string[] | undefined;
56260
57172
  }>>;
@@ -56312,10 +57224,10 @@ export declare const batch: z.ZodObject<{
56312
57224
  credential_id?: string | undefined;
56313
57225
  } | undefined;
56314
57226
  assa_abloy_vostio_metadata?: {
57227
+ key_id?: string | undefined;
56315
57228
  endpoint_id?: string | undefined;
56316
57229
  auto_join?: boolean | undefined;
56317
57230
  override_guest_acs_entrance_ids?: string[] | undefined;
56318
- key_id?: string | undefined;
56319
57231
  key_issuing_request_id?: string | undefined;
56320
57232
  door_names?: string[] | undefined;
56321
57233
  } | undefined;
@@ -56384,10 +57296,10 @@ export declare const batch: z.ZodObject<{
56384
57296
  credential_id?: string | undefined;
56385
57297
  } | undefined;
56386
57298
  assa_abloy_vostio_metadata?: {
57299
+ key_id?: string | undefined;
56387
57300
  endpoint_id?: string | undefined;
56388
57301
  auto_join?: boolean | undefined;
56389
57302
  override_guest_acs_entrance_ids?: string[] | undefined;
56390
- key_id?: string | undefined;
56391
57303
  key_issuing_request_id?: string | undefined;
56392
57304
  door_names?: string[] | undefined;
56393
57305
  } | undefined;
@@ -56553,17 +57465,17 @@ export declare const batch: z.ZodObject<{
56553
57465
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
56554
57466
  endpoint_id: z.ZodOptional<z.ZodString>;
56555
57467
  }, "strip", z.ZodTypeAny, {
57468
+ key_id?: string | undefined;
56556
57469
  endpoint_id?: string | undefined;
56557
57470
  auto_join?: boolean | undefined;
56558
57471
  override_guest_acs_entrance_ids?: string[] | undefined;
56559
- key_id?: string | undefined;
56560
57472
  key_issuing_request_id?: string | undefined;
56561
57473
  door_names?: string[] | undefined;
56562
57474
  }, {
57475
+ key_id?: string | undefined;
56563
57476
  endpoint_id?: string | undefined;
56564
57477
  auto_join?: boolean | undefined;
56565
57478
  override_guest_acs_entrance_ids?: string[] | undefined;
56566
- key_id?: string | undefined;
56567
57479
  key_issuing_request_id?: string | undefined;
56568
57480
  door_names?: string[] | undefined;
56569
57481
  }>>;
@@ -56621,10 +57533,10 @@ export declare const batch: z.ZodObject<{
56621
57533
  credential_id?: string | undefined;
56622
57534
  } | undefined;
56623
57535
  assa_abloy_vostio_metadata?: {
57536
+ key_id?: string | undefined;
56624
57537
  endpoint_id?: string | undefined;
56625
57538
  auto_join?: boolean | undefined;
56626
57539
  override_guest_acs_entrance_ids?: string[] | undefined;
56627
- key_id?: string | undefined;
56628
57540
  key_issuing_request_id?: string | undefined;
56629
57541
  door_names?: string[] | undefined;
56630
57542
  } | undefined;
@@ -56693,10 +57605,10 @@ export declare const batch: z.ZodObject<{
56693
57605
  credential_id?: string | undefined;
56694
57606
  } | undefined;
56695
57607
  assa_abloy_vostio_metadata?: {
57608
+ key_id?: string | undefined;
56696
57609
  endpoint_id?: string | undefined;
56697
57610
  auto_join?: boolean | undefined;
56698
57611
  override_guest_acs_entrance_ids?: string[] | undefined;
56699
- key_id?: string | undefined;
56700
57612
  key_issuing_request_id?: string | undefined;
56701
57613
  door_names?: string[] | undefined;
56702
57614
  } | undefined;
@@ -56770,10 +57682,10 @@ export declare const batch: z.ZodObject<{
56770
57682
  credential_id?: string | undefined;
56771
57683
  } | undefined;
56772
57684
  assa_abloy_vostio_metadata?: {
57685
+ key_id?: string | undefined;
56773
57686
  endpoint_id?: string | undefined;
56774
57687
  auto_join?: boolean | undefined;
56775
57688
  override_guest_acs_entrance_ids?: string[] | undefined;
56776
- key_id?: string | undefined;
56777
57689
  key_issuing_request_id?: string | undefined;
56778
57690
  door_names?: string[] | undefined;
56779
57691
  } | undefined;
@@ -56842,10 +57754,10 @@ export declare const batch: z.ZodObject<{
56842
57754
  credential_id?: string | undefined;
56843
57755
  } | undefined;
56844
57756
  assa_abloy_vostio_metadata?: {
57757
+ key_id?: string | undefined;
56845
57758
  endpoint_id?: string | undefined;
56846
57759
  auto_join?: boolean | undefined;
56847
57760
  override_guest_acs_entrance_ids?: string[] | undefined;
56848
- key_id?: string | undefined;
56849
57761
  key_issuing_request_id?: string | undefined;
56850
57762
  door_names?: string[] | undefined;
56851
57763
  } | undefined;
@@ -56920,10 +57832,10 @@ export declare const batch: z.ZodObject<{
56920
57832
  credential_id?: string | undefined;
56921
57833
  } | undefined;
56922
57834
  assa_abloy_vostio_metadata?: {
57835
+ key_id?: string | undefined;
56923
57836
  endpoint_id?: string | undefined;
56924
57837
  auto_join?: boolean | undefined;
56925
57838
  override_guest_acs_entrance_ids?: string[] | undefined;
56926
- key_id?: string | undefined;
56927
57839
  key_issuing_request_id?: string | undefined;
56928
57840
  door_names?: string[] | undefined;
56929
57841
  } | undefined;
@@ -56992,10 +57904,10 @@ export declare const batch: z.ZodObject<{
56992
57904
  credential_id?: string | undefined;
56993
57905
  } | undefined;
56994
57906
  assa_abloy_vostio_metadata?: {
57907
+ key_id?: string | undefined;
56995
57908
  endpoint_id?: string | undefined;
56996
57909
  auto_join?: boolean | undefined;
56997
57910
  override_guest_acs_entrance_ids?: string[] | undefined;
56998
- key_id?: string | undefined;
56999
57911
  key_issuing_request_id?: string | undefined;
57000
57912
  door_names?: string[] | undefined;
57001
57913
  } | undefined;
@@ -58930,7 +59842,7 @@ export declare const batch: z.ZodObject<{
58930
59842
  }>, "many">>;
58931
59843
  unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
58932
59844
  device_id: z.ZodString;
58933
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
59845
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
58934
59846
  nickname: z.ZodOptional<z.ZodString>;
58935
59847
  display_name: z.ZodString;
58936
59848
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -59891,11 +60803,68 @@ export declare const batch: z.ZodObject<{
59891
60803
  product_type: string;
59892
60804
  }>>;
59893
60805
  keynest_metadata: z.ZodOptional<z.ZodObject<{
60806
+ key_id: z.ZodOptional<z.ZodString>;
59894
60807
  device_name: z.ZodOptional<z.ZodString>;
60808
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60809
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60810
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60811
+ subscription_plan: z.ZodOptional<z.ZodString>;
60812
+ status_type: z.ZodOptional<z.ZodString>;
60813
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
60814
+ last_movement: z.ZodOptional<z.ZodString>;
60815
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60816
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60817
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60818
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60819
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60820
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60821
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60822
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60823
+ default_office_id: z.ZodOptional<z.ZodNumber>;
60824
+ fob_id: z.ZodOptional<z.ZodNumber>;
60825
+ has_photo: z.ZodOptional<z.ZodBoolean>;
59895
60826
  }, "strip", z.ZodTypeAny, {
59896
60827
  device_name?: string | undefined;
60828
+ key_id?: string | undefined;
60829
+ property_id?: string | null | undefined;
60830
+ property_postcode?: string | null | undefined;
60831
+ key_notes?: string | null | undefined;
60832
+ subscription_plan?: string | undefined;
60833
+ status_type?: string | undefined;
60834
+ current_or_last_store_id?: number | undefined;
60835
+ last_movement?: string | undefined;
60836
+ address?: string | null | undefined;
60837
+ current_status?: string | null | undefined;
60838
+ current_user_name?: string | null | undefined;
60839
+ current_user_email?: string | null | undefined;
60840
+ current_user_phone_number?: string | null | undefined;
60841
+ current_user_company?: string | null | undefined;
60842
+ handover_method?: string | null | undefined;
60843
+ keynest_app_user?: string | null | undefined;
60844
+ default_office_id?: number | undefined;
60845
+ fob_id?: number | undefined;
60846
+ has_photo?: boolean | undefined;
59897
60847
  }, {
59898
60848
  device_name?: string | undefined;
60849
+ key_id?: string | undefined;
60850
+ property_id?: string | null | undefined;
60851
+ property_postcode?: string | null | undefined;
60852
+ key_notes?: string | null | undefined;
60853
+ subscription_plan?: string | undefined;
60854
+ status_type?: string | undefined;
60855
+ current_or_last_store_id?: number | undefined;
60856
+ last_movement?: string | undefined;
60857
+ address?: string | null | undefined;
60858
+ current_status?: string | null | undefined;
60859
+ current_user_name?: string | null | undefined;
60860
+ current_user_email?: string | null | undefined;
60861
+ current_user_phone_number?: string | null | undefined;
60862
+ current_user_company?: string | null | undefined;
60863
+ handover_method?: string | null | undefined;
60864
+ keynest_app_user?: string | null | undefined;
60865
+ default_office_id?: number | undefined;
60866
+ fob_id?: number | undefined;
60867
+ has_photo?: boolean | undefined;
59899
60868
  }>>;
59900
60869
  }, "strip", z.ZodTypeAny, {
59901
60870
  ecobee_metadata?: {
@@ -60133,6 +61102,25 @@ export declare const batch: z.ZodObject<{
60133
61102
  } | undefined;
60134
61103
  keynest_metadata?: {
60135
61104
  device_name?: string | undefined;
61105
+ key_id?: string | undefined;
61106
+ property_id?: string | null | undefined;
61107
+ property_postcode?: string | null | undefined;
61108
+ key_notes?: string | null | undefined;
61109
+ subscription_plan?: string | undefined;
61110
+ status_type?: string | undefined;
61111
+ current_or_last_store_id?: number | undefined;
61112
+ last_movement?: string | undefined;
61113
+ address?: string | null | undefined;
61114
+ current_status?: string | null | undefined;
61115
+ current_user_name?: string | null | undefined;
61116
+ current_user_email?: string | null | undefined;
61117
+ current_user_phone_number?: string | null | undefined;
61118
+ current_user_company?: string | null | undefined;
61119
+ handover_method?: string | null | undefined;
61120
+ keynest_app_user?: string | null | undefined;
61121
+ default_office_id?: number | undefined;
61122
+ fob_id?: number | undefined;
61123
+ has_photo?: boolean | undefined;
60136
61124
  } | undefined;
60137
61125
  }, {
60138
61126
  ecobee_metadata?: {
@@ -60370,6 +61358,25 @@ export declare const batch: z.ZodObject<{
60370
61358
  } | undefined;
60371
61359
  keynest_metadata?: {
60372
61360
  device_name?: string | undefined;
61361
+ key_id?: string | undefined;
61362
+ property_id?: string | null | undefined;
61363
+ property_postcode?: string | null | undefined;
61364
+ key_notes?: string | null | undefined;
61365
+ subscription_plan?: string | undefined;
61366
+ status_type?: string | undefined;
61367
+ current_or_last_store_id?: number | undefined;
61368
+ last_movement?: string | undefined;
61369
+ address?: string | null | undefined;
61370
+ current_status?: string | null | undefined;
61371
+ current_user_name?: string | null | undefined;
61372
+ current_user_email?: string | null | undefined;
61373
+ current_user_phone_number?: string | null | undefined;
61374
+ current_user_company?: string | null | undefined;
61375
+ handover_method?: string | null | undefined;
61376
+ keynest_app_user?: string | null | undefined;
61377
+ default_office_id?: number | undefined;
61378
+ fob_id?: number | undefined;
61379
+ has_photo?: boolean | undefined;
60373
61380
  } | undefined;
60374
61381
  }>>, z.ZodIntersection<z.ZodObject<{
60375
61382
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -62015,7 +63022,7 @@ export declare const batch: z.ZodObject<{
62015
63022
  warning_code: "unknown_issue_with_phone";
62016
63023
  })[];
62017
63024
  custom_metadata: Record<string, string | boolean>;
62018
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
63025
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
62019
63026
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
62020
63027
  properties: {
62021
63028
  name: string;
@@ -62247,7 +63254,7 @@ export declare const batch: z.ZodObject<{
62247
63254
  warning_code: "unknown_issue_with_phone";
62248
63255
  })[];
62249
63256
  custom_metadata: Record<string, string | boolean>;
62250
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
63257
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
62251
63258
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
62252
63259
  properties: {
62253
63260
  name: string;
@@ -68875,7 +69882,7 @@ export declare const batch: z.ZodObject<{
68875
69882
  warning_code: "unknown_issue_with_phone";
68876
69883
  })[];
68877
69884
  custom_metadata: Record<string, string | boolean>;
68878
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
69885
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
68879
69886
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
68880
69887
  properties: {
68881
69888
  name: string;
@@ -69161,6 +70168,25 @@ export declare const batch: z.ZodObject<{
69161
70168
  } | undefined;
69162
70169
  keynest_metadata?: {
69163
70170
  device_name?: string | undefined;
70171
+ key_id?: string | undefined;
70172
+ property_id?: string | null | undefined;
70173
+ property_postcode?: string | null | undefined;
70174
+ key_notes?: string | null | undefined;
70175
+ subscription_plan?: string | undefined;
70176
+ status_type?: string | undefined;
70177
+ current_or_last_store_id?: number | undefined;
70178
+ last_movement?: string | undefined;
70179
+ address?: string | null | undefined;
70180
+ current_status?: string | null | undefined;
70181
+ current_user_name?: string | null | undefined;
70182
+ current_user_email?: string | null | undefined;
70183
+ current_user_phone_number?: string | null | undefined;
70184
+ current_user_company?: string | null | undefined;
70185
+ handover_method?: string | null | undefined;
70186
+ keynest_app_user?: string | null | undefined;
70187
+ default_office_id?: number | undefined;
70188
+ fob_id?: number | undefined;
70189
+ has_photo?: boolean | undefined;
69164
70190
  } | undefined;
69165
70191
  } & {
69166
70192
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -69754,10 +70780,10 @@ export declare const batch: z.ZodObject<{
69754
70780
  credential_id?: string | undefined;
69755
70781
  } | undefined;
69756
70782
  assa_abloy_vostio_metadata?: {
70783
+ key_id?: string | undefined;
69757
70784
  endpoint_id?: string | undefined;
69758
70785
  auto_join?: boolean | undefined;
69759
70786
  override_guest_acs_entrance_ids?: string[] | undefined;
69760
- key_id?: string | undefined;
69761
70787
  key_issuing_request_id?: string | undefined;
69762
70788
  door_names?: string[] | undefined;
69763
70789
  } | undefined;
@@ -69827,10 +70853,10 @@ export declare const batch: z.ZodObject<{
69827
70853
  credential_id?: string | undefined;
69828
70854
  } | undefined;
69829
70855
  assa_abloy_vostio_metadata?: {
70856
+ key_id?: string | undefined;
69830
70857
  endpoint_id?: string | undefined;
69831
70858
  auto_join?: boolean | undefined;
69832
70859
  override_guest_acs_entrance_ids?: string[] | undefined;
69833
- key_id?: string | undefined;
69834
70860
  key_issuing_request_id?: string | undefined;
69835
70861
  door_names?: string[] | undefined;
69836
70862
  } | undefined;
@@ -70086,10 +71112,10 @@ export declare const batch: z.ZodObject<{
70086
71112
  credential_id?: string | undefined;
70087
71113
  } | undefined;
70088
71114
  assa_abloy_vostio_metadata?: {
71115
+ key_id?: string | undefined;
70089
71116
  endpoint_id?: string | undefined;
70090
71117
  auto_join?: boolean | undefined;
70091
71118
  override_guest_acs_entrance_ids?: string[] | undefined;
70092
- key_id?: string | undefined;
70093
71119
  key_issuing_request_id?: string | undefined;
70094
71120
  door_names?: string[] | undefined;
70095
71121
  } | undefined;
@@ -70158,10 +71184,10 @@ export declare const batch: z.ZodObject<{
70158
71184
  credential_id?: string | undefined;
70159
71185
  } | undefined;
70160
71186
  assa_abloy_vostio_metadata?: {
71187
+ key_id?: string | undefined;
70161
71188
  endpoint_id?: string | undefined;
70162
71189
  auto_join?: boolean | undefined;
70163
71190
  override_guest_acs_entrance_ids?: string[] | undefined;
70164
- key_id?: string | undefined;
70165
71191
  key_issuing_request_id?: string | undefined;
70166
71192
  door_names?: string[] | undefined;
70167
71193
  } | undefined;
@@ -70352,10 +71378,10 @@ export declare const batch: z.ZodObject<{
70352
71378
  credential_id?: string | undefined;
70353
71379
  } | undefined;
70354
71380
  assa_abloy_vostio_metadata?: {
71381
+ key_id?: string | undefined;
70355
71382
  endpoint_id?: string | undefined;
70356
71383
  auto_join?: boolean | undefined;
70357
71384
  override_guest_acs_entrance_ids?: string[] | undefined;
70358
- key_id?: string | undefined;
70359
71385
  key_issuing_request_id?: string | undefined;
70360
71386
  door_names?: string[] | undefined;
70361
71387
  } | undefined;
@@ -70424,10 +71450,10 @@ export declare const batch: z.ZodObject<{
70424
71450
  credential_id?: string | undefined;
70425
71451
  } | undefined;
70426
71452
  assa_abloy_vostio_metadata?: {
71453
+ key_id?: string | undefined;
70427
71454
  endpoint_id?: string | undefined;
70428
71455
  auto_join?: boolean | undefined;
70429
71456
  override_guest_acs_entrance_ids?: string[] | undefined;
70430
- key_id?: string | undefined;
70431
71457
  key_issuing_request_id?: string | undefined;
70432
71458
  door_names?: string[] | undefined;
70433
71459
  } | undefined;
@@ -70904,7 +71930,7 @@ export declare const batch: z.ZodObject<{
70904
71930
  warning_code: "unknown_issue_with_phone";
70905
71931
  })[];
70906
71932
  custom_metadata: Record<string, string | boolean>;
70907
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
71933
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
70908
71934
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
70909
71935
  properties: {
70910
71936
  name: string;
@@ -72739,7 +73765,7 @@ export declare const batch: z.ZodObject<{
72739
73765
  warning_code: "unknown_issue_with_phone";
72740
73766
  })[];
72741
73767
  custom_metadata: Record<string, string | boolean>;
72742
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
73768
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
72743
73769
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
72744
73770
  properties: {
72745
73771
  name: string;
@@ -73025,6 +74051,25 @@ export declare const batch: z.ZodObject<{
73025
74051
  } | undefined;
73026
74052
  keynest_metadata?: {
73027
74053
  device_name?: string | undefined;
74054
+ key_id?: string | undefined;
74055
+ property_id?: string | null | undefined;
74056
+ property_postcode?: string | null | undefined;
74057
+ key_notes?: string | null | undefined;
74058
+ subscription_plan?: string | undefined;
74059
+ status_type?: string | undefined;
74060
+ current_or_last_store_id?: number | undefined;
74061
+ last_movement?: string | undefined;
74062
+ address?: string | null | undefined;
74063
+ current_status?: string | null | undefined;
74064
+ current_user_name?: string | null | undefined;
74065
+ current_user_email?: string | null | undefined;
74066
+ current_user_phone_number?: string | null | undefined;
74067
+ current_user_company?: string | null | undefined;
74068
+ handover_method?: string | null | undefined;
74069
+ keynest_app_user?: string | null | undefined;
74070
+ default_office_id?: number | undefined;
74071
+ fob_id?: number | undefined;
74072
+ has_photo?: boolean | undefined;
73028
74073
  } | undefined;
73029
74074
  } & {
73030
74075
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
@@ -73618,10 +74663,10 @@ export declare const batch: z.ZodObject<{
73618
74663
  credential_id?: string | undefined;
73619
74664
  } | undefined;
73620
74665
  assa_abloy_vostio_metadata?: {
74666
+ key_id?: string | undefined;
73621
74667
  endpoint_id?: string | undefined;
73622
74668
  auto_join?: boolean | undefined;
73623
74669
  override_guest_acs_entrance_ids?: string[] | undefined;
73624
- key_id?: string | undefined;
73625
74670
  key_issuing_request_id?: string | undefined;
73626
74671
  door_names?: string[] | undefined;
73627
74672
  } | undefined;
@@ -73691,10 +74736,10 @@ export declare const batch: z.ZodObject<{
73691
74736
  credential_id?: string | undefined;
73692
74737
  } | undefined;
73693
74738
  assa_abloy_vostio_metadata?: {
74739
+ key_id?: string | undefined;
73694
74740
  endpoint_id?: string | undefined;
73695
74741
  auto_join?: boolean | undefined;
73696
74742
  override_guest_acs_entrance_ids?: string[] | undefined;
73697
- key_id?: string | undefined;
73698
74743
  key_issuing_request_id?: string | undefined;
73699
74744
  door_names?: string[] | undefined;
73700
74745
  } | undefined;
@@ -73950,10 +74995,10 @@ export declare const batch: z.ZodObject<{
73950
74995
  credential_id?: string | undefined;
73951
74996
  } | undefined;
73952
74997
  assa_abloy_vostio_metadata?: {
74998
+ key_id?: string | undefined;
73953
74999
  endpoint_id?: string | undefined;
73954
75000
  auto_join?: boolean | undefined;
73955
75001
  override_guest_acs_entrance_ids?: string[] | undefined;
73956
- key_id?: string | undefined;
73957
75002
  key_issuing_request_id?: string | undefined;
73958
75003
  door_names?: string[] | undefined;
73959
75004
  } | undefined;
@@ -74022,10 +75067,10 @@ export declare const batch: z.ZodObject<{
74022
75067
  credential_id?: string | undefined;
74023
75068
  } | undefined;
74024
75069
  assa_abloy_vostio_metadata?: {
75070
+ key_id?: string | undefined;
74025
75071
  endpoint_id?: string | undefined;
74026
75072
  auto_join?: boolean | undefined;
74027
75073
  override_guest_acs_entrance_ids?: string[] | undefined;
74028
- key_id?: string | undefined;
74029
75074
  key_issuing_request_id?: string | undefined;
74030
75075
  door_names?: string[] | undefined;
74031
75076
  } | undefined;
@@ -74216,10 +75261,10 @@ export declare const batch: z.ZodObject<{
74216
75261
  credential_id?: string | undefined;
74217
75262
  } | undefined;
74218
75263
  assa_abloy_vostio_metadata?: {
75264
+ key_id?: string | undefined;
74219
75265
  endpoint_id?: string | undefined;
74220
75266
  auto_join?: boolean | undefined;
74221
75267
  override_guest_acs_entrance_ids?: string[] | undefined;
74222
- key_id?: string | undefined;
74223
75268
  key_issuing_request_id?: string | undefined;
74224
75269
  door_names?: string[] | undefined;
74225
75270
  } | undefined;
@@ -74288,10 +75333,10 @@ export declare const batch: z.ZodObject<{
74288
75333
  credential_id?: string | undefined;
74289
75334
  } | undefined;
74290
75335
  assa_abloy_vostio_metadata?: {
75336
+ key_id?: string | undefined;
74291
75337
  endpoint_id?: string | undefined;
74292
75338
  auto_join?: boolean | undefined;
74293
75339
  override_guest_acs_entrance_ids?: string[] | undefined;
74294
- key_id?: string | undefined;
74295
75340
  key_issuing_request_id?: string | undefined;
74296
75341
  door_names?: string[] | undefined;
74297
75342
  } | undefined;
@@ -74768,7 +75813,7 @@ export declare const batch: z.ZodObject<{
74768
75813
  warning_code: "unknown_issue_with_phone";
74769
75814
  })[];
74770
75815
  custom_metadata: Record<string, string | boolean>;
74771
- device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
75816
+ device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
74772
75817
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
74773
75818
  properties: {
74774
75819
  name: string;