@seamapi/types 1.932.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 (34) hide show
  1. package/dist/connect.cjs +127 -60
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +731 -475
  4. package/dist/index.cjs +127 -60
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +38 -38
  7. package/lib/seam/connect/models/devices/capability-properties/access-code.js +11 -13
  8. package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
  9. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +28 -28
  10. package/lib/seam/connect/models/devices/device-metadata.d.ts +44 -16
  11. package/lib/seam/connect/models/devices/device-metadata.js +14 -0
  12. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  13. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  14. package/lib/seam/connect/models/devices/device-provider.js +2 -1
  15. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  16. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  17. package/lib/seam/connect/models/devices/device-type.js +1 -0
  18. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  19. package/lib/seam/connect/models/devices/device.d.ts +95 -55
  20. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +71 -43
  21. package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
  22. package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
  23. package/lib/seam/connect/openapi.js +87 -28
  24. package/lib/seam/connect/openapi.js.map +1 -1
  25. package/lib/seam/connect/route-types.d.ts +558 -371
  26. package/lib/seam/devicedb/models/device-model.d.ts +4 -4
  27. package/lib/seam/devicedb/route-specs.d.ts +8 -8
  28. package/package.json +1 -1
  29. package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +11 -13
  30. package/src/lib/seam/connect/models/devices/device-metadata.ts +15 -0
  31. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
  32. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  33. package/src/lib/seam/connect/openapi.ts +87 -28
  34. package/src/lib/seam/connect/route-types.ts +595 -340
@@ -11871,7 +11871,7 @@ export type Routes = {
11871
11871
  /** ID of the device. */
11872
11872
  device_id: string;
11873
11873
  /** Type of the device. */
11874
- 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';
11874
+ 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';
11875
11875
  /** IDs of the spaces the device is in. */
11876
11876
  space_ids: string[];
11877
11877
  /** Optional nickname to describe the device, settable through Seam. */
@@ -12518,6 +12518,17 @@ export type Routes = {
12518
12518
  /** Location ID for a Korelock device. Required for timebound access codes. */
12519
12519
  location_id?: (string | null) | undefined;
12520
12520
  } | undefined;
12521
+ /** Metadata for a Kisi device. */
12522
+ kisi_metadata?: {
12523
+ /** Lock ID for a Kisi device. */
12524
+ lock_id: number;
12525
+ /** Lock name for a Kisi device. */
12526
+ lock_name: string;
12527
+ /** Place name for a Kisi device. */
12528
+ place_name: string | null;
12529
+ /** Description for a Kisi device. */
12530
+ description: string | null;
12531
+ } | undefined;
12521
12532
  }) & ({
12522
12533
  /** */
12523
12534
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -12536,52 +12547,52 @@ export type Routes = {
12536
12547
  supported_code_lengths?: (number[] | undefined) | undefined;
12537
12548
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
12538
12549
  offline_time_frame_options?: ({
12539
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
12550
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
12540
12551
  display_name: string;
12541
12552
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
12542
12553
  min_duration?: string | undefined;
12543
12554
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
12544
12555
  max_duration?: string | undefined;
12545
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12556
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12546
12557
  matching_start_end_time?: true | undefined;
12547
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12558
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12548
12559
  time_pairs?: {
12549
- /** Label for the check-in/check-out time pairing. */
12560
+ /** Label for the start/end time pairing. */
12550
12561
  display_name: string;
12551
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12552
- check_in_time: string;
12553
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
12554
- check_out_time: string;
12562
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12563
+ start_time: string;
12564
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
12565
+ end_time: string;
12555
12566
  }[] | undefined;
12556
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12567
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12557
12568
  start_date_recurrence_rule?: string | undefined;
12558
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12569
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12559
12570
  end_date_recurrence_rule?: string | undefined;
12560
12571
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
12561
12572
  time_zone?: string | undefined;
12562
12573
  }[] | undefined) | undefined;
12563
12574
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
12564
12575
  online_time_frame_options?: ({
12565
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
12576
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
12566
12577
  display_name: string;
12567
12578
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
12568
12579
  min_duration?: string | undefined;
12569
12580
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
12570
12581
  max_duration?: string | undefined;
12571
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12582
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12572
12583
  matching_start_end_time?: true | undefined;
12573
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12584
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12574
12585
  time_pairs?: {
12575
- /** Label for the check-in/check-out time pairing. */
12586
+ /** Label for the start/end time pairing. */
12576
12587
  display_name: string;
12577
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12578
- check_in_time: string;
12579
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
12580
- check_out_time: string;
12588
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12589
+ start_time: string;
12590
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
12591
+ end_time: string;
12581
12592
  }[] | undefined;
12582
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12593
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12583
12594
  start_date_recurrence_rule?: string | undefined;
12584
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12595
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12585
12596
  end_date_recurrence_rule?: string | undefined;
12586
12597
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
12587
12598
  time_zone?: string | undefined;
@@ -18571,7 +18582,7 @@ export type Routes = {
18571
18582
  /** ID of the device. */
18572
18583
  device_id: string;
18573
18584
  /** Type of the device. */
18574
- 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';
18585
+ 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';
18575
18586
  /** IDs of the spaces the device is in. */
18576
18587
  space_ids: string[];
18577
18588
  /** Optional nickname to describe the device, settable through Seam. */
@@ -19218,6 +19229,17 @@ export type Routes = {
19218
19229
  /** Location ID for a Korelock device. Required for timebound access codes. */
19219
19230
  location_id?: (string | null) | undefined;
19220
19231
  } | undefined;
19232
+ /** Metadata for a Kisi device. */
19233
+ kisi_metadata?: {
19234
+ /** Lock ID for a Kisi device. */
19235
+ lock_id: number;
19236
+ /** Lock name for a Kisi device. */
19237
+ lock_name: string;
19238
+ /** Place name for a Kisi device. */
19239
+ place_name: string | null;
19240
+ /** Description for a Kisi device. */
19241
+ description: string | null;
19242
+ } | undefined;
19221
19243
  }) & ({
19222
19244
  /** */
19223
19245
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -19236,52 +19258,52 @@ export type Routes = {
19236
19258
  supported_code_lengths?: (number[] | undefined) | undefined;
19237
19259
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
19238
19260
  offline_time_frame_options?: ({
19239
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
19261
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
19240
19262
  display_name: string;
19241
19263
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
19242
19264
  min_duration?: string | undefined;
19243
19265
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
19244
19266
  max_duration?: string | undefined;
19245
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19267
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19246
19268
  matching_start_end_time?: true | undefined;
19247
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19269
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19248
19270
  time_pairs?: {
19249
- /** Label for the check-in/check-out time pairing. */
19271
+ /** Label for the start/end time pairing. */
19250
19272
  display_name: string;
19251
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19252
- check_in_time: string;
19253
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
19254
- check_out_time: string;
19273
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19274
+ start_time: string;
19275
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
19276
+ end_time: string;
19255
19277
  }[] | undefined;
19256
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19278
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19257
19279
  start_date_recurrence_rule?: string | undefined;
19258
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19280
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19259
19281
  end_date_recurrence_rule?: string | undefined;
19260
19282
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
19261
19283
  time_zone?: string | undefined;
19262
19284
  }[] | undefined) | undefined;
19263
19285
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
19264
19286
  online_time_frame_options?: ({
19265
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
19287
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
19266
19288
  display_name: string;
19267
19289
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
19268
19290
  min_duration?: string | undefined;
19269
19291
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
19270
19292
  max_duration?: string | undefined;
19271
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19293
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19272
19294
  matching_start_end_time?: true | undefined;
19273
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19295
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19274
19296
  time_pairs?: {
19275
- /** Label for the check-in/check-out time pairing. */
19297
+ /** Label for the start/end time pairing. */
19276
19298
  display_name: string;
19277
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19278
- check_in_time: string;
19279
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
19280
- check_out_time: string;
19299
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19300
+ start_time: string;
19301
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
19302
+ end_time: string;
19281
19303
  }[] | undefined;
19282
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19304
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19283
19305
  start_date_recurrence_rule?: string | undefined;
19284
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19306
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19285
19307
  end_date_recurrence_rule?: string | undefined;
19286
19308
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
19287
19309
  time_zone?: string | undefined;
@@ -39222,7 +39244,7 @@ export type Routes = {
39222
39244
  /** 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. */
39223
39245
  customer_key?: string | undefined;
39224
39246
  /** 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. */
39225
- 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;
39247
+ 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;
39226
39248
  /** 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. */
39227
39249
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
39228
39250
  /** 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). */
@@ -41043,7 +41065,7 @@ export type Routes = {
41043
41065
  /** ID of the device. */
41044
41066
  device_id: string;
41045
41067
  /** Type of the device. */
41046
- 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';
41068
+ 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';
41047
41069
  /** IDs of the spaces the device is in. */
41048
41070
  space_ids: string[];
41049
41071
  /** Optional nickname to describe the device, settable through Seam. */
@@ -41690,6 +41712,17 @@ export type Routes = {
41690
41712
  /** Location ID for a Korelock device. Required for timebound access codes. */
41691
41713
  location_id?: (string | null) | undefined;
41692
41714
  } | undefined;
41715
+ /** Metadata for a Kisi device. */
41716
+ kisi_metadata?: {
41717
+ /** Lock ID for a Kisi device. */
41718
+ lock_id: number;
41719
+ /** Lock name for a Kisi device. */
41720
+ lock_name: string;
41721
+ /** Place name for a Kisi device. */
41722
+ place_name: string | null;
41723
+ /** Description for a Kisi device. */
41724
+ description: string | null;
41725
+ } | undefined;
41693
41726
  }) & ({
41694
41727
  /** */
41695
41728
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -41708,52 +41741,52 @@ export type Routes = {
41708
41741
  supported_code_lengths?: (number[] | undefined) | undefined;
41709
41742
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
41710
41743
  offline_time_frame_options?: ({
41711
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
41744
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
41712
41745
  display_name: string;
41713
41746
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
41714
41747
  min_duration?: string | undefined;
41715
41748
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
41716
41749
  max_duration?: string | undefined;
41717
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41750
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41718
41751
  matching_start_end_time?: true | undefined;
41719
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41752
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41720
41753
  time_pairs?: {
41721
- /** Label for the check-in/check-out time pairing. */
41754
+ /** Label for the start/end time pairing. */
41722
41755
  display_name: string;
41723
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41724
- check_in_time: string;
41725
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
41726
- check_out_time: string;
41756
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41757
+ start_time: string;
41758
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
41759
+ end_time: string;
41727
41760
  }[] | undefined;
41728
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41761
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41729
41762
  start_date_recurrence_rule?: string | undefined;
41730
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41763
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41731
41764
  end_date_recurrence_rule?: string | undefined;
41732
41765
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
41733
41766
  time_zone?: string | undefined;
41734
41767
  }[] | undefined) | undefined;
41735
41768
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
41736
41769
  online_time_frame_options?: ({
41737
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
41770
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
41738
41771
  display_name: string;
41739
41772
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
41740
41773
  min_duration?: string | undefined;
41741
41774
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
41742
41775
  max_duration?: string | undefined;
41743
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41776
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41744
41777
  matching_start_end_time?: true | undefined;
41745
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41778
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41746
41779
  time_pairs?: {
41747
- /** Label for the check-in/check-out time pairing. */
41780
+ /** Label for the start/end time pairing. */
41748
41781
  display_name: string;
41749
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41750
- check_in_time: string;
41751
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
41752
- check_out_time: string;
41782
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41783
+ start_time: string;
41784
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
41785
+ end_time: string;
41753
41786
  }[] | undefined;
41754
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41787
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41755
41788
  start_date_recurrence_rule?: string | undefined;
41756
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41789
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41757
41790
  end_date_recurrence_rule?: string | undefined;
41758
41791
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
41759
41792
  time_zone?: string | undefined;
@@ -42500,11 +42533,11 @@ export type Routes = {
42500
42533
  /** ID of the Connect Webview for which you want to list devices. */
42501
42534
  connect_webview_id?: string | undefined;
42502
42535
  /** Device type for which you want to list devices. */
42503
- 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;
42536
+ 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;
42504
42537
  /** Array of device types for which you want to list devices. */
42505
- 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;
42538
+ 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;
42506
42539
  /** Manufacturer for which you want to list devices. */
42507
- 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;
42540
+ 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;
42508
42541
  /** Array of device IDs for which you want to list devices. */
42509
42542
  device_ids?: string[] | undefined;
42510
42543
  /** Numerical limit on the number of devices to return. */
@@ -42537,7 +42570,7 @@ export type Routes = {
42537
42570
  /** ID of the device. */
42538
42571
  device_id: string;
42539
42572
  /** Type of the device. */
42540
- 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';
42573
+ 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';
42541
42574
  /** IDs of the spaces the device is in. */
42542
42575
  space_ids: string[];
42543
42576
  /** Optional nickname to describe the device, settable through Seam. */
@@ -43184,6 +43217,17 @@ export type Routes = {
43184
43217
  /** Location ID for a Korelock device. Required for timebound access codes. */
43185
43218
  location_id?: (string | null) | undefined;
43186
43219
  } | undefined;
43220
+ /** Metadata for a Kisi device. */
43221
+ kisi_metadata?: {
43222
+ /** Lock ID for a Kisi device. */
43223
+ lock_id: number;
43224
+ /** Lock name for a Kisi device. */
43225
+ lock_name: string;
43226
+ /** Place name for a Kisi device. */
43227
+ place_name: string | null;
43228
+ /** Description for a Kisi device. */
43229
+ description: string | null;
43230
+ } | undefined;
43187
43231
  }) & ({
43188
43232
  /** */
43189
43233
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -43202,52 +43246,52 @@ export type Routes = {
43202
43246
  supported_code_lengths?: (number[] | undefined) | undefined;
43203
43247
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
43204
43248
  offline_time_frame_options?: ({
43205
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
43249
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
43206
43250
  display_name: string;
43207
43251
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
43208
43252
  min_duration?: string | undefined;
43209
43253
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
43210
43254
  max_duration?: string | undefined;
43211
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43255
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43212
43256
  matching_start_end_time?: true | undefined;
43213
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43257
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43214
43258
  time_pairs?: {
43215
- /** Label for the check-in/check-out time pairing. */
43259
+ /** Label for the start/end time pairing. */
43216
43260
  display_name: string;
43217
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43218
- check_in_time: string;
43219
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
43220
- check_out_time: string;
43261
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43262
+ start_time: string;
43263
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
43264
+ end_time: string;
43221
43265
  }[] | undefined;
43222
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43266
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43223
43267
  start_date_recurrence_rule?: string | undefined;
43224
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43268
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43225
43269
  end_date_recurrence_rule?: string | undefined;
43226
43270
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
43227
43271
  time_zone?: string | undefined;
43228
43272
  }[] | undefined) | undefined;
43229
43273
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
43230
43274
  online_time_frame_options?: ({
43231
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
43275
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
43232
43276
  display_name: string;
43233
43277
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
43234
43278
  min_duration?: string | undefined;
43235
43279
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
43236
43280
  max_duration?: string | undefined;
43237
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43281
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43238
43282
  matching_start_end_time?: true | undefined;
43239
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43283
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43240
43284
  time_pairs?: {
43241
- /** Label for the check-in/check-out time pairing. */
43285
+ /** Label for the start/end time pairing. */
43242
43286
  display_name: string;
43243
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43244
- check_in_time: string;
43245
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
43246
- check_out_time: string;
43287
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43288
+ start_time: string;
43289
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
43290
+ end_time: string;
43247
43291
  }[] | undefined;
43248
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43292
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43249
43293
  start_date_recurrence_rule?: string | undefined;
43250
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43294
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43251
43295
  end_date_recurrence_rule?: string | undefined;
43252
43296
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
43253
43297
  time_zone?: string | undefined;
@@ -44001,7 +44045,7 @@ export type Routes = {
44001
44045
  jsonResponse: {
44002
44046
  device_providers: {
44003
44047
  /** Name of the device provider. */
44004
- 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';
44048
+ 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';
44005
44049
  /** Display name for the device provider. */
44006
44050
  display_name: string;
44007
44051
  /** Image URL for the device provider. */
@@ -44179,7 +44223,7 @@ export type Routes = {
44179
44223
  /** ID of the device. */
44180
44224
  device_id: string;
44181
44225
  /** Type of the device. */
44182
- 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';
44226
+ 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';
44183
44227
  /** Unique identifier for the account associated with the device. */
44184
44228
  connected_account_id: string;
44185
44229
  /** Location information for the device. */
@@ -44679,11 +44723,11 @@ export type Routes = {
44679
44723
  /** ID of the Connect Webview for which you want to list devices. */
44680
44724
  connect_webview_id?: string | undefined;
44681
44725
  /** Device type for which you want to list devices. */
44682
- 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;
44726
+ 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;
44683
44727
  /** Array of device types for which you want to list devices. */
44684
- 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;
44728
+ 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;
44685
44729
  /** Manufacturer for which you want to list devices. */
44686
- 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;
44730
+ 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;
44687
44731
  /** Array of device IDs for which you want to list devices. */
44688
44732
  device_ids?: string[] | undefined;
44689
44733
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
@@ -44716,7 +44760,7 @@ export type Routes = {
44716
44760
  /** ID of the device. */
44717
44761
  device_id: string;
44718
44762
  /** Type of the device. */
44719
- 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';
44763
+ 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';
44720
44764
  /** Unique identifier for the account associated with the device. */
44721
44765
  connected_account_id: string;
44722
44766
  /** Location information for the device. */
@@ -53098,7 +53142,7 @@ export type Routes = {
53098
53142
  /** ID of the device. */
53099
53143
  device_id: string;
53100
53144
  /** Type of the device. */
53101
- 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';
53145
+ 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';
53102
53146
  /** IDs of the spaces the device is in. */
53103
53147
  space_ids: string[];
53104
53148
  /** Optional nickname to describe the device, settable through Seam. */
@@ -53745,6 +53789,17 @@ export type Routes = {
53745
53789
  /** Location ID for a Korelock device. Required for timebound access codes. */
53746
53790
  location_id?: (string | null) | undefined;
53747
53791
  } | undefined;
53792
+ /** Metadata for a Kisi device. */
53793
+ kisi_metadata?: {
53794
+ /** Lock ID for a Kisi device. */
53795
+ lock_id: number;
53796
+ /** Lock name for a Kisi device. */
53797
+ lock_name: string;
53798
+ /** Place name for a Kisi device. */
53799
+ place_name: string | null;
53800
+ /** Description for a Kisi device. */
53801
+ description: string | null;
53802
+ } | undefined;
53748
53803
  }) & ({
53749
53804
  /** */
53750
53805
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -53763,52 +53818,52 @@ export type Routes = {
53763
53818
  supported_code_lengths?: (number[] | undefined) | undefined;
53764
53819
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
53765
53820
  offline_time_frame_options?: ({
53766
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
53821
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
53767
53822
  display_name: string;
53768
53823
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
53769
53824
  min_duration?: string | undefined;
53770
53825
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
53771
53826
  max_duration?: string | undefined;
53772
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53827
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53773
53828
  matching_start_end_time?: true | undefined;
53774
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53829
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53775
53830
  time_pairs?: {
53776
- /** Label for the check-in/check-out time pairing. */
53831
+ /** Label for the start/end time pairing. */
53777
53832
  display_name: string;
53778
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53779
- check_in_time: string;
53780
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
53781
- check_out_time: string;
53833
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53834
+ start_time: string;
53835
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
53836
+ end_time: string;
53782
53837
  }[] | undefined;
53783
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53838
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53784
53839
  start_date_recurrence_rule?: string | undefined;
53785
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53840
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53786
53841
  end_date_recurrence_rule?: string | undefined;
53787
53842
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
53788
53843
  time_zone?: string | undefined;
53789
53844
  }[] | undefined) | undefined;
53790
53845
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
53791
53846
  online_time_frame_options?: ({
53792
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
53847
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
53793
53848
  display_name: string;
53794
53849
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
53795
53850
  min_duration?: string | undefined;
53796
53851
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
53797
53852
  max_duration?: string | undefined;
53798
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53853
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53799
53854
  matching_start_end_time?: true | undefined;
53800
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53855
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53801
53856
  time_pairs?: {
53802
- /** Label for the check-in/check-out time pairing. */
53857
+ /** Label for the start/end time pairing. */
53803
53858
  display_name: string;
53804
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53805
- check_in_time: string;
53806
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
53807
- check_out_time: string;
53859
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53860
+ start_time: string;
53861
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
53862
+ end_time: string;
53808
53863
  }[] | undefined;
53809
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53864
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53810
53865
  start_date_recurrence_rule?: string | undefined;
53811
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53866
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53812
53867
  end_date_recurrence_rule?: string | undefined;
53813
53868
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
53814
53869
  time_zone?: string | undefined;
@@ -54542,7 +54597,7 @@ export type Routes = {
54542
54597
  /** ID of the device. */
54543
54598
  device_id: string;
54544
54599
  /** Type of the device. */
54545
- 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';
54600
+ 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';
54546
54601
  /** IDs of the spaces the device is in. */
54547
54602
  space_ids: string[];
54548
54603
  /** Optional nickname to describe the device, settable through Seam. */
@@ -55189,6 +55244,17 @@ export type Routes = {
55189
55244
  /** Location ID for a Korelock device. Required for timebound access codes. */
55190
55245
  location_id?: (string | null) | undefined;
55191
55246
  } | undefined;
55247
+ /** Metadata for a Kisi device. */
55248
+ kisi_metadata?: {
55249
+ /** Lock ID for a Kisi device. */
55250
+ lock_id: number;
55251
+ /** Lock name for a Kisi device. */
55252
+ lock_name: string;
55253
+ /** Place name for a Kisi device. */
55254
+ place_name: string | null;
55255
+ /** Description for a Kisi device. */
55256
+ description: string | null;
55257
+ } | undefined;
55192
55258
  }) & ({
55193
55259
  /** */
55194
55260
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -55207,52 +55273,52 @@ export type Routes = {
55207
55273
  supported_code_lengths?: (number[] | undefined) | undefined;
55208
55274
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
55209
55275
  offline_time_frame_options?: ({
55210
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
55276
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
55211
55277
  display_name: string;
55212
55278
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
55213
55279
  min_duration?: string | undefined;
55214
55280
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
55215
55281
  max_duration?: string | undefined;
55216
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55282
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55217
55283
  matching_start_end_time?: true | undefined;
55218
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55284
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55219
55285
  time_pairs?: {
55220
- /** Label for the check-in/check-out time pairing. */
55286
+ /** Label for the start/end time pairing. */
55221
55287
  display_name: string;
55222
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55223
- check_in_time: string;
55224
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
55225
- check_out_time: string;
55288
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55289
+ start_time: string;
55290
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
55291
+ end_time: string;
55226
55292
  }[] | undefined;
55227
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55293
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55228
55294
  start_date_recurrence_rule?: string | undefined;
55229
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55295
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55230
55296
  end_date_recurrence_rule?: string | undefined;
55231
55297
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
55232
55298
  time_zone?: string | undefined;
55233
55299
  }[] | undefined) | undefined;
55234
55300
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
55235
55301
  online_time_frame_options?: ({
55236
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
55302
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
55237
55303
  display_name: string;
55238
55304
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
55239
55305
  min_duration?: string | undefined;
55240
55306
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
55241
55307
  max_duration?: string | undefined;
55242
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55308
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55243
55309
  matching_start_end_time?: true | undefined;
55244
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55310
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55245
55311
  time_pairs?: {
55246
- /** Label for the check-in/check-out time pairing. */
55312
+ /** Label for the start/end time pairing. */
55247
55313
  display_name: string;
55248
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55249
- check_in_time: string;
55250
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
55251
- check_out_time: string;
55314
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55315
+ start_time: string;
55316
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
55317
+ end_time: string;
55252
55318
  }[] | undefined;
55253
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55319
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55254
55320
  start_date_recurrence_rule?: string | undefined;
55255
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55321
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55256
55322
  end_date_recurrence_rule?: string | undefined;
55257
55323
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
55258
55324
  time_zone?: string | undefined;
@@ -55999,11 +56065,11 @@ export type Routes = {
55999
56065
  /** ID of the Connect Webview for which you want to list devices. */
56000
56066
  connect_webview_id?: string | undefined;
56001
56067
  /** Device type of the locks that you want to list. */
56002
- 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;
56068
+ 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;
56003
56069
  /** Device types of the locks that you want to list. */
56004
- 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;
56070
+ 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;
56005
56071
  /** Manufacturer of the locks that you want to list. */
56006
- 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;
56072
+ 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;
56007
56073
  /** Array of device IDs for which you want to list devices. */
56008
56074
  device_ids?: string[] | undefined;
56009
56075
  /** Numerical limit on the number of devices to return. */
@@ -56036,7 +56102,7 @@ export type Routes = {
56036
56102
  /** ID of the device. */
56037
56103
  device_id: string;
56038
56104
  /** Type of the device. */
56039
- 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';
56105
+ 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';
56040
56106
  /** IDs of the spaces the device is in. */
56041
56107
  space_ids: string[];
56042
56108
  /** Optional nickname to describe the device, settable through Seam. */
@@ -56683,6 +56749,17 @@ export type Routes = {
56683
56749
  /** Location ID for a Korelock device. Required for timebound access codes. */
56684
56750
  location_id?: (string | null) | undefined;
56685
56751
  } | undefined;
56752
+ /** Metadata for a Kisi device. */
56753
+ kisi_metadata?: {
56754
+ /** Lock ID for a Kisi device. */
56755
+ lock_id: number;
56756
+ /** Lock name for a Kisi device. */
56757
+ lock_name: string;
56758
+ /** Place name for a Kisi device. */
56759
+ place_name: string | null;
56760
+ /** Description for a Kisi device. */
56761
+ description: string | null;
56762
+ } | undefined;
56686
56763
  }) & ({
56687
56764
  /** */
56688
56765
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -56701,52 +56778,52 @@ export type Routes = {
56701
56778
  supported_code_lengths?: (number[] | undefined) | undefined;
56702
56779
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
56703
56780
  offline_time_frame_options?: ({
56704
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
56781
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
56705
56782
  display_name: string;
56706
56783
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
56707
56784
  min_duration?: string | undefined;
56708
56785
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
56709
56786
  max_duration?: string | undefined;
56710
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56787
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56711
56788
  matching_start_end_time?: true | undefined;
56712
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56789
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56713
56790
  time_pairs?: {
56714
- /** Label for the check-in/check-out time pairing. */
56791
+ /** Label for the start/end time pairing. */
56715
56792
  display_name: string;
56716
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56717
- check_in_time: string;
56718
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
56719
- check_out_time: string;
56793
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56794
+ start_time: string;
56795
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
56796
+ end_time: string;
56720
56797
  }[] | undefined;
56721
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56798
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56722
56799
  start_date_recurrence_rule?: string | undefined;
56723
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56800
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56724
56801
  end_date_recurrence_rule?: string | undefined;
56725
56802
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
56726
56803
  time_zone?: string | undefined;
56727
56804
  }[] | undefined) | undefined;
56728
56805
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
56729
56806
  online_time_frame_options?: ({
56730
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
56807
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
56731
56808
  display_name: string;
56732
56809
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
56733
56810
  min_duration?: string | undefined;
56734
56811
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
56735
56812
  max_duration?: string | undefined;
56736
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56813
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56737
56814
  matching_start_end_time?: true | undefined;
56738
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56815
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56739
56816
  time_pairs?: {
56740
- /** Label for the check-in/check-out time pairing. */
56817
+ /** Label for the start/end time pairing. */
56741
56818
  display_name: string;
56742
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56743
- check_in_time: string;
56744
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
56745
- check_out_time: string;
56819
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56820
+ start_time: string;
56821
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
56822
+ end_time: string;
56746
56823
  }[] | undefined;
56747
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56824
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56748
56825
  start_date_recurrence_rule?: string | undefined;
56749
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56826
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56750
56827
  end_date_recurrence_rule?: string | undefined;
56751
56828
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
56752
56829
  time_zone?: string | undefined;
@@ -57479,7 +57556,7 @@ export type Routes = {
57479
57556
  /** ID of the device. */
57480
57557
  device_id: string;
57481
57558
  /** Type of the device. */
57482
- 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';
57559
+ 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';
57483
57560
  /** IDs of the spaces the device is in. */
57484
57561
  space_ids: string[];
57485
57562
  /** Optional nickname to describe the device, settable through Seam. */
@@ -58126,6 +58203,17 @@ export type Routes = {
58126
58203
  /** Location ID for a Korelock device. Required for timebound access codes. */
58127
58204
  location_id?: (string | null) | undefined;
58128
58205
  } | undefined;
58206
+ /** Metadata for a Kisi device. */
58207
+ kisi_metadata?: {
58208
+ /** Lock ID for a Kisi device. */
58209
+ lock_id: number;
58210
+ /** Lock name for a Kisi device. */
58211
+ lock_name: string;
58212
+ /** Place name for a Kisi device. */
58213
+ place_name: string | null;
58214
+ /** Description for a Kisi device. */
58215
+ description: string | null;
58216
+ } | undefined;
58129
58217
  }) & ({
58130
58218
  /** */
58131
58219
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -58144,52 +58232,52 @@ export type Routes = {
58144
58232
  supported_code_lengths?: (number[] | undefined) | undefined;
58145
58233
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
58146
58234
  offline_time_frame_options?: ({
58147
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
58235
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
58148
58236
  display_name: string;
58149
58237
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
58150
58238
  min_duration?: string | undefined;
58151
58239
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
58152
58240
  max_duration?: string | undefined;
58153
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58241
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58154
58242
  matching_start_end_time?: true | undefined;
58155
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58243
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58156
58244
  time_pairs?: {
58157
- /** Label for the check-in/check-out time pairing. */
58245
+ /** Label for the start/end time pairing. */
58158
58246
  display_name: string;
58159
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58160
- check_in_time: string;
58161
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
58162
- check_out_time: string;
58247
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58248
+ start_time: string;
58249
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
58250
+ end_time: string;
58163
58251
  }[] | undefined;
58164
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58252
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58165
58253
  start_date_recurrence_rule?: string | undefined;
58166
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58254
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58167
58255
  end_date_recurrence_rule?: string | undefined;
58168
58256
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
58169
58257
  time_zone?: string | undefined;
58170
58258
  }[] | undefined) | undefined;
58171
58259
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
58172
58260
  online_time_frame_options?: ({
58173
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
58261
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
58174
58262
  display_name: string;
58175
58263
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
58176
58264
  min_duration?: string | undefined;
58177
58265
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
58178
58266
  max_duration?: string | undefined;
58179
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58267
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58180
58268
  matching_start_end_time?: true | undefined;
58181
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58269
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58182
58270
  time_pairs?: {
58183
- /** Label for the check-in/check-out time pairing. */
58271
+ /** Label for the start/end time pairing. */
58184
58272
  display_name: string;
58185
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58186
- check_in_time: string;
58187
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
58188
- check_out_time: string;
58273
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58274
+ start_time: string;
58275
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
58276
+ end_time: string;
58189
58277
  }[] | undefined;
58190
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58278
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58191
58279
  start_date_recurrence_rule?: string | undefined;
58192
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58280
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58193
58281
  end_date_recurrence_rule?: string | undefined;
58194
58282
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
58195
58283
  time_zone?: string | undefined;
@@ -65699,7 +65787,7 @@ export type Routes = {
65699
65787
  /** ID of the device. */
65700
65788
  device_id: string;
65701
65789
  /** Type of the device. */
65702
- 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';
65790
+ 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';
65703
65791
  /** IDs of the spaces the device is in. */
65704
65792
  space_ids: string[];
65705
65793
  /** Optional nickname to describe the device, settable through Seam. */
@@ -66346,6 +66434,17 @@ export type Routes = {
66346
66434
  /** Location ID for a Korelock device. Required for timebound access codes. */
66347
66435
  location_id?: (string | null) | undefined;
66348
66436
  } | undefined;
66437
+ /** Metadata for a Kisi device. */
66438
+ kisi_metadata?: {
66439
+ /** Lock ID for a Kisi device. */
66440
+ lock_id: number;
66441
+ /** Lock name for a Kisi device. */
66442
+ lock_name: string;
66443
+ /** Place name for a Kisi device. */
66444
+ place_name: string | null;
66445
+ /** Description for a Kisi device. */
66446
+ description: string | null;
66447
+ } | undefined;
66349
66448
  }) & ({
66350
66449
  /** */
66351
66450
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -66364,52 +66463,52 @@ export type Routes = {
66364
66463
  supported_code_lengths?: (number[] | undefined) | undefined;
66365
66464
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
66366
66465
  offline_time_frame_options?: ({
66367
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
66466
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
66368
66467
  display_name: string;
66369
66468
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66370
66469
  min_duration?: string | undefined;
66371
66470
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66372
66471
  max_duration?: string | undefined;
66373
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66472
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66374
66473
  matching_start_end_time?: true | undefined;
66375
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66474
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66376
66475
  time_pairs?: {
66377
- /** Label for the check-in/check-out time pairing. */
66476
+ /** Label for the start/end time pairing. */
66378
66477
  display_name: string;
66379
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66380
- check_in_time: string;
66381
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
66382
- check_out_time: string;
66478
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66479
+ start_time: string;
66480
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
66481
+ end_time: string;
66383
66482
  }[] | undefined;
66384
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66483
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66385
66484
  start_date_recurrence_rule?: string | undefined;
66386
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66485
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66387
66486
  end_date_recurrence_rule?: string | undefined;
66388
66487
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66389
66488
  time_zone?: string | undefined;
66390
66489
  }[] | undefined) | undefined;
66391
66490
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
66392
66491
  online_time_frame_options?: ({
66393
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
66492
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
66394
66493
  display_name: string;
66395
66494
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66396
66495
  min_duration?: string | undefined;
66397
66496
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66398
66497
  max_duration?: string | undefined;
66399
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66498
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66400
66499
  matching_start_end_time?: true | undefined;
66401
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66500
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66402
66501
  time_pairs?: {
66403
- /** Label for the check-in/check-out time pairing. */
66502
+ /** Label for the start/end time pairing. */
66404
66503
  display_name: string;
66405
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66406
- check_in_time: string;
66407
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
66408
- check_out_time: string;
66504
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66505
+ start_time: string;
66506
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
66507
+ end_time: string;
66409
66508
  }[] | undefined;
66410
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66509
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66411
66510
  start_date_recurrence_rule?: string | undefined;
66412
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66511
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66413
66512
  end_date_recurrence_rule?: string | undefined;
66414
66513
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66415
66514
  time_zone?: string | undefined;
@@ -67142,7 +67241,7 @@ export type Routes = {
67142
67241
  /** ID of the device. */
67143
67242
  device_id: string;
67144
67243
  /** Type of the device. */
67145
- 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';
67244
+ 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';
67146
67245
  /** IDs of the spaces the device is in. */
67147
67246
  space_ids: string[];
67148
67247
  /** Optional nickname to describe the device, settable through Seam. */
@@ -67789,6 +67888,17 @@ export type Routes = {
67789
67888
  /** Location ID for a Korelock device. Required for timebound access codes. */
67790
67889
  location_id?: (string | null) | undefined;
67791
67890
  } | undefined;
67891
+ /** Metadata for a Kisi device. */
67892
+ kisi_metadata?: {
67893
+ /** Lock ID for a Kisi device. */
67894
+ lock_id: number;
67895
+ /** Lock name for a Kisi device. */
67896
+ lock_name: string;
67897
+ /** Place name for a Kisi device. */
67898
+ place_name: string | null;
67899
+ /** Description for a Kisi device. */
67900
+ description: string | null;
67901
+ } | undefined;
67792
67902
  }) & ({
67793
67903
  /** */
67794
67904
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -67807,52 +67917,52 @@ export type Routes = {
67807
67917
  supported_code_lengths?: (number[] | undefined) | undefined;
67808
67918
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
67809
67919
  offline_time_frame_options?: ({
67810
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
67920
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
67811
67921
  display_name: string;
67812
67922
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
67813
67923
  min_duration?: string | undefined;
67814
67924
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
67815
67925
  max_duration?: string | undefined;
67816
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67926
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67817
67927
  matching_start_end_time?: true | undefined;
67818
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67928
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67819
67929
  time_pairs?: {
67820
- /** Label for the check-in/check-out time pairing. */
67930
+ /** Label for the start/end time pairing. */
67821
67931
  display_name: string;
67822
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67823
- check_in_time: string;
67824
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
67825
- check_out_time: string;
67932
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67933
+ start_time: string;
67934
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
67935
+ end_time: string;
67826
67936
  }[] | undefined;
67827
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67937
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67828
67938
  start_date_recurrence_rule?: string | undefined;
67829
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67939
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67830
67940
  end_date_recurrence_rule?: string | undefined;
67831
67941
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
67832
67942
  time_zone?: string | undefined;
67833
67943
  }[] | undefined) | undefined;
67834
67944
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
67835
67945
  online_time_frame_options?: ({
67836
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
67946
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
67837
67947
  display_name: string;
67838
67948
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
67839
67949
  min_duration?: string | undefined;
67840
67950
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
67841
67951
  max_duration?: string | undefined;
67842
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67952
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67843
67953
  matching_start_end_time?: true | undefined;
67844
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67954
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67845
67955
  time_pairs?: {
67846
- /** Label for the check-in/check-out time pairing. */
67956
+ /** Label for the start/end time pairing. */
67847
67957
  display_name: string;
67848
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67849
- check_in_time: string;
67850
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
67851
- check_out_time: string;
67958
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67959
+ start_time: string;
67960
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
67961
+ end_time: string;
67852
67962
  }[] | undefined;
67853
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67963
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67854
67964
  start_date_recurrence_rule?: string | undefined;
67855
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67965
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67856
67966
  end_date_recurrence_rule?: string | undefined;
67857
67967
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
67858
67968
  time_zone?: string | undefined;
@@ -82654,7 +82764,7 @@ export type Routes = {
82654
82764
  /** ID of the device. */
82655
82765
  device_id: string;
82656
82766
  /** Type of the device. */
82657
- 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';
82767
+ 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';
82658
82768
  /** IDs of the spaces the device is in. */
82659
82769
  space_ids: string[];
82660
82770
  /** Optional nickname to describe the device, settable through Seam. */
@@ -83301,6 +83411,17 @@ export type Routes = {
83301
83411
  /** Location ID for a Korelock device. Required for timebound access codes. */
83302
83412
  location_id?: (string | null) | undefined;
83303
83413
  } | undefined;
83414
+ /** Metadata for a Kisi device. */
83415
+ kisi_metadata?: {
83416
+ /** Lock ID for a Kisi device. */
83417
+ lock_id: number;
83418
+ /** Lock name for a Kisi device. */
83419
+ lock_name: string;
83420
+ /** Place name for a Kisi device. */
83421
+ place_name: string | null;
83422
+ /** Description for a Kisi device. */
83423
+ description: string | null;
83424
+ } | undefined;
83304
83425
  }) & ({
83305
83426
  /** */
83306
83427
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -83319,52 +83440,52 @@ export type Routes = {
83319
83440
  supported_code_lengths?: (number[] | undefined) | undefined;
83320
83441
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
83321
83442
  offline_time_frame_options?: ({
83322
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
83443
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
83323
83444
  display_name: string;
83324
83445
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
83325
83446
  min_duration?: string | undefined;
83326
83447
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
83327
83448
  max_duration?: string | undefined;
83328
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83449
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83329
83450
  matching_start_end_time?: true | undefined;
83330
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83451
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83331
83452
  time_pairs?: {
83332
- /** Label for the check-in/check-out time pairing. */
83453
+ /** Label for the start/end time pairing. */
83333
83454
  display_name: string;
83334
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83335
- check_in_time: string;
83336
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
83337
- check_out_time: string;
83455
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83456
+ start_time: string;
83457
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
83458
+ end_time: string;
83338
83459
  }[] | undefined;
83339
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83460
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83340
83461
  start_date_recurrence_rule?: string | undefined;
83341
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83462
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83342
83463
  end_date_recurrence_rule?: string | undefined;
83343
83464
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
83344
83465
  time_zone?: string | undefined;
83345
83466
  }[] | undefined) | undefined;
83346
83467
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
83347
83468
  online_time_frame_options?: ({
83348
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
83469
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
83349
83470
  display_name: string;
83350
83471
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
83351
83472
  min_duration?: string | undefined;
83352
83473
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
83353
83474
  max_duration?: string | undefined;
83354
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83475
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83355
83476
  matching_start_end_time?: true | undefined;
83356
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83477
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83357
83478
  time_pairs?: {
83358
- /** Label for the check-in/check-out time pairing. */
83479
+ /** Label for the start/end time pairing. */
83359
83480
  display_name: string;
83360
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83361
- check_in_time: string;
83362
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
83363
- check_out_time: string;
83481
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83482
+ start_time: string;
83483
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
83484
+ end_time: string;
83364
83485
  }[] | undefined;
83365
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83486
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83366
83487
  start_date_recurrence_rule?: string | undefined;
83367
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83488
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83368
83489
  end_date_recurrence_rule?: string | undefined;
83369
83490
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
83370
83491
  time_zone?: string | undefined;
@@ -90105,7 +90226,7 @@ export type Routes = {
90105
90226
  /** ID of the device. */
90106
90227
  device_id: string;
90107
90228
  /** Type of the device. */
90108
- 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';
90229
+ 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';
90109
90230
  /** IDs of the spaces the device is in. */
90110
90231
  space_ids: string[];
90111
90232
  /** Optional nickname to describe the device, settable through Seam. */
@@ -90752,6 +90873,17 @@ export type Routes = {
90752
90873
  /** Location ID for a Korelock device. Required for timebound access codes. */
90753
90874
  location_id?: (string | null) | undefined;
90754
90875
  } | undefined;
90876
+ /** Metadata for a Kisi device. */
90877
+ kisi_metadata?: {
90878
+ /** Lock ID for a Kisi device. */
90879
+ lock_id: number;
90880
+ /** Lock name for a Kisi device. */
90881
+ lock_name: string;
90882
+ /** Place name for a Kisi device. */
90883
+ place_name: string | null;
90884
+ /** Description for a Kisi device. */
90885
+ description: string | null;
90886
+ } | undefined;
90755
90887
  }) & ({
90756
90888
  /** */
90757
90889
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -90770,52 +90902,52 @@ export type Routes = {
90770
90902
  supported_code_lengths?: (number[] | undefined) | undefined;
90771
90903
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
90772
90904
  offline_time_frame_options?: ({
90773
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
90905
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
90774
90906
  display_name: string;
90775
90907
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
90776
90908
  min_duration?: string | undefined;
90777
90909
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
90778
90910
  max_duration?: string | undefined;
90779
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90911
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90780
90912
  matching_start_end_time?: true | undefined;
90781
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90913
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90782
90914
  time_pairs?: {
90783
- /** Label for the check-in/check-out time pairing. */
90915
+ /** Label for the start/end time pairing. */
90784
90916
  display_name: string;
90785
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90786
- check_in_time: string;
90787
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
90788
- check_out_time: string;
90917
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90918
+ start_time: string;
90919
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
90920
+ end_time: string;
90789
90921
  }[] | undefined;
90790
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90922
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90791
90923
  start_date_recurrence_rule?: string | undefined;
90792
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90924
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90793
90925
  end_date_recurrence_rule?: string | undefined;
90794
90926
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
90795
90927
  time_zone?: string | undefined;
90796
90928
  }[] | undefined) | undefined;
90797
90929
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
90798
90930
  online_time_frame_options?: ({
90799
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
90931
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
90800
90932
  display_name: string;
90801
90933
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
90802
90934
  min_duration?: string | undefined;
90803
90935
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
90804
90936
  max_duration?: string | undefined;
90805
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90937
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90806
90938
  matching_start_end_time?: true | undefined;
90807
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90939
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90808
90940
  time_pairs?: {
90809
- /** Label for the check-in/check-out time pairing. */
90941
+ /** Label for the start/end time pairing. */
90810
90942
  display_name: string;
90811
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90812
- check_in_time: string;
90813
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
90814
- check_out_time: string;
90943
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90944
+ start_time: string;
90945
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
90946
+ end_time: string;
90815
90947
  }[] | undefined;
90816
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90948
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90817
90949
  start_date_recurrence_rule?: string | undefined;
90818
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90950
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90819
90951
  end_date_recurrence_rule?: string | undefined;
90820
90952
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
90821
90953
  time_zone?: string | undefined;
@@ -94975,7 +95107,7 @@ export type Routes = {
94975
95107
  /** ID of the device. */
94976
95108
  device_id: string;
94977
95109
  /** Type of the device. */
94978
- 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';
95110
+ 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';
94979
95111
  /** IDs of the spaces the device is in. */
94980
95112
  space_ids: string[];
94981
95113
  /** Optional nickname to describe the device, settable through Seam. */
@@ -95622,6 +95754,17 @@ export type Routes = {
95622
95754
  /** Location ID for a Korelock device. Required for timebound access codes. */
95623
95755
  location_id?: (string | null) | undefined;
95624
95756
  } | undefined;
95757
+ /** Metadata for a Kisi device. */
95758
+ kisi_metadata?: {
95759
+ /** Lock ID for a Kisi device. */
95760
+ lock_id: number;
95761
+ /** Lock name for a Kisi device. */
95762
+ lock_name: string;
95763
+ /** Place name for a Kisi device. */
95764
+ place_name: string | null;
95765
+ /** Description for a Kisi device. */
95766
+ description: string | null;
95767
+ } | undefined;
95625
95768
  }) & ({
95626
95769
  /** */
95627
95770
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -95640,52 +95783,52 @@ export type Routes = {
95640
95783
  supported_code_lengths?: (number[] | undefined) | undefined;
95641
95784
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
95642
95785
  offline_time_frame_options?: ({
95643
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
95786
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
95644
95787
  display_name: string;
95645
95788
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
95646
95789
  min_duration?: string | undefined;
95647
95790
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
95648
95791
  max_duration?: string | undefined;
95649
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95792
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95650
95793
  matching_start_end_time?: true | undefined;
95651
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95794
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95652
95795
  time_pairs?: {
95653
- /** Label for the check-in/check-out time pairing. */
95796
+ /** Label for the start/end time pairing. */
95654
95797
  display_name: string;
95655
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95656
- check_in_time: string;
95657
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
95658
- check_out_time: string;
95798
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95799
+ start_time: string;
95800
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
95801
+ end_time: string;
95659
95802
  }[] | undefined;
95660
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95803
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95661
95804
  start_date_recurrence_rule?: string | undefined;
95662
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95805
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95663
95806
  end_date_recurrence_rule?: string | undefined;
95664
95807
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
95665
95808
  time_zone?: string | undefined;
95666
95809
  }[] | undefined) | undefined;
95667
95810
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
95668
95811
  online_time_frame_options?: ({
95669
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
95812
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
95670
95813
  display_name: string;
95671
95814
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
95672
95815
  min_duration?: string | undefined;
95673
95816
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
95674
95817
  max_duration?: string | undefined;
95675
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95818
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95676
95819
  matching_start_end_time?: true | undefined;
95677
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95820
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95678
95821
  time_pairs?: {
95679
- /** Label for the check-in/check-out time pairing. */
95822
+ /** Label for the start/end time pairing. */
95680
95823
  display_name: string;
95681
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95682
- check_in_time: string;
95683
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
95684
- check_out_time: string;
95824
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95825
+ start_time: string;
95826
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
95827
+ end_time: string;
95685
95828
  }[] | undefined;
95686
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95829
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95687
95830
  start_date_recurrence_rule?: string | undefined;
95688
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95831
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95689
95832
  end_date_recurrence_rule?: string | undefined;
95690
95833
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
95691
95834
  time_zone?: string | undefined;
@@ -96418,7 +96561,7 @@ export type Routes = {
96418
96561
  /** ID of the device. */
96419
96562
  device_id: string;
96420
96563
  /** Type of the device. */
96421
- 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';
96564
+ 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';
96422
96565
  /** IDs of the spaces the device is in. */
96423
96566
  space_ids: string[];
96424
96567
  /** Optional nickname to describe the device, settable through Seam. */
@@ -97065,6 +97208,17 @@ export type Routes = {
97065
97208
  /** Location ID for a Korelock device. Required for timebound access codes. */
97066
97209
  location_id?: (string | null) | undefined;
97067
97210
  } | undefined;
97211
+ /** Metadata for a Kisi device. */
97212
+ kisi_metadata?: {
97213
+ /** Lock ID for a Kisi device. */
97214
+ lock_id: number;
97215
+ /** Lock name for a Kisi device. */
97216
+ lock_name: string;
97217
+ /** Place name for a Kisi device. */
97218
+ place_name: string | null;
97219
+ /** Description for a Kisi device. */
97220
+ description: string | null;
97221
+ } | undefined;
97068
97222
  }) & ({
97069
97223
  /** */
97070
97224
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -97083,52 +97237,52 @@ export type Routes = {
97083
97237
  supported_code_lengths?: (number[] | undefined) | undefined;
97084
97238
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
97085
97239
  offline_time_frame_options?: ({
97086
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
97240
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
97087
97241
  display_name: string;
97088
97242
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
97089
97243
  min_duration?: string | undefined;
97090
97244
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
97091
97245
  max_duration?: string | undefined;
97092
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97246
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97093
97247
  matching_start_end_time?: true | undefined;
97094
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97248
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97095
97249
  time_pairs?: {
97096
- /** Label for the check-in/check-out time pairing. */
97250
+ /** Label for the start/end time pairing. */
97097
97251
  display_name: string;
97098
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97099
- check_in_time: string;
97100
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
97101
- check_out_time: string;
97252
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97253
+ start_time: string;
97254
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
97255
+ end_time: string;
97102
97256
  }[] | undefined;
97103
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97257
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97104
97258
  start_date_recurrence_rule?: string | undefined;
97105
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97259
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97106
97260
  end_date_recurrence_rule?: string | undefined;
97107
97261
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
97108
97262
  time_zone?: string | undefined;
97109
97263
  }[] | undefined) | undefined;
97110
97264
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
97111
97265
  online_time_frame_options?: ({
97112
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
97266
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
97113
97267
  display_name: string;
97114
97268
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
97115
97269
  min_duration?: string | undefined;
97116
97270
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
97117
97271
  max_duration?: string | undefined;
97118
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97272
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97119
97273
  matching_start_end_time?: true | undefined;
97120
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97274
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97121
97275
  time_pairs?: {
97122
- /** Label for the check-in/check-out time pairing. */
97276
+ /** Label for the start/end time pairing. */
97123
97277
  display_name: string;
97124
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97125
- check_in_time: string;
97126
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
97127
- check_out_time: string;
97278
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97279
+ start_time: string;
97280
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
97281
+ end_time: string;
97128
97282
  }[] | undefined;
97129
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97283
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97130
97284
  start_date_recurrence_rule?: string | undefined;
97131
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97285
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97132
97286
  end_date_recurrence_rule?: string | undefined;
97133
97287
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
97134
97288
  time_zone?: string | undefined;
@@ -105577,7 +105731,7 @@ export type Routes = {
105577
105731
  /** ID of the device. */
105578
105732
  device_id: string;
105579
105733
  /** Type of the device. */
105580
- 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';
105734
+ 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';
105581
105735
  /** IDs of the spaces the device is in. */
105582
105736
  space_ids: string[];
105583
105737
  /** Optional nickname to describe the device, settable through Seam. */
@@ -106224,6 +106378,17 @@ export type Routes = {
106224
106378
  /** Location ID for a Korelock device. Required for timebound access codes. */
106225
106379
  location_id?: (string | null) | undefined;
106226
106380
  } | undefined;
106381
+ /** Metadata for a Kisi device. */
106382
+ kisi_metadata?: {
106383
+ /** Lock ID for a Kisi device. */
106384
+ lock_id: number;
106385
+ /** Lock name for a Kisi device. */
106386
+ lock_name: string;
106387
+ /** Place name for a Kisi device. */
106388
+ place_name: string | null;
106389
+ /** Description for a Kisi device. */
106390
+ description: string | null;
106391
+ } | undefined;
106227
106392
  }) & ({
106228
106393
  /** */
106229
106394
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -106242,52 +106407,52 @@ export type Routes = {
106242
106407
  supported_code_lengths?: (number[] | undefined) | undefined;
106243
106408
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
106244
106409
  offline_time_frame_options?: ({
106245
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
106410
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
106246
106411
  display_name: string;
106247
106412
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
106248
106413
  min_duration?: string | undefined;
106249
106414
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
106250
106415
  max_duration?: string | undefined;
106251
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106416
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106252
106417
  matching_start_end_time?: true | undefined;
106253
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106418
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106254
106419
  time_pairs?: {
106255
- /** Label for the check-in/check-out time pairing. */
106420
+ /** Label for the start/end time pairing. */
106256
106421
  display_name: string;
106257
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106258
- check_in_time: string;
106259
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
106260
- check_out_time: string;
106422
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106423
+ start_time: string;
106424
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
106425
+ end_time: string;
106261
106426
  }[] | undefined;
106262
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106427
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106263
106428
  start_date_recurrence_rule?: string | undefined;
106264
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106429
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106265
106430
  end_date_recurrence_rule?: string | undefined;
106266
106431
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
106267
106432
  time_zone?: string | undefined;
106268
106433
  }[] | undefined) | undefined;
106269
106434
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
106270
106435
  online_time_frame_options?: ({
106271
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
106436
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
106272
106437
  display_name: string;
106273
106438
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
106274
106439
  min_duration?: string | undefined;
106275
106440
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
106276
106441
  max_duration?: string | undefined;
106277
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106442
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106278
106443
  matching_start_end_time?: true | undefined;
106279
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106444
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106280
106445
  time_pairs?: {
106281
- /** Label for the check-in/check-out time pairing. */
106446
+ /** Label for the start/end time pairing. */
106282
106447
  display_name: string;
106283
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106284
- check_in_time: string;
106285
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
106286
- check_out_time: string;
106448
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106449
+ start_time: string;
106450
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
106451
+ end_time: string;
106287
106452
  }[] | undefined;
106288
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106453
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106289
106454
  start_date_recurrence_rule?: string | undefined;
106290
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106455
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106291
106456
  end_date_recurrence_rule?: string | undefined;
106292
106457
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
106293
106458
  time_zone?: string | undefined;
@@ -107022,7 +107187,7 @@ export type Routes = {
107022
107187
  /** ID of the device. */
107023
107188
  device_id: string;
107024
107189
  /** Type of the device. */
107025
- 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';
107190
+ 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';
107026
107191
  /** IDs of the spaces the device is in. */
107027
107192
  space_ids: string[];
107028
107193
  /** Optional nickname to describe the device, settable through Seam. */
@@ -107669,6 +107834,17 @@ export type Routes = {
107669
107834
  /** Location ID for a Korelock device. Required for timebound access codes. */
107670
107835
  location_id?: (string | null) | undefined;
107671
107836
  } | undefined;
107837
+ /** Metadata for a Kisi device. */
107838
+ kisi_metadata?: {
107839
+ /** Lock ID for a Kisi device. */
107840
+ lock_id: number;
107841
+ /** Lock name for a Kisi device. */
107842
+ lock_name: string;
107843
+ /** Place name for a Kisi device. */
107844
+ place_name: string | null;
107845
+ /** Description for a Kisi device. */
107846
+ description: string | null;
107847
+ } | undefined;
107672
107848
  }) & ({
107673
107849
  /** */
107674
107850
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -107687,52 +107863,52 @@ export type Routes = {
107687
107863
  supported_code_lengths?: (number[] | undefined) | undefined;
107688
107864
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
107689
107865
  offline_time_frame_options?: ({
107690
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
107866
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
107691
107867
  display_name: string;
107692
107868
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
107693
107869
  min_duration?: string | undefined;
107694
107870
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
107695
107871
  max_duration?: string | undefined;
107696
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107872
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107697
107873
  matching_start_end_time?: true | undefined;
107698
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107874
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107699
107875
  time_pairs?: {
107700
- /** Label for the check-in/check-out time pairing. */
107876
+ /** Label for the start/end time pairing. */
107701
107877
  display_name: string;
107702
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107703
- check_in_time: string;
107704
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
107705
- check_out_time: string;
107878
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107879
+ start_time: string;
107880
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
107881
+ end_time: string;
107706
107882
  }[] | undefined;
107707
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107883
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107708
107884
  start_date_recurrence_rule?: string | undefined;
107709
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107885
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107710
107886
  end_date_recurrence_rule?: string | undefined;
107711
107887
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
107712
107888
  time_zone?: string | undefined;
107713
107889
  }[] | undefined) | undefined;
107714
107890
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
107715
107891
  online_time_frame_options?: ({
107716
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
107892
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
107717
107893
  display_name: string;
107718
107894
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
107719
107895
  min_duration?: string | undefined;
107720
107896
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
107721
107897
  max_duration?: string | undefined;
107722
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107898
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107723
107899
  matching_start_end_time?: true | undefined;
107724
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107900
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107725
107901
  time_pairs?: {
107726
- /** Label for the check-in/check-out time pairing. */
107902
+ /** Label for the start/end time pairing. */
107727
107903
  display_name: string;
107728
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107729
- check_in_time: string;
107730
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
107731
- check_out_time: string;
107904
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107905
+ start_time: string;
107906
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
107907
+ end_time: string;
107732
107908
  }[] | undefined;
107733
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107909
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107734
107910
  start_date_recurrence_rule?: string | undefined;
107735
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107911
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107736
107912
  end_date_recurrence_rule?: string | undefined;
107737
107913
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
107738
107914
  time_zone?: string | undefined;
@@ -109722,7 +109898,7 @@ export type Routes = {
109722
109898
  /** ID of the device. */
109723
109899
  device_id: string;
109724
109900
  /** Type of the device. */
109725
- 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';
109901
+ 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';
109726
109902
  /** IDs of the spaces the device is in. */
109727
109903
  space_ids: string[];
109728
109904
  /** Optional nickname to describe the device, settable through Seam. */
@@ -110369,6 +110545,17 @@ export type Routes = {
110369
110545
  /** Location ID for a Korelock device. Required for timebound access codes. */
110370
110546
  location_id?: (string | null) | undefined;
110371
110547
  } | undefined;
110548
+ /** Metadata for a Kisi device. */
110549
+ kisi_metadata?: {
110550
+ /** Lock ID for a Kisi device. */
110551
+ lock_id: number;
110552
+ /** Lock name for a Kisi device. */
110553
+ lock_name: string;
110554
+ /** Place name for a Kisi device. */
110555
+ place_name: string | null;
110556
+ /** Description for a Kisi device. */
110557
+ description: string | null;
110558
+ } | undefined;
110372
110559
  }) & ({
110373
110560
  /** */
110374
110561
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -110387,52 +110574,52 @@ export type Routes = {
110387
110574
  supported_code_lengths?: (number[] | undefined) | undefined;
110388
110575
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
110389
110576
  offline_time_frame_options?: ({
110390
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
110577
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
110391
110578
  display_name: string;
110392
110579
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
110393
110580
  min_duration?: string | undefined;
110394
110581
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
110395
110582
  max_duration?: string | undefined;
110396
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110583
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110397
110584
  matching_start_end_time?: true | undefined;
110398
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110585
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110399
110586
  time_pairs?: {
110400
- /** Label for the check-in/check-out time pairing. */
110587
+ /** Label for the start/end time pairing. */
110401
110588
  display_name: string;
110402
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110403
- check_in_time: string;
110404
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
110405
- check_out_time: string;
110589
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110590
+ start_time: string;
110591
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
110592
+ end_time: string;
110406
110593
  }[] | undefined;
110407
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110594
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110408
110595
  start_date_recurrence_rule?: string | undefined;
110409
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110596
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110410
110597
  end_date_recurrence_rule?: string | undefined;
110411
110598
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
110412
110599
  time_zone?: string | undefined;
110413
110600
  }[] | undefined) | undefined;
110414
110601
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
110415
110602
  online_time_frame_options?: ({
110416
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
110603
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
110417
110604
  display_name: string;
110418
110605
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
110419
110606
  min_duration?: string | undefined;
110420
110607
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
110421
110608
  max_duration?: string | undefined;
110422
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110609
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110423
110610
  matching_start_end_time?: true | undefined;
110424
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110611
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110425
110612
  time_pairs?: {
110426
- /** Label for the check-in/check-out time pairing. */
110613
+ /** Label for the start/end time pairing. */
110427
110614
  display_name: string;
110428
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110429
- check_in_time: string;
110430
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
110431
- check_out_time: string;
110615
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110616
+ start_time: string;
110617
+ /** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
110618
+ end_time: string;
110432
110619
  }[] | undefined;
110433
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110620
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110434
110621
  start_date_recurrence_rule?: string | undefined;
110435
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110622
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110436
110623
  end_date_recurrence_rule?: string | undefined;
110437
110624
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
110438
110625
  time_zone?: string | undefined;
@@ -114031,7 +114218,7 @@ export type Routes = {
114031
114218
  /** ID of the device. */
114032
114219
  device_id: string;
114033
114220
  /** Type of the device. */
114034
- 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';
114221
+ 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';
114035
114222
  /** Unique identifier for the account associated with the device. */
114036
114223
  connected_account_id: string;
114037
114224
  /** Location information for the device. */