@seamapi/types 1.933.0 → 1.934.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 +88 -21
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +299 -43
  4. package/dist/index.cjs +88 -21
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
  7. package/lib/seam/connect/models/devices/device-metadata.js +14 -0
  8. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  9. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  10. package/lib/seam/connect/models/devices/device-provider.js +2 -1
  11. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  12. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  13. package/lib/seam/connect/models/devices/device-type.js +1 -0
  14. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device.d.ts +43 -3
  16. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -3
  17. package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
  18. package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
  19. package/lib/seam/connect/openapi.js +59 -0
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +218 -31
  22. package/lib/seam/devicedb/models/device-model.d.ts +4 -4
  23. package/lib/seam/devicedb/route-specs.d.ts +8 -8
  24. package/package.json +1 -1
  25. package/src/lib/seam/connect/models/devices/device-metadata.ts +15 -0
  26. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
  27. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  28. package/src/lib/seam/connect/openapi.ts +59 -0
  29. package/src/lib/seam/connect/route-types.ts +255 -0
@@ -14837,7 +14837,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
14837
14837
  type DeviceWarning = z.infer<typeof device_warning>;
14838
14838
  declare const device: z.ZodObject<{
14839
14839
  device_id: z.ZodString;
14840
- 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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"]>, z.ZodEnum<["ring_camera"]>]>;
14840
+ 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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"]>, z.ZodEnum<["ring_camera"]>]>;
14841
14841
  space_ids: z.ZodArray<z.ZodString, "many">;
14842
14842
  nickname: z.ZodOptional<z.ZodString>;
14843
14843
  display_name: z.ZodString;
@@ -15951,6 +15951,22 @@ declare const device: z.ZodObject<{
15951
15951
  firmware_version?: string | undefined;
15952
15952
  wifi_signal_strength?: number | undefined;
15953
15953
  }>>;
15954
+ kisi_metadata: z.ZodOptional<z.ZodObject<{
15955
+ lock_id: z.ZodNumber;
15956
+ lock_name: z.ZodString;
15957
+ place_name: z.ZodNullable<z.ZodString>;
15958
+ description: z.ZodNullable<z.ZodString>;
15959
+ }, "strip", z.ZodTypeAny, {
15960
+ lock_id: number;
15961
+ lock_name: string;
15962
+ place_name: string | null;
15963
+ description: string | null;
15964
+ }, {
15965
+ lock_id: number;
15966
+ lock_name: string;
15967
+ place_name: string | null;
15968
+ description: string | null;
15969
+ }>>;
15954
15970
  }, "strip", z.ZodTypeAny, {
15955
15971
  ecobee_metadata?: {
15956
15972
  device_name: string;
@@ -16238,6 +16254,12 @@ declare const device: z.ZodObject<{
16238
16254
  firmware_version?: string | undefined;
16239
16255
  wifi_signal_strength?: number | undefined;
16240
16256
  } | undefined;
16257
+ kisi_metadata?: {
16258
+ lock_id: number;
16259
+ lock_name: string;
16260
+ place_name: string | null;
16261
+ description: string | null;
16262
+ } | undefined;
16241
16263
  }, {
16242
16264
  ecobee_metadata?: {
16243
16265
  device_name: string;
@@ -16525,6 +16547,12 @@ declare const device: z.ZodObject<{
16525
16547
  firmware_version?: string | undefined;
16526
16548
  wifi_signal_strength?: number | undefined;
16527
16549
  } | undefined;
16550
+ kisi_metadata?: {
16551
+ lock_id: number;
16552
+ lock_name: string;
16553
+ place_name: string | null;
16554
+ description: string | null;
16555
+ } | undefined;
16528
16556
  }>>, z.ZodIntersection<z.ZodObject<{
16529
16557
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
16530
16558
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -18400,7 +18428,7 @@ declare const device: z.ZodObject<{
18400
18428
  warning_code: "insufficient_permissions";
18401
18429
  })[];
18402
18430
  custom_metadata: Record<string, string | boolean>;
18403
- 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
18431
+ 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
18404
18432
  space_ids: string[];
18405
18433
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
18406
18434
  properties: {
@@ -18738,6 +18766,12 @@ declare const device: z.ZodObject<{
18738
18766
  firmware_version?: string | undefined;
18739
18767
  wifi_signal_strength?: number | undefined;
18740
18768
  } | undefined;
18769
+ kisi_metadata?: {
18770
+ lock_id: number;
18771
+ lock_name: string;
18772
+ place_name: string | null;
18773
+ description: string | null;
18774
+ } | undefined;
18741
18775
  } & {
18742
18776
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
18743
18777
  code_constraints?: ({
@@ -19183,7 +19217,7 @@ declare const device: z.ZodObject<{
19183
19217
  warning_code: "insufficient_permissions";
19184
19218
  })[];
19185
19219
  custom_metadata: Record<string, string | boolean>;
19186
- 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
19220
+ 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
19187
19221
  space_ids: string[];
19188
19222
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
19189
19223
  properties: {
@@ -19521,6 +19555,12 @@ declare const device: z.ZodObject<{
19521
19555
  firmware_version?: string | undefined;
19522
19556
  wifi_signal_strength?: number | undefined;
19523
19557
  } | undefined;
19558
+ kisi_metadata?: {
19559
+ lock_id: number;
19560
+ lock_name: string;
19561
+ place_name: string | null;
19562
+ description: string | null;
19563
+ } | undefined;
19524
19564
  } & {
19525
19565
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
19526
19566
  code_constraints?: ({
@@ -19805,6 +19845,7 @@ declare const DEVICE_PROVIDERS: {
19805
19845
  readonly GUESTY: "guesty";
19806
19846
  readonly ACUITY_SCHEDULING: "acuity_scheduling";
19807
19847
  readonly OMNITEC: "omnitec";
19848
+ readonly KISI: "kisi";
19808
19849
  };
19809
19850
  type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
19810
19851
  declare const device_provider: z.ZodObject<{
@@ -19888,7 +19929,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
19888
19929
 
19889
19930
  declare const unmanaged_device: z.ZodObject<Pick<{
19890
19931
  device_id: z.ZodString;
19891
- 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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"]>, z.ZodEnum<["ring_camera"]>]>;
19932
+ 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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"]>, z.ZodEnum<["ring_camera"]>]>;
19892
19933
  space_ids: z.ZodArray<z.ZodString, "many">;
19893
19934
  nickname: z.ZodOptional<z.ZodString>;
19894
19935
  display_name: z.ZodString;
@@ -21002,6 +21043,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21002
21043
  firmware_version?: string | undefined;
21003
21044
  wifi_signal_strength?: number | undefined;
21004
21045
  }>>;
21046
+ kisi_metadata: z.ZodOptional<z.ZodObject<{
21047
+ lock_id: z.ZodNumber;
21048
+ lock_name: z.ZodString;
21049
+ place_name: z.ZodNullable<z.ZodString>;
21050
+ description: z.ZodNullable<z.ZodString>;
21051
+ }, "strip", z.ZodTypeAny, {
21052
+ lock_id: number;
21053
+ lock_name: string;
21054
+ place_name: string | null;
21055
+ description: string | null;
21056
+ }, {
21057
+ lock_id: number;
21058
+ lock_name: string;
21059
+ place_name: string | null;
21060
+ description: string | null;
21061
+ }>>;
21005
21062
  }, "strip", z.ZodTypeAny, {
21006
21063
  ecobee_metadata?: {
21007
21064
  device_name: string;
@@ -21289,6 +21346,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21289
21346
  firmware_version?: string | undefined;
21290
21347
  wifi_signal_strength?: number | undefined;
21291
21348
  } | undefined;
21349
+ kisi_metadata?: {
21350
+ lock_id: number;
21351
+ lock_name: string;
21352
+ place_name: string | null;
21353
+ description: string | null;
21354
+ } | undefined;
21292
21355
  }, {
21293
21356
  ecobee_metadata?: {
21294
21357
  device_name: string;
@@ -21576,6 +21639,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21576
21639
  firmware_version?: string | undefined;
21577
21640
  wifi_signal_strength?: number | undefined;
21578
21641
  } | undefined;
21642
+ kisi_metadata?: {
21643
+ lock_id: number;
21644
+ lock_name: string;
21645
+ place_name: string | null;
21646
+ description: string | null;
21647
+ } | undefined;
21579
21648
  }>>, z.ZodIntersection<z.ZodObject<{
21580
21649
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
21581
21650
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -23607,7 +23676,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23607
23676
  warning_code: "insufficient_permissions";
23608
23677
  })[];
23609
23678
  custom_metadata: Record<string, string | boolean>;
23610
- 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
23679
+ 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
23611
23680
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
23612
23681
  properties: {
23613
23682
  name: string;
@@ -23888,7 +23957,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23888
23957
  warning_code: "insufficient_permissions";
23889
23958
  })[];
23890
23959
  custom_metadata: Record<string, string | boolean>;
23891
- 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
23960
+ 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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
23892
23961
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
23893
23962
  properties: {
23894
23963
  name: string;
@@ -24077,6 +24146,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24077
24146
  workspace_id: string;
24078
24147
  created_at: string;
24079
24148
  connected_account_id: string;
24149
+ description: string;
24080
24150
  from: {
24081
24151
  name: string | null;
24082
24152
  };
@@ -24087,7 +24157,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24087
24157
  event_id: string;
24088
24158
  occurred_at: string;
24089
24159
  event_type: "access_code.name_changed";
24090
- description: string;
24091
24160
  device_custom_metadata?: Record<string, string | boolean> | undefined;
24092
24161
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
24093
24162
  }, {
@@ -24095,6 +24164,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24095
24164
  workspace_id: string;
24096
24165
  created_at: string;
24097
24166
  connected_account_id: string;
24167
+ description: string;
24098
24168
  from: {
24099
24169
  name: string | null;
24100
24170
  };
@@ -24105,7 +24175,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24105
24175
  event_id: string;
24106
24176
  occurred_at: string;
24107
24177
  event_type: "access_code.name_changed";
24108
- description: string;
24109
24178
  device_custom_metadata?: Record<string, string | boolean> | undefined;
24110
24179
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
24111
24180
  }>, z.ZodObject<{
@@ -24141,6 +24210,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24141
24210
  workspace_id: string;
24142
24211
  created_at: string;
24143
24212
  connected_account_id: string;
24213
+ description: string;
24144
24214
  from: {
24145
24215
  code: string | null;
24146
24216
  };
@@ -24151,7 +24221,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24151
24221
  event_id: string;
24152
24222
  occurred_at: string;
24153
24223
  event_type: "access_code.code_changed";
24154
- description: string;
24155
24224
  device_custom_metadata?: Record<string, string | boolean> | undefined;
24156
24225
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
24157
24226
  }, {
@@ -24159,6 +24228,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24159
24228
  workspace_id: string;
24160
24229
  created_at: string;
24161
24230
  connected_account_id: string;
24231
+ description: string;
24162
24232
  from: {
24163
24233
  code: string | null;
24164
24234
  };
@@ -24169,7 +24239,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24169
24239
  event_id: string;
24170
24240
  occurred_at: string;
24171
24241
  event_type: "access_code.code_changed";
24172
- description: string;
24173
24242
  device_custom_metadata?: Record<string, string | boolean> | undefined;
24174
24243
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
24175
24244
  }>, z.ZodObject<{
@@ -24211,6 +24280,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24211
24280
  workspace_id: string;
24212
24281
  created_at: string;
24213
24282
  connected_account_id: string;
24283
+ description: string;
24214
24284
  from: {
24215
24285
  starts_at: string | null;
24216
24286
  ends_at: string | null;
@@ -24223,7 +24293,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24223
24293
  event_id: string;
24224
24294
  occurred_at: string;
24225
24295
  event_type: "access_code.time_frame_changed";
24226
- description: string;
24227
24296
  device_custom_metadata?: Record<string, string | boolean> | undefined;
24228
24297
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
24229
24298
  }, {
@@ -24231,6 +24300,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24231
24300
  workspace_id: string;
24232
24301
  created_at: string;
24233
24302
  connected_account_id: string;
24303
+ description: string;
24234
24304
  from: {
24235
24305
  starts_at: string | null;
24236
24306
  ends_at: string | null;
@@ -24243,7 +24313,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
24243
24313
  event_id: string;
24244
24314
  occurred_at: string;
24245
24315
  event_type: "access_code.time_frame_changed";
24246
- description: string;
24247
24316
  device_custom_metadata?: Record<string, string | boolean> | undefined;
24248
24317
  connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
24249
24318
  }>, z.ZodObject<{
@@ -41680,7 +41749,7 @@ type Routes = {
41680
41749
  /** ID of the device. */
41681
41750
  device_id: string;
41682
41751
  /** Type of the device. */
41683
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
41752
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
41684
41753
  /** IDs of the spaces the device is in. */
41685
41754
  space_ids: string[];
41686
41755
  /** Optional nickname to describe the device, settable through Seam. */
@@ -42327,6 +42396,17 @@ type Routes = {
42327
42396
  /** Location ID for a Korelock device. Required for timebound access codes. */
42328
42397
  location_id?: (string | null) | undefined;
42329
42398
  } | undefined;
42399
+ /** Metadata for a Kisi device. */
42400
+ kisi_metadata?: {
42401
+ /** Lock ID for a Kisi device. */
42402
+ lock_id: number;
42403
+ /** Lock name for a Kisi device. */
42404
+ lock_name: string;
42405
+ /** Place name for a Kisi device. */
42406
+ place_name: string | null;
42407
+ /** Description for a Kisi device. */
42408
+ description: string | null;
42409
+ } | undefined;
42330
42410
  }) & ({
42331
42411
  /** */
42332
42412
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -48380,7 +48460,7 @@ type Routes = {
48380
48460
  /** ID of the device. */
48381
48461
  device_id: string;
48382
48462
  /** Type of the device. */
48383
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
48463
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
48384
48464
  /** IDs of the spaces the device is in. */
48385
48465
  space_ids: string[];
48386
48466
  /** Optional nickname to describe the device, settable through Seam. */
@@ -49027,6 +49107,17 @@ type Routes = {
49027
49107
  /** Location ID for a Korelock device. Required for timebound access codes. */
49028
49108
  location_id?: (string | null) | undefined;
49029
49109
  } | undefined;
49110
+ /** Metadata for a Kisi device. */
49111
+ kisi_metadata?: {
49112
+ /** Lock ID for a Kisi device. */
49113
+ lock_id: number;
49114
+ /** Lock name for a Kisi device. */
49115
+ lock_name: string;
49116
+ /** Place name for a Kisi device. */
49117
+ place_name: string | null;
49118
+ /** Description for a Kisi device. */
49119
+ description: string | null;
49120
+ } | undefined;
49030
49121
  }) & ({
49031
49122
  /** */
49032
49123
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -69031,7 +69122,7 @@ type Routes = {
69031
69122
  /** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
69032
69123
  customer_key?: string | undefined;
69033
69124
  /** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
69034
- accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
69125
+ accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
69035
69126
  /** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
69036
69127
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
69037
69128
  /** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
@@ -70852,7 +70943,7 @@ type Routes = {
70852
70943
  /** ID of the device. */
70853
70944
  device_id: string;
70854
70945
  /** Type of the device. */
70855
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
70946
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
70856
70947
  /** IDs of the spaces the device is in. */
70857
70948
  space_ids: string[];
70858
70949
  /** Optional nickname to describe the device, settable through Seam. */
@@ -71499,6 +71590,17 @@ type Routes = {
71499
71590
  /** Location ID for a Korelock device. Required for timebound access codes. */
71500
71591
  location_id?: (string | null) | undefined;
71501
71592
  } | undefined;
71593
+ /** Metadata for a Kisi device. */
71594
+ kisi_metadata?: {
71595
+ /** Lock ID for a Kisi device. */
71596
+ lock_id: number;
71597
+ /** Lock name for a Kisi device. */
71598
+ lock_name: string;
71599
+ /** Place name for a Kisi device. */
71600
+ place_name: string | null;
71601
+ /** Description for a Kisi device. */
71602
+ description: string | null;
71603
+ } | undefined;
71502
71604
  }) & ({
71503
71605
  /** */
71504
71606
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -72309,11 +72411,11 @@ type Routes = {
72309
72411
  /** ID of the Connect Webview for which you want to list devices. */
72310
72412
  connect_webview_id?: string | undefined;
72311
72413
  /** Device type for which you want to list devices. */
72312
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera') | undefined;
72414
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera') | undefined;
72313
72415
  /** Array of device types for which you want to list devices. */
72314
- device_types?: (('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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera')[] | undefined;
72416
+ device_types?: (('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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera')[] | undefined;
72315
72417
  /** Manufacturer for which you want to list devices. */
72316
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
72418
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
72317
72419
  /** Array of device IDs for which you want to list devices. */
72318
72420
  device_ids?: string[] | undefined;
72319
72421
  /** Numerical limit on the number of devices to return. */
@@ -72346,7 +72448,7 @@ type Routes = {
72346
72448
  /** ID of the device. */
72347
72449
  device_id: string;
72348
72450
  /** Type of the device. */
72349
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
72451
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
72350
72452
  /** IDs of the spaces the device is in. */
72351
72453
  space_ids: string[];
72352
72454
  /** Optional nickname to describe the device, settable through Seam. */
@@ -72993,6 +73095,17 @@ type Routes = {
72993
73095
  /** Location ID for a Korelock device. Required for timebound access codes. */
72994
73096
  location_id?: (string | null) | undefined;
72995
73097
  } | undefined;
73098
+ /** Metadata for a Kisi device. */
73099
+ kisi_metadata?: {
73100
+ /** Lock ID for a Kisi device. */
73101
+ lock_id: number;
73102
+ /** Lock name for a Kisi device. */
73103
+ lock_name: string;
73104
+ /** Place name for a Kisi device. */
73105
+ place_name: string | null;
73106
+ /** Description for a Kisi device. */
73107
+ description: string | null;
73108
+ } | undefined;
72996
73109
  }) & ({
72997
73110
  /** */
72998
73111
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -73810,7 +73923,7 @@ type Routes = {
73810
73923
  jsonResponse: {
73811
73924
  device_providers: {
73812
73925
  /** Name of the device provider. */
73813
- device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
73926
+ device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
73814
73927
  /** Display name for the device provider. */
73815
73928
  display_name: string;
73816
73929
  /** Image URL for the device provider. */
@@ -73988,7 +74101,7 @@ type Routes = {
73988
74101
  /** ID of the device. */
73989
74102
  device_id: string;
73990
74103
  /** Type of the device. */
73991
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
74104
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
73992
74105
  /** Unique identifier for the account associated with the device. */
73993
74106
  connected_account_id: string;
73994
74107
  /** Location information for the device. */
@@ -74488,11 +74601,11 @@ type Routes = {
74488
74601
  /** ID of the Connect Webview for which you want to list devices. */
74489
74602
  connect_webview_id?: string | undefined;
74490
74603
  /** Device type for which you want to list devices. */
74491
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera') | undefined;
74604
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera') | undefined;
74492
74605
  /** Array of device types for which you want to list devices. */
74493
- device_types?: (('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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera')[] | undefined;
74606
+ device_types?: (('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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera')[] | undefined;
74494
74607
  /** Manufacturer for which you want to list devices. */
74495
- manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
74608
+ manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
74496
74609
  /** Array of device IDs for which you want to list devices. */
74497
74610
  device_ids?: string[] | undefined;
74498
74611
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
@@ -74525,7 +74638,7 @@ type Routes = {
74525
74638
  /** ID of the device. */
74526
74639
  device_id: string;
74527
74640
  /** Type of the device. */
74528
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
74641
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
74529
74642
  /** Unique identifier for the account associated with the device. */
74530
74643
  connected_account_id: string;
74531
74644
  /** Location information for the device. */
@@ -82907,7 +83020,7 @@ type Routes = {
82907
83020
  /** ID of the device. */
82908
83021
  device_id: string;
82909
83022
  /** Type of the device. */
82910
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
83023
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
82911
83024
  /** IDs of the spaces the device is in. */
82912
83025
  space_ids: string[];
82913
83026
  /** Optional nickname to describe the device, settable through Seam. */
@@ -83554,6 +83667,17 @@ type Routes = {
83554
83667
  /** Location ID for a Korelock device. Required for timebound access codes. */
83555
83668
  location_id?: (string | null) | undefined;
83556
83669
  } | undefined;
83670
+ /** Metadata for a Kisi device. */
83671
+ kisi_metadata?: {
83672
+ /** Lock ID for a Kisi device. */
83673
+ lock_id: number;
83674
+ /** Lock name for a Kisi device. */
83675
+ lock_name: string;
83676
+ /** Place name for a Kisi device. */
83677
+ place_name: string | null;
83678
+ /** Description for a Kisi device. */
83679
+ description: string | null;
83680
+ } | undefined;
83557
83681
  }) & ({
83558
83682
  /** */
83559
83683
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -84351,7 +84475,7 @@ type Routes = {
84351
84475
  /** ID of the device. */
84352
84476
  device_id: string;
84353
84477
  /** Type of the device. */
84354
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
84478
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
84355
84479
  /** IDs of the spaces the device is in. */
84356
84480
  space_ids: string[];
84357
84481
  /** Optional nickname to describe the device, settable through Seam. */
@@ -84998,6 +85122,17 @@ type Routes = {
84998
85122
  /** Location ID for a Korelock device. Required for timebound access codes. */
84999
85123
  location_id?: (string | null) | undefined;
85000
85124
  } | undefined;
85125
+ /** Metadata for a Kisi device. */
85126
+ kisi_metadata?: {
85127
+ /** Lock ID for a Kisi device. */
85128
+ lock_id: number;
85129
+ /** Lock name for a Kisi device. */
85130
+ lock_name: string;
85131
+ /** Place name for a Kisi device. */
85132
+ place_name: string | null;
85133
+ /** Description for a Kisi device. */
85134
+ description: string | null;
85135
+ } | undefined;
85001
85136
  }) & ({
85002
85137
  /** */
85003
85138
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -85808,11 +85943,11 @@ type Routes = {
85808
85943
  /** ID of the Connect Webview for which you want to list devices. */
85809
85944
  connect_webview_id?: string | undefined;
85810
85945
  /** Device type of the locks that you want to list. */
85811
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | undefined;
85946
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | undefined;
85812
85947
  /** Device types of the locks that you want to list. */
85813
- device_types?: ('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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock')[] | undefined;
85948
+ device_types?: ('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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock')[] | undefined;
85814
85949
  /** Manufacturer of the locks that you want to list. */
85815
- manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
85950
+ manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
85816
85951
  /** Array of device IDs for which you want to list devices. */
85817
85952
  device_ids?: string[] | undefined;
85818
85953
  /** Numerical limit on the number of devices to return. */
@@ -85845,7 +85980,7 @@ type Routes = {
85845
85980
  /** ID of the device. */
85846
85981
  device_id: string;
85847
85982
  /** Type of the device. */
85848
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
85983
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
85849
85984
  /** IDs of the spaces the device is in. */
85850
85985
  space_ids: string[];
85851
85986
  /** Optional nickname to describe the device, settable through Seam. */
@@ -86492,6 +86627,17 @@ type Routes = {
86492
86627
  /** Location ID for a Korelock device. Required for timebound access codes. */
86493
86628
  location_id?: (string | null) | undefined;
86494
86629
  } | undefined;
86630
+ /** Metadata for a Kisi device. */
86631
+ kisi_metadata?: {
86632
+ /** Lock ID for a Kisi device. */
86633
+ lock_id: number;
86634
+ /** Lock name for a Kisi device. */
86635
+ lock_name: string;
86636
+ /** Place name for a Kisi device. */
86637
+ place_name: string | null;
86638
+ /** Description for a Kisi device. */
86639
+ description: string | null;
86640
+ } | undefined;
86495
86641
  }) & ({
86496
86642
  /** */
86497
86643
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -87288,7 +87434,7 @@ type Routes = {
87288
87434
  /** ID of the device. */
87289
87435
  device_id: string;
87290
87436
  /** Type of the device. */
87291
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
87437
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
87292
87438
  /** IDs of the spaces the device is in. */
87293
87439
  space_ids: string[];
87294
87440
  /** Optional nickname to describe the device, settable through Seam. */
@@ -87935,6 +88081,17 @@ type Routes = {
87935
88081
  /** Location ID for a Korelock device. Required for timebound access codes. */
87936
88082
  location_id?: (string | null) | undefined;
87937
88083
  } | undefined;
88084
+ /** Metadata for a Kisi device. */
88085
+ kisi_metadata?: {
88086
+ /** Lock ID for a Kisi device. */
88087
+ lock_id: number;
88088
+ /** Lock name for a Kisi device. */
88089
+ lock_name: string;
88090
+ /** Place name for a Kisi device. */
88091
+ place_name: string | null;
88092
+ /** Description for a Kisi device. */
88093
+ description: string | null;
88094
+ } | undefined;
87938
88095
  }) & ({
87939
88096
  /** */
87940
88097
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -95508,7 +95665,7 @@ type Routes = {
95508
95665
  /** ID of the device. */
95509
95666
  device_id: string;
95510
95667
  /** Type of the device. */
95511
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
95668
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
95512
95669
  /** IDs of the spaces the device is in. */
95513
95670
  space_ids: string[];
95514
95671
  /** Optional nickname to describe the device, settable through Seam. */
@@ -96155,6 +96312,17 @@ type Routes = {
96155
96312
  /** Location ID for a Korelock device. Required for timebound access codes. */
96156
96313
  location_id?: (string | null) | undefined;
96157
96314
  } | undefined;
96315
+ /** Metadata for a Kisi device. */
96316
+ kisi_metadata?: {
96317
+ /** Lock ID for a Kisi device. */
96318
+ lock_id: number;
96319
+ /** Lock name for a Kisi device. */
96320
+ lock_name: string;
96321
+ /** Place name for a Kisi device. */
96322
+ place_name: string | null;
96323
+ /** Description for a Kisi device. */
96324
+ description: string | null;
96325
+ } | undefined;
96158
96326
  }) & ({
96159
96327
  /** */
96160
96328
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -96951,7 +97119,7 @@ type Routes = {
96951
97119
  /** ID of the device. */
96952
97120
  device_id: string;
96953
97121
  /** Type of the device. */
96954
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
97122
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
96955
97123
  /** IDs of the spaces the device is in. */
96956
97124
  space_ids: string[];
96957
97125
  /** Optional nickname to describe the device, settable through Seam. */
@@ -97598,6 +97766,17 @@ type Routes = {
97598
97766
  /** Location ID for a Korelock device. Required for timebound access codes. */
97599
97767
  location_id?: (string | null) | undefined;
97600
97768
  } | undefined;
97769
+ /** Metadata for a Kisi device. */
97770
+ kisi_metadata?: {
97771
+ /** Lock ID for a Kisi device. */
97772
+ lock_id: number;
97773
+ /** Lock name for a Kisi device. */
97774
+ lock_name: string;
97775
+ /** Place name for a Kisi device. */
97776
+ place_name: string | null;
97777
+ /** Description for a Kisi device. */
97778
+ description: string | null;
97779
+ } | undefined;
97601
97780
  }) & ({
97602
97781
  /** */
97603
97782
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -112463,7 +112642,7 @@ type Routes = {
112463
112642
  /** ID of the device. */
112464
112643
  device_id: string;
112465
112644
  /** Type of the device. */
112466
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
112645
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
112467
112646
  /** IDs of the spaces the device is in. */
112468
112647
  space_ids: string[];
112469
112648
  /** Optional nickname to describe the device, settable through Seam. */
@@ -113110,6 +113289,17 @@ type Routes = {
113110
113289
  /** Location ID for a Korelock device. Required for timebound access codes. */
113111
113290
  location_id?: (string | null) | undefined;
113112
113291
  } | undefined;
113292
+ /** Metadata for a Kisi device. */
113293
+ kisi_metadata?: {
113294
+ /** Lock ID for a Kisi device. */
113295
+ lock_id: number;
113296
+ /** Lock name for a Kisi device. */
113297
+ lock_name: string;
113298
+ /** Place name for a Kisi device. */
113299
+ place_name: string | null;
113300
+ /** Description for a Kisi device. */
113301
+ description: string | null;
113302
+ } | undefined;
113113
113303
  }) & ({
113114
113304
  /** */
113115
113305
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -119914,7 +120104,7 @@ type Routes = {
119914
120104
  /** ID of the device. */
119915
120105
  device_id: string;
119916
120106
  /** Type of the device. */
119917
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
120107
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
119918
120108
  /** IDs of the spaces the device is in. */
119919
120109
  space_ids: string[];
119920
120110
  /** Optional nickname to describe the device, settable through Seam. */
@@ -120561,6 +120751,17 @@ type Routes = {
120561
120751
  /** Location ID for a Korelock device. Required for timebound access codes. */
120562
120752
  location_id?: (string | null) | undefined;
120563
120753
  } | undefined;
120754
+ /** Metadata for a Kisi device. */
120755
+ kisi_metadata?: {
120756
+ /** Lock ID for a Kisi device. */
120757
+ lock_id: number;
120758
+ /** Lock name for a Kisi device. */
120759
+ lock_name: string;
120760
+ /** Place name for a Kisi device. */
120761
+ place_name: string | null;
120762
+ /** Description for a Kisi device. */
120763
+ description: string | null;
120764
+ } | undefined;
120564
120765
  }) & ({
120565
120766
  /** */
120566
120767
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -124784,7 +124985,7 @@ type Routes = {
124784
124985
  /** ID of the device. */
124785
124986
  device_id: string;
124786
124987
  /** Type of the device. */
124787
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
124988
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
124788
124989
  /** IDs of the spaces the device is in. */
124789
124990
  space_ids: string[];
124790
124991
  /** Optional nickname to describe the device, settable through Seam. */
@@ -125431,6 +125632,17 @@ type Routes = {
125431
125632
  /** Location ID for a Korelock device. Required for timebound access codes. */
125432
125633
  location_id?: (string | null) | undefined;
125433
125634
  } | undefined;
125635
+ /** Metadata for a Kisi device. */
125636
+ kisi_metadata?: {
125637
+ /** Lock ID for a Kisi device. */
125638
+ lock_id: number;
125639
+ /** Lock name for a Kisi device. */
125640
+ lock_name: string;
125641
+ /** Place name for a Kisi device. */
125642
+ place_name: string | null;
125643
+ /** Description for a Kisi device. */
125644
+ description: string | null;
125645
+ } | undefined;
125434
125646
  }) & ({
125435
125647
  /** */
125436
125648
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -126227,7 +126439,7 @@ type Routes = {
126227
126439
  /** ID of the device. */
126228
126440
  device_id: string;
126229
126441
  /** Type of the device. */
126230
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
126442
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
126231
126443
  /** IDs of the spaces the device is in. */
126232
126444
  space_ids: string[];
126233
126445
  /** Optional nickname to describe the device, settable through Seam. */
@@ -126874,6 +127086,17 @@ type Routes = {
126874
127086
  /** Location ID for a Korelock device. Required for timebound access codes. */
126875
127087
  location_id?: (string | null) | undefined;
126876
127088
  } | undefined;
127089
+ /** Metadata for a Kisi device. */
127090
+ kisi_metadata?: {
127091
+ /** Lock ID for a Kisi device. */
127092
+ lock_id: number;
127093
+ /** Lock name for a Kisi device. */
127094
+ lock_name: string;
127095
+ /** Place name for a Kisi device. */
127096
+ place_name: string | null;
127097
+ /** Description for a Kisi device. */
127098
+ description: string | null;
127099
+ } | undefined;
126877
127100
  }) & ({
126878
127101
  /** */
126879
127102
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -135386,7 +135609,7 @@ type Routes = {
135386
135609
  /** ID of the device. */
135387
135610
  device_id: string;
135388
135611
  /** Type of the device. */
135389
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
135612
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
135390
135613
  /** IDs of the spaces the device is in. */
135391
135614
  space_ids: string[];
135392
135615
  /** Optional nickname to describe the device, settable through Seam. */
@@ -136033,6 +136256,17 @@ type Routes = {
136033
136256
  /** Location ID for a Korelock device. Required for timebound access codes. */
136034
136257
  location_id?: (string | null) | undefined;
136035
136258
  } | undefined;
136259
+ /** Metadata for a Kisi device. */
136260
+ kisi_metadata?: {
136261
+ /** Lock ID for a Kisi device. */
136262
+ lock_id: number;
136263
+ /** Lock name for a Kisi device. */
136264
+ lock_name: string;
136265
+ /** Place name for a Kisi device. */
136266
+ place_name: string | null;
136267
+ /** Description for a Kisi device. */
136268
+ description: string | null;
136269
+ } | undefined;
136036
136270
  }) & ({
136037
136271
  /** */
136038
136272
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -136831,7 +137065,7 @@ type Routes = {
136831
137065
  /** ID of the device. */
136832
137066
  device_id: string;
136833
137067
  /** Type of the device. */
136834
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
137068
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
136835
137069
  /** IDs of the spaces the device is in. */
136836
137070
  space_ids: string[];
136837
137071
  /** Optional nickname to describe the device, settable through Seam. */
@@ -137478,6 +137712,17 @@ type Routes = {
137478
137712
  /** Location ID for a Korelock device. Required for timebound access codes. */
137479
137713
  location_id?: (string | null) | undefined;
137480
137714
  } | undefined;
137715
+ /** Metadata for a Kisi device. */
137716
+ kisi_metadata?: {
137717
+ /** Lock ID for a Kisi device. */
137718
+ lock_id: number;
137719
+ /** Lock name for a Kisi device. */
137720
+ lock_name: string;
137721
+ /** Place name for a Kisi device. */
137722
+ place_name: string | null;
137723
+ /** Description for a Kisi device. */
137724
+ description: string | null;
137725
+ } | undefined;
137481
137726
  }) & ({
137482
137727
  /** */
137483
137728
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -139531,7 +139776,7 @@ type Routes = {
139531
139776
  /** ID of the device. */
139532
139777
  device_id: string;
139533
139778
  /** Type of the device. */
139534
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
139779
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
139535
139780
  /** IDs of the spaces the device is in. */
139536
139781
  space_ids: string[];
139537
139782
  /** Optional nickname to describe the device, settable through Seam. */
@@ -140178,6 +140423,17 @@ type Routes = {
140178
140423
  /** Location ID for a Korelock device. Required for timebound access codes. */
140179
140424
  location_id?: (string | null) | undefined;
140180
140425
  } | undefined;
140426
+ /** Metadata for a Kisi device. */
140427
+ kisi_metadata?: {
140428
+ /** Lock ID for a Kisi device. */
140429
+ lock_id: number;
140430
+ /** Lock name for a Kisi device. */
140431
+ lock_name: string;
140432
+ /** Place name for a Kisi device. */
140433
+ place_name: string | null;
140434
+ /** Description for a Kisi device. */
140435
+ description: string | null;
140436
+ } | undefined;
140181
140437
  }) & ({
140182
140438
  /** */
140183
140439
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -143840,7 +144096,7 @@ type Routes = {
143840
144096
  /** ID of the device. */
143841
144097
  device_id: string;
143842
144098
  /** Type of the device. */
143843
- 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
144099
+ 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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
143844
144100
  /** Unique identifier for the account associated with the device. */
143845
144101
  connected_account_id: string;
143846
144102
  /** Location information for the device. */