@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
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  export declare const unmanaged_device: z.ZodObject<Pick<{
3
3
  device_id: z.ZodString;
4
- 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"]>]>;
4
+ 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"]>]>;
5
5
  nickname: z.ZodOptional<z.ZodString>;
6
6
  display_name: z.ZodString;
7
7
  capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
@@ -962,11 +962,68 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
962
962
  product_type: string;
963
963
  }>>;
964
964
  keynest_metadata: z.ZodOptional<z.ZodObject<{
965
+ key_id: z.ZodOptional<z.ZodString>;
965
966
  device_name: z.ZodOptional<z.ZodString>;
967
+ property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
968
+ property_postcode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
969
+ key_notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
970
+ subscription_plan: z.ZodOptional<z.ZodString>;
971
+ status_type: z.ZodOptional<z.ZodString>;
972
+ current_or_last_store_id: z.ZodOptional<z.ZodNumber>;
973
+ last_movement: z.ZodOptional<z.ZodString>;
974
+ address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
975
+ current_status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
976
+ current_user_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
977
+ current_user_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
978
+ current_user_phone_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
979
+ current_user_company: z.ZodOptional<z.ZodNullable<z.ZodString>>;
980
+ handover_method: z.ZodOptional<z.ZodNullable<z.ZodString>>;
981
+ keynest_app_user: z.ZodOptional<z.ZodNullable<z.ZodString>>;
982
+ default_office_id: z.ZodOptional<z.ZodNumber>;
983
+ fob_id: z.ZodOptional<z.ZodNumber>;
984
+ has_photo: z.ZodOptional<z.ZodBoolean>;
966
985
  }, "strip", z.ZodTypeAny, {
967
986
  device_name?: string | undefined;
987
+ key_id?: string | undefined;
988
+ property_id?: string | null | undefined;
989
+ property_postcode?: string | null | undefined;
990
+ key_notes?: string | null | undefined;
991
+ subscription_plan?: string | undefined;
992
+ status_type?: string | undefined;
993
+ current_or_last_store_id?: number | undefined;
994
+ last_movement?: string | undefined;
995
+ address?: string | null | undefined;
996
+ current_status?: string | null | undefined;
997
+ current_user_name?: string | null | undefined;
998
+ current_user_email?: string | null | undefined;
999
+ current_user_phone_number?: string | null | undefined;
1000
+ current_user_company?: string | null | undefined;
1001
+ handover_method?: string | null | undefined;
1002
+ keynest_app_user?: string | null | undefined;
1003
+ default_office_id?: number | undefined;
1004
+ fob_id?: number | undefined;
1005
+ has_photo?: boolean | undefined;
968
1006
  }, {
969
1007
  device_name?: string | undefined;
1008
+ key_id?: string | undefined;
1009
+ property_id?: string | null | undefined;
1010
+ property_postcode?: string | null | undefined;
1011
+ key_notes?: string | null | undefined;
1012
+ subscription_plan?: string | undefined;
1013
+ status_type?: string | undefined;
1014
+ current_or_last_store_id?: number | undefined;
1015
+ last_movement?: string | undefined;
1016
+ address?: string | null | undefined;
1017
+ current_status?: string | null | undefined;
1018
+ current_user_name?: string | null | undefined;
1019
+ current_user_email?: string | null | undefined;
1020
+ current_user_phone_number?: string | null | undefined;
1021
+ current_user_company?: string | null | undefined;
1022
+ handover_method?: string | null | undefined;
1023
+ keynest_app_user?: string | null | undefined;
1024
+ default_office_id?: number | undefined;
1025
+ fob_id?: number | undefined;
1026
+ has_photo?: boolean | undefined;
970
1027
  }>>;
971
1028
  }, "strip", z.ZodTypeAny, {
972
1029
  ecobee_metadata?: {
@@ -1204,6 +1261,25 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
1204
1261
  } | undefined;
1205
1262
  keynest_metadata?: {
1206
1263
  device_name?: string | undefined;
1264
+ key_id?: string | undefined;
1265
+ property_id?: string | null | undefined;
1266
+ property_postcode?: string | null | undefined;
1267
+ key_notes?: string | null | undefined;
1268
+ subscription_plan?: string | undefined;
1269
+ status_type?: string | undefined;
1270
+ current_or_last_store_id?: number | undefined;
1271
+ last_movement?: string | undefined;
1272
+ address?: string | null | undefined;
1273
+ current_status?: string | null | undefined;
1274
+ current_user_name?: string | null | undefined;
1275
+ current_user_email?: string | null | undefined;
1276
+ current_user_phone_number?: string | null | undefined;
1277
+ current_user_company?: string | null | undefined;
1278
+ handover_method?: string | null | undefined;
1279
+ keynest_app_user?: string | null | undefined;
1280
+ default_office_id?: number | undefined;
1281
+ fob_id?: number | undefined;
1282
+ has_photo?: boolean | undefined;
1207
1283
  } | undefined;
1208
1284
  }, {
1209
1285
  ecobee_metadata?: {
@@ -1441,6 +1517,25 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
1441
1517
  } | undefined;
1442
1518
  keynest_metadata?: {
1443
1519
  device_name?: string | undefined;
1520
+ key_id?: string | undefined;
1521
+ property_id?: string | null | undefined;
1522
+ property_postcode?: string | null | undefined;
1523
+ key_notes?: string | null | undefined;
1524
+ subscription_plan?: string | undefined;
1525
+ status_type?: string | undefined;
1526
+ current_or_last_store_id?: number | undefined;
1527
+ last_movement?: string | undefined;
1528
+ address?: string | null | undefined;
1529
+ current_status?: string | null | undefined;
1530
+ current_user_name?: string | null | undefined;
1531
+ current_user_email?: string | null | undefined;
1532
+ current_user_phone_number?: string | null | undefined;
1533
+ current_user_company?: string | null | undefined;
1534
+ handover_method?: string | null | undefined;
1535
+ keynest_app_user?: string | null | undefined;
1536
+ default_office_id?: number | undefined;
1537
+ fob_id?: number | undefined;
1538
+ has_photo?: boolean | undefined;
1444
1539
  } | undefined;
1445
1540
  }>>, z.ZodIntersection<z.ZodObject<{
1446
1541
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -3086,7 +3181,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
3086
3181
  warning_code: "unknown_issue_with_phone";
3087
3182
  })[];
3088
3183
  custom_metadata: Record<string, string | boolean>;
3089
- 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");
3184
+ 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");
3090
3185
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
3091
3186
  properties: {
3092
3187
  name: string;
@@ -3318,7 +3413,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
3318
3413
  warning_code: "unknown_issue_with_phone";
3319
3414
  })[];
3320
3415
  custom_metadata: Record<string, string | boolean>;
3321
- 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");
3416
+ 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");
3322
3417
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
3323
3418
  properties: {
3324
3419
  name: string;
@@ -165,17 +165,17 @@ declare const phone_provider_session: z.ZodObject<{
165
165
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
166
166
  endpoint_id: z.ZodOptional<z.ZodString>;
167
167
  }, "strip", z.ZodTypeAny, {
168
+ key_id?: string | undefined;
168
169
  endpoint_id?: string | undefined;
169
170
  auto_join?: boolean | undefined;
170
171
  override_guest_acs_entrance_ids?: string[] | undefined;
171
- key_id?: string | undefined;
172
172
  key_issuing_request_id?: string | undefined;
173
173
  door_names?: string[] | undefined;
174
174
  }, {
175
+ key_id?: string | undefined;
175
176
  endpoint_id?: string | undefined;
176
177
  auto_join?: boolean | undefined;
177
178
  override_guest_acs_entrance_ids?: string[] | undefined;
178
- key_id?: string | undefined;
179
179
  key_issuing_request_id?: string | undefined;
180
180
  door_names?: string[] | undefined;
181
181
  }>>;
@@ -592,10 +592,10 @@ declare const phone_provider_session: z.ZodObject<{
592
592
  credential_id?: string | undefined;
593
593
  } | undefined;
594
594
  assa_abloy_vostio_metadata?: {
595
+ key_id?: string | undefined;
595
596
  endpoint_id?: string | undefined;
596
597
  auto_join?: boolean | undefined;
597
598
  override_guest_acs_entrance_ids?: string[] | undefined;
598
- key_id?: string | undefined;
599
599
  key_issuing_request_id?: string | undefined;
600
600
  door_names?: string[] | undefined;
601
601
  } | undefined;
@@ -729,10 +729,10 @@ declare const phone_provider_session: z.ZodObject<{
729
729
  credential_id?: string | undefined;
730
730
  } | undefined;
731
731
  assa_abloy_vostio_metadata?: {
732
+ key_id?: string | undefined;
732
733
  endpoint_id?: string | undefined;
733
734
  auto_join?: boolean | undefined;
734
735
  override_guest_acs_entrance_ids?: string[] | undefined;
735
- key_id?: string | undefined;
736
736
  key_issuing_request_id?: string | undefined;
737
737
  door_names?: string[] | undefined;
738
738
  } | undefined;
@@ -868,10 +868,10 @@ declare const phone_provider_session: z.ZodObject<{
868
868
  credential_id?: string | undefined;
869
869
  } | undefined;
870
870
  assa_abloy_vostio_metadata?: {
871
+ key_id?: string | undefined;
871
872
  endpoint_id?: string | undefined;
872
873
  auto_join?: boolean | undefined;
873
874
  override_guest_acs_entrance_ids?: string[] | undefined;
874
- key_id?: string | undefined;
875
875
  key_issuing_request_id?: string | undefined;
876
876
  door_names?: string[] | undefined;
877
877
  } | undefined;
@@ -1013,10 +1013,10 @@ declare const phone_provider_session: z.ZodObject<{
1013
1013
  credential_id?: string | undefined;
1014
1014
  } | undefined;
1015
1015
  assa_abloy_vostio_metadata?: {
1016
+ key_id?: string | undefined;
1016
1017
  endpoint_id?: string | undefined;
1017
1018
  auto_join?: boolean | undefined;
1018
1019
  override_guest_acs_entrance_ids?: string[] | undefined;
1019
- key_id?: string | undefined;
1020
1020
  key_issuing_request_id?: string | undefined;
1021
1021
  door_names?: string[] | undefined;
1022
1022
  } | undefined;
@@ -1208,17 +1208,17 @@ export declare const phone_session: z.ZodObject<{
1208
1208
  door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1209
1209
  endpoint_id: z.ZodOptional<z.ZodString>;
1210
1210
  }, "strip", z.ZodTypeAny, {
1211
+ key_id?: string | undefined;
1211
1212
  endpoint_id?: string | undefined;
1212
1213
  auto_join?: boolean | undefined;
1213
1214
  override_guest_acs_entrance_ids?: string[] | undefined;
1214
- key_id?: string | undefined;
1215
1215
  key_issuing_request_id?: string | undefined;
1216
1216
  door_names?: string[] | undefined;
1217
1217
  }, {
1218
+ key_id?: string | undefined;
1218
1219
  endpoint_id?: string | undefined;
1219
1220
  auto_join?: boolean | undefined;
1220
1221
  override_guest_acs_entrance_ids?: string[] | undefined;
1221
- key_id?: string | undefined;
1222
1222
  key_issuing_request_id?: string | undefined;
1223
1223
  door_names?: string[] | undefined;
1224
1224
  }>>;
@@ -1635,10 +1635,10 @@ export declare const phone_session: z.ZodObject<{
1635
1635
  credential_id?: string | undefined;
1636
1636
  } | undefined;
1637
1637
  assa_abloy_vostio_metadata?: {
1638
+ key_id?: string | undefined;
1638
1639
  endpoint_id?: string | undefined;
1639
1640
  auto_join?: boolean | undefined;
1640
1641
  override_guest_acs_entrance_ids?: string[] | undefined;
1641
- key_id?: string | undefined;
1642
1642
  key_issuing_request_id?: string | undefined;
1643
1643
  door_names?: string[] | undefined;
1644
1644
  } | undefined;
@@ -1772,10 +1772,10 @@ export declare const phone_session: z.ZodObject<{
1772
1772
  credential_id?: string | undefined;
1773
1773
  } | undefined;
1774
1774
  assa_abloy_vostio_metadata?: {
1775
+ key_id?: string | undefined;
1775
1776
  endpoint_id?: string | undefined;
1776
1777
  auto_join?: boolean | undefined;
1777
1778
  override_guest_acs_entrance_ids?: string[] | undefined;
1778
- key_id?: string | undefined;
1779
1779
  key_issuing_request_id?: string | undefined;
1780
1780
  door_names?: string[] | undefined;
1781
1781
  } | undefined;
@@ -1911,10 +1911,10 @@ export declare const phone_session: z.ZodObject<{
1911
1911
  credential_id?: string | undefined;
1912
1912
  } | undefined;
1913
1913
  assa_abloy_vostio_metadata?: {
1914
+ key_id?: string | undefined;
1914
1915
  endpoint_id?: string | undefined;
1915
1916
  auto_join?: boolean | undefined;
1916
1917
  override_guest_acs_entrance_ids?: string[] | undefined;
1917
- key_id?: string | undefined;
1918
1918
  key_issuing_request_id?: string | undefined;
1919
1919
  door_names?: string[] | undefined;
1920
1920
  } | undefined;
@@ -2056,10 +2056,10 @@ export declare const phone_session: z.ZodObject<{
2056
2056
  credential_id?: string | undefined;
2057
2057
  } | undefined;
2058
2058
  assa_abloy_vostio_metadata?: {
2059
+ key_id?: string | undefined;
2059
2060
  endpoint_id?: string | undefined;
2060
2061
  auto_join?: boolean | undefined;
2061
2062
  override_guest_acs_entrance_ids?: string[] | undefined;
2062
- key_id?: string | undefined;
2063
2063
  key_issuing_request_id?: string | undefined;
2064
2064
  door_names?: string[] | undefined;
2065
2065
  } | undefined;
@@ -2315,10 +2315,10 @@ export declare const phone_session: z.ZodObject<{
2315
2315
  credential_id?: string | undefined;
2316
2316
  } | undefined;
2317
2317
  assa_abloy_vostio_metadata?: {
2318
+ key_id?: string | undefined;
2318
2319
  endpoint_id?: string | undefined;
2319
2320
  auto_join?: boolean | undefined;
2320
2321
  override_guest_acs_entrance_ids?: string[] | undefined;
2321
- key_id?: string | undefined;
2322
2322
  key_issuing_request_id?: string | undefined;
2323
2323
  door_names?: string[] | undefined;
2324
2324
  } | undefined;
@@ -2490,10 +2490,10 @@ export declare const phone_session: z.ZodObject<{
2490
2490
  credential_id?: string | undefined;
2491
2491
  } | undefined;
2492
2492
  assa_abloy_vostio_metadata?: {
2493
+ key_id?: string | undefined;
2493
2494
  endpoint_id?: string | undefined;
2494
2495
  auto_join?: boolean | undefined;
2495
2496
  override_guest_acs_entrance_ids?: string[] | undefined;
2496
- key_id?: string | undefined;
2497
2497
  key_issuing_request_id?: string | undefined;
2498
2498
  door_names?: string[] | undefined;
2499
2499
  } | undefined;
@@ -5285,10 +5285,100 @@ declare const _default: {
5285
5285
  keynest_metadata: {
5286
5286
  description: string;
5287
5287
  properties: {
5288
+ address: {
5289
+ description: string;
5290
+ nullable: boolean;
5291
+ type: string;
5292
+ };
5293
+ current_or_last_store_id: {
5294
+ description: string;
5295
+ format: string;
5296
+ type: string;
5297
+ };
5298
+ current_status: {
5299
+ description: string;
5300
+ nullable: boolean;
5301
+ type: string;
5302
+ };
5303
+ current_user_company: {
5304
+ description: string;
5305
+ nullable: boolean;
5306
+ type: string;
5307
+ };
5308
+ current_user_email: {
5309
+ description: string;
5310
+ nullable: boolean;
5311
+ type: string;
5312
+ };
5313
+ current_user_name: {
5314
+ description: string;
5315
+ nullable: boolean;
5316
+ type: string;
5317
+ };
5318
+ current_user_phone_number: {
5319
+ description: string;
5320
+ nullable: boolean;
5321
+ type: string;
5322
+ };
5323
+ default_office_id: {
5324
+ description: string;
5325
+ format: string;
5326
+ type: string;
5327
+ };
5288
5328
  device_name: {
5289
5329
  description: string;
5290
5330
  type: string;
5291
5331
  };
5332
+ fob_id: {
5333
+ description: string;
5334
+ format: string;
5335
+ type: string;
5336
+ };
5337
+ handover_method: {
5338
+ description: string;
5339
+ nullable: boolean;
5340
+ type: string;
5341
+ };
5342
+ has_photo: {
5343
+ description: string;
5344
+ type: string;
5345
+ };
5346
+ key_id: {
5347
+ description: string;
5348
+ type: string;
5349
+ };
5350
+ key_notes: {
5351
+ description: string;
5352
+ nullable: boolean;
5353
+ type: string;
5354
+ };
5355
+ keynest_app_user: {
5356
+ description: string;
5357
+ nullable: boolean;
5358
+ type: string;
5359
+ };
5360
+ last_movement: {
5361
+ description: string;
5362
+ type: string;
5363
+ };
5364
+ property_id: {
5365
+ description: string;
5366
+ nullable: boolean;
5367
+ type: string;
5368
+ };
5369
+ property_postcode: {
5370
+ description: string;
5371
+ nullable: boolean;
5372
+ type: string;
5373
+ };
5374
+ status_type: {
5375
+ description: string;
5376
+ type: string;
5377
+ };
5378
+ subscription_plan: {
5379
+ description: string;
5380
+ type: string;
5381
+ };
5292
5382
  };
5293
5383
  type: string;
5294
5384
  };
@@ -8298,6 +8298,11 @@ export default {
8298
8298
  ],
8299
8299
  type: 'string',
8300
8300
  },
8301
+ {
8302
+ description: 'Device type for keys.\n ',
8303
+ enum: ['keynest_key'],
8304
+ type: 'string',
8305
+ },
8301
8306
  {
8302
8307
  description: 'Device type for noise sensors.\n ',
8303
8308
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -9533,10 +9538,100 @@ export default {
9533
9538
  keynest_metadata: {
9534
9539
  description: 'Metadata for a KeyNest device.',
9535
9540
  properties: {
9541
+ address: {
9542
+ description: 'Address for a KeyNest device.',
9543
+ nullable: true,
9544
+ type: 'string',
9545
+ },
9546
+ current_or_last_store_id: {
9547
+ description: 'Current or last store ID for a KeyNest device.',
9548
+ format: 'float',
9549
+ type: 'number',
9550
+ },
9551
+ current_status: {
9552
+ description: 'Current status for a KeyNest device.',
9553
+ nullable: true,
9554
+ type: 'string',
9555
+ },
9556
+ current_user_company: {
9557
+ description: 'Current user company for a KeyNest device.',
9558
+ nullable: true,
9559
+ type: 'string',
9560
+ },
9561
+ current_user_email: {
9562
+ description: 'Current user email for a KeyNest device.',
9563
+ nullable: true,
9564
+ type: 'string',
9565
+ },
9566
+ current_user_name: {
9567
+ description: 'Current user name for a KeyNest device.',
9568
+ nullable: true,
9569
+ type: 'string',
9570
+ },
9571
+ current_user_phone_number: {
9572
+ description: 'Current user phone number for a KeyNest device.',
9573
+ nullable: true,
9574
+ type: 'string',
9575
+ },
9576
+ default_office_id: {
9577
+ description: 'Default office ID for a KeyNest device.',
9578
+ format: 'float',
9579
+ type: 'number',
9580
+ },
9536
9581
  device_name: {
9537
9582
  description: 'Device name for a KeyNest device.',
9538
9583
  type: 'string',
9539
9584
  },
9585
+ fob_id: {
9586
+ description: 'Fob ID for a KeyNest device.',
9587
+ format: 'float',
9588
+ type: 'number',
9589
+ },
9590
+ handover_method: {
9591
+ description: 'Handover method for a KeyNest device.',
9592
+ nullable: true,
9593
+ type: 'string',
9594
+ },
9595
+ has_photo: {
9596
+ description: 'Whether the KeyNest device has a photo.',
9597
+ type: 'boolean',
9598
+ },
9599
+ key_id: {
9600
+ description: 'Key ID for a KeyNest device.',
9601
+ type: 'string',
9602
+ },
9603
+ key_notes: {
9604
+ description: 'Key notes for a KeyNest device.',
9605
+ nullable: true,
9606
+ type: 'string',
9607
+ },
9608
+ keynest_app_user: {
9609
+ description: 'KeyNest app user for a KeyNest device.',
9610
+ nullable: true,
9611
+ type: 'string',
9612
+ },
9613
+ last_movement: {
9614
+ description: 'Last movement timestamp for a KeyNest device.',
9615
+ type: 'string',
9616
+ },
9617
+ property_id: {
9618
+ description: 'Property ID for a KeyNest device.',
9619
+ nullable: true,
9620
+ type: 'string',
9621
+ },
9622
+ property_postcode: {
9623
+ description: 'Property postcode for a KeyNest device.',
9624
+ nullable: true,
9625
+ type: 'string',
9626
+ },
9627
+ status_type: {
9628
+ description: 'Status type for a KeyNest device.',
9629
+ type: 'string',
9630
+ },
9631
+ subscription_plan: {
9632
+ description: 'Subscription plan for a KeyNest device.',
9633
+ type: 'string',
9634
+ },
9540
9635
  },
9541
9636
  type: 'object',
9542
9637
  },
@@ -21362,6 +21457,11 @@ export default {
21362
21457
  ],
21363
21458
  type: 'string',
21364
21459
  },
21460
+ {
21461
+ description: 'Device type for keys.\n ',
21462
+ enum: ['keynest_key'],
21463
+ type: 'string',
21464
+ },
21365
21465
  {
21366
21466
  description: 'Device type for noise sensors.\n ',
21367
21467
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -37072,6 +37172,11 @@ export default {
37072
37172
  ],
37073
37173
  type: 'string',
37074
37174
  },
37175
+ {
37176
+ description: 'Device type for keys.\n ',
37177
+ enum: ['keynest_key'],
37178
+ type: 'string',
37179
+ },
37075
37180
  {
37076
37181
  description: 'Device type for noise sensors.\n ',
37077
37182
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -37137,6 +37242,11 @@ export default {
37137
37242
  ],
37138
37243
  type: 'string',
37139
37244
  },
37245
+ {
37246
+ description: 'Device type for keys.\n ',
37247
+ enum: ['keynest_key'],
37248
+ type: 'string',
37249
+ },
37140
37250
  {
37141
37251
  description: 'Device type for noise sensors.\n ',
37142
37252
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -37476,6 +37586,11 @@ export default {
37476
37586
  ],
37477
37587
  type: 'string',
37478
37588
  },
37589
+ {
37590
+ description: 'Device type for keys.\n ',
37591
+ enum: ['keynest_key'],
37592
+ type: 'string',
37593
+ },
37479
37594
  {
37480
37595
  description: 'Device type for noise sensors.\n ',
37481
37596
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -37537,6 +37652,11 @@ export default {
37537
37652
  ],
37538
37653
  type: 'string',
37539
37654
  },
37655
+ {
37656
+ description: 'Device type for keys.\n ',
37657
+ enum: ['keynest_key'],
37658
+ type: 'string',
37659
+ },
37540
37660
  {
37541
37661
  description: 'Device type for noise sensors.\n ',
37542
37662
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -38350,6 +38470,11 @@ export default {
38350
38470
  ],
38351
38471
  type: 'string',
38352
38472
  },
38473
+ {
38474
+ description: 'Device type for keys.\n ',
38475
+ enum: ['keynest_key'],
38476
+ type: 'string',
38477
+ },
38353
38478
  {
38354
38479
  description: 'Device type for noise sensors.\n ',
38355
38480
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -38415,6 +38540,11 @@ export default {
38415
38540
  ],
38416
38541
  type: 'string',
38417
38542
  },
38543
+ {
38544
+ description: 'Device type for keys.\n ',
38545
+ enum: ['keynest_key'],
38546
+ type: 'string',
38547
+ },
38418
38548
  {
38419
38549
  description: 'Device type for noise sensors.\n ',
38420
38550
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -38751,6 +38881,11 @@ export default {
38751
38881
  ],
38752
38882
  type: 'string',
38753
38883
  },
38884
+ {
38885
+ description: 'Device type for keys.\n ',
38886
+ enum: ['keynest_key'],
38887
+ type: 'string',
38888
+ },
38754
38889
  {
38755
38890
  description: 'Device type for noise sensors.\n ',
38756
38891
  enum: ['noiseaware_activity_zone', 'minut_sensor'],
@@ -38812,6 +38947,11 @@ export default {
38812
38947
  ],
38813
38948
  type: 'string',
38814
38949
  },
38950
+ {
38951
+ description: 'Device type for keys.\n ',
38952
+ enum: ['keynest_key'],
38953
+ type: 'string',
38954
+ },
38815
38955
  {
38816
38956
  description: 'Device type for noise sensors.\n ',
38817
38957
  enum: ['noiseaware_activity_zone', 'minut_sensor'],