@seamapi/types 1.551.0 → 1.553.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 +169 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1365 -125
  4. package/dist/index.cjs +169 -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 +100 -0
  22. package/lib/seam/connect/openapi.js +141 -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 +153 -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
  };
@@ -15222,22 +15312,32 @@ declare const _default: {
15222
15312
  };
15223
15313
  security: ({
15224
15314
  client_session: never[];
15315
+ client_session_with_customer?: never;
15316
+ pat_with_workspace?: never;
15317
+ console_session_with_workspace?: never;
15318
+ api_key?: never;
15319
+ } | {
15320
+ client_session_with_customer: never[];
15321
+ client_session?: never;
15225
15322
  pat_with_workspace?: never;
15226
15323
  console_session_with_workspace?: never;
15227
15324
  api_key?: never;
15228
15325
  } | {
15229
15326
  pat_with_workspace: never[];
15230
15327
  client_session?: never;
15328
+ client_session_with_customer?: never;
15231
15329
  console_session_with_workspace?: never;
15232
15330
  api_key?: never;
15233
15331
  } | {
15234
15332
  console_session_with_workspace: never[];
15235
15333
  client_session?: never;
15334
+ client_session_with_customer?: never;
15236
15335
  pat_with_workspace?: never;
15237
15336
  api_key?: never;
15238
15337
  } | {
15239
15338
  api_key: never[];
15240
15339
  client_session?: never;
15340
+ client_session_with_customer?: never;
15241
15341
  pat_with_workspace?: never;
15242
15342
  console_session_with_workspace?: never;
15243
15343
  })[];