@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
@@ -13523,6 +13523,7 @@ export type Routes = {
13523
13523
  | 'ultraloq_lock'
13524
13524
  | 'keyincode_lock'
13525
13525
  | 'omnitec_lock'
13526
+ | 'kisi_lock'
13526
13527
  )
13527
13528
  | 'keynest_key'
13528
13529
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -14283,6 +14284,19 @@ export type Routes = {
14283
14284
  location_id?: (string | null) | undefined
14284
14285
  }
14285
14286
  | undefined
14287
+ /** Metadata for a Kisi device. */
14288
+ kisi_metadata?:
14289
+ | {
14290
+ /** Lock ID for a Kisi device. */
14291
+ lock_id: number
14292
+ /** Lock name for a Kisi device. */
14293
+ lock_name: string
14294
+ /** Place name for a Kisi device. */
14295
+ place_name: string | null
14296
+ /** Description for a Kisi device. */
14297
+ description: string | null
14298
+ }
14299
+ | undefined
14286
14300
  }) &
14287
14301
  ({
14288
14302
  /** */
@@ -14328,28 +14342,28 @@ export type Routes = {
14328
14342
  offline_time_frame_options?:
14329
14343
  | (
14330
14344
  | {
14331
- /** 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`). */
14345
+ /** 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`). */
14332
14346
  display_name: string
14333
14347
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
14334
14348
  min_duration?: string | undefined
14335
14349
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
14336
14350
  max_duration?: string | undefined
14337
- /** 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`. */
14351
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
14338
14352
  matching_start_end_time?: true | undefined
14339
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
14353
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
14340
14354
  time_pairs?:
14341
14355
  | {
14342
- /** Label for the check-in/check-out time pairing. */
14356
+ /** Label for the start/end time pairing. */
14343
14357
  display_name: string
14344
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
14345
- check_in_time: string
14346
- /** 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. */
14347
- check_out_time: string
14358
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
14359
+ start_time: string
14360
+ /** 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. */
14361
+ end_time: string
14348
14362
  }[]
14349
14363
  | undefined
14350
- /** 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. */
14364
+ /** 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. */
14351
14365
  start_date_recurrence_rule?: string | undefined
14352
- /** 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. */
14366
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
14353
14367
  end_date_recurrence_rule?: string | undefined
14354
14368
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
14355
14369
  time_zone?: string | undefined
@@ -14361,28 +14375,28 @@ export type Routes = {
14361
14375
  online_time_frame_options?:
14362
14376
  | (
14363
14377
  | {
14364
- /** 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`). */
14378
+ /** 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`). */
14365
14379
  display_name: string
14366
14380
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
14367
14381
  min_duration?: string | undefined
14368
14382
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
14369
14383
  max_duration?: string | undefined
14370
- /** 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`. */
14384
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
14371
14385
  matching_start_end_time?: true | undefined
14372
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
14386
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
14373
14387
  time_pairs?:
14374
14388
  | {
14375
- /** Label for the check-in/check-out time pairing. */
14389
+ /** Label for the start/end time pairing. */
14376
14390
  display_name: string
14377
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
14378
- check_in_time: string
14379
- /** 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. */
14380
- check_out_time: string
14391
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
14392
+ start_time: string
14393
+ /** 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. */
14394
+ end_time: string
14381
14395
  }[]
14382
14396
  | undefined
14383
- /** 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. */
14397
+ /** 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. */
14384
14398
  start_date_recurrence_rule?: string | undefined
14385
- /** 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. */
14399
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
14386
14400
  end_date_recurrence_rule?: string | undefined
14387
14401
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
14388
14402
  time_zone?: string | undefined
@@ -21399,6 +21413,7 @@ export type Routes = {
21399
21413
  | 'ultraloq_lock'
21400
21414
  | 'keyincode_lock'
21401
21415
  | 'omnitec_lock'
21416
+ | 'kisi_lock'
21402
21417
  )
21403
21418
  | 'keynest_key'
21404
21419
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -22159,6 +22174,19 @@ export type Routes = {
22159
22174
  location_id?: (string | null) | undefined
22160
22175
  }
22161
22176
  | undefined
22177
+ /** Metadata for a Kisi device. */
22178
+ kisi_metadata?:
22179
+ | {
22180
+ /** Lock ID for a Kisi device. */
22181
+ lock_id: number
22182
+ /** Lock name for a Kisi device. */
22183
+ lock_name: string
22184
+ /** Place name for a Kisi device. */
22185
+ place_name: string | null
22186
+ /** Description for a Kisi device. */
22187
+ description: string | null
22188
+ }
22189
+ | undefined
22162
22190
  }) &
22163
22191
  ({
22164
22192
  /** */
@@ -22204,28 +22232,28 @@ export type Routes = {
22204
22232
  offline_time_frame_options?:
22205
22233
  | (
22206
22234
  | {
22207
- /** 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`). */
22235
+ /** 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`). */
22208
22236
  display_name: string
22209
22237
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
22210
22238
  min_duration?: string | undefined
22211
22239
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
22212
22240
  max_duration?: string | undefined
22213
- /** 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`. */
22241
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
22214
22242
  matching_start_end_time?: true | undefined
22215
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
22243
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
22216
22244
  time_pairs?:
22217
22245
  | {
22218
- /** Label for the check-in/check-out time pairing. */
22246
+ /** Label for the start/end time pairing. */
22219
22247
  display_name: string
22220
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
22221
- check_in_time: string
22222
- /** 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. */
22223
- check_out_time: string
22248
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
22249
+ start_time: string
22250
+ /** 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. */
22251
+ end_time: string
22224
22252
  }[]
22225
22253
  | undefined
22226
- /** 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. */
22254
+ /** 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. */
22227
22255
  start_date_recurrence_rule?: string | undefined
22228
- /** 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. */
22256
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
22229
22257
  end_date_recurrence_rule?: string | undefined
22230
22258
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
22231
22259
  time_zone?: string | undefined
@@ -22237,28 +22265,28 @@ export type Routes = {
22237
22265
  online_time_frame_options?:
22238
22266
  | (
22239
22267
  | {
22240
- /** 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`). */
22268
+ /** 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`). */
22241
22269
  display_name: string
22242
22270
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
22243
22271
  min_duration?: string | undefined
22244
22272
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
22245
22273
  max_duration?: string | undefined
22246
- /** 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`. */
22274
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
22247
22275
  matching_start_end_time?: true | undefined
22248
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
22276
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
22249
22277
  time_pairs?:
22250
22278
  | {
22251
- /** Label for the check-in/check-out time pairing. */
22279
+ /** Label for the start/end time pairing. */
22252
22280
  display_name: string
22253
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
22254
- check_in_time: string
22255
- /** 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. */
22256
- check_out_time: string
22281
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
22282
+ start_time: string
22283
+ /** 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. */
22284
+ end_time: string
22257
22285
  }[]
22258
22286
  | undefined
22259
- /** 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. */
22287
+ /** 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. */
22260
22288
  start_date_recurrence_rule?: string | undefined
22261
- /** 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. */
22289
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
22262
22290
  end_date_recurrence_rule?: string | undefined
22263
22291
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
22264
22292
  time_zone?: string | undefined
@@ -45482,6 +45510,7 @@ export type Routes = {
45482
45510
  | 'guesty'
45483
45511
  | 'acuity_scheduling'
45484
45512
  | 'omnitec'
45513
+ | 'kisi'
45485
45514
  | 'yale_access'
45486
45515
  | 'hid_cm'
45487
45516
  | 'google_nest'
@@ -47597,6 +47626,7 @@ export type Routes = {
47597
47626
  | 'ultraloq_lock'
47598
47627
  | 'keyincode_lock'
47599
47628
  | 'omnitec_lock'
47629
+ | 'kisi_lock'
47600
47630
  )
47601
47631
  | 'keynest_key'
47602
47632
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -48355,6 +48385,19 @@ export type Routes = {
48355
48385
  location_id?: (string | null) | undefined
48356
48386
  }
48357
48387
  | undefined
48388
+ /** Metadata for a Kisi device. */
48389
+ kisi_metadata?:
48390
+ | {
48391
+ /** Lock ID for a Kisi device. */
48392
+ lock_id: number
48393
+ /** Lock name for a Kisi device. */
48394
+ lock_name: string
48395
+ /** Place name for a Kisi device. */
48396
+ place_name: string | null
48397
+ /** Description for a Kisi device. */
48398
+ description: string | null
48399
+ }
48400
+ | undefined
48358
48401
  }) &
48359
48402
  ({
48360
48403
  /** */
@@ -48398,28 +48441,28 @@ export type Routes = {
48398
48441
  offline_time_frame_options?:
48399
48442
  | (
48400
48443
  | {
48401
- /** 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`). */
48444
+ /** 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`). */
48402
48445
  display_name: string
48403
48446
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
48404
48447
  min_duration?: string | undefined
48405
48448
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
48406
48449
  max_duration?: string | undefined
48407
- /** 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`. */
48450
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
48408
48451
  matching_start_end_time?: true | undefined
48409
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
48452
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
48410
48453
  time_pairs?:
48411
48454
  | {
48412
- /** Label for the check-in/check-out time pairing. */
48455
+ /** Label for the start/end time pairing. */
48413
48456
  display_name: string
48414
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
48415
- check_in_time: string
48416
- /** 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. */
48417
- check_out_time: string
48457
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
48458
+ start_time: string
48459
+ /** 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. */
48460
+ end_time: string
48418
48461
  }[]
48419
48462
  | undefined
48420
- /** 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. */
48463
+ /** 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. */
48421
48464
  start_date_recurrence_rule?: string | undefined
48422
- /** 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. */
48465
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
48423
48466
  end_date_recurrence_rule?: string | undefined
48424
48467
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
48425
48468
  time_zone?: string | undefined
@@ -48431,28 +48474,28 @@ export type Routes = {
48431
48474
  online_time_frame_options?:
48432
48475
  | (
48433
48476
  | {
48434
- /** 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`). */
48477
+ /** 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`). */
48435
48478
  display_name: string
48436
48479
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
48437
48480
  min_duration?: string | undefined
48438
48481
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
48439
48482
  max_duration?: string | undefined
48440
- /** 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`. */
48483
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
48441
48484
  matching_start_end_time?: true | undefined
48442
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
48485
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
48443
48486
  time_pairs?:
48444
48487
  | {
48445
- /** Label for the check-in/check-out time pairing. */
48488
+ /** Label for the start/end time pairing. */
48446
48489
  display_name: string
48447
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
48448
- check_in_time: string
48449
- /** 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. */
48450
- check_out_time: string
48490
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
48491
+ start_time: string
48492
+ /** 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. */
48493
+ end_time: string
48451
48494
  }[]
48452
48495
  | undefined
48453
- /** 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. */
48496
+ /** 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. */
48454
48497
  start_date_recurrence_rule?: string | undefined
48455
- /** 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. */
48498
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
48456
48499
  end_date_recurrence_rule?: string | undefined
48457
48500
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
48458
48501
  time_zone?: string | undefined
@@ -49401,6 +49444,7 @@ export type Routes = {
49401
49444
  | 'ultraloq_lock'
49402
49445
  | 'keyincode_lock'
49403
49446
  | 'omnitec_lock'
49447
+ | 'kisi_lock'
49404
49448
  )
49405
49449
  | 'keynest_key'
49406
49450
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -49448,6 +49492,7 @@ export type Routes = {
49448
49492
  | 'ultraloq_lock'
49449
49493
  | 'keyincode_lock'
49450
49494
  | 'omnitec_lock'
49495
+ | 'kisi_lock'
49451
49496
  )
49452
49497
  | 'keynest_key'
49453
49498
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -49495,6 +49540,7 @@ export type Routes = {
49495
49540
  | 'dormakaba_oracode'
49496
49541
  | 'tedee'
49497
49542
  | 'keyincode'
49543
+ | 'kisi'
49498
49544
  | 'akiles'
49499
49545
  | 'ecobee'
49500
49546
  | 'honeywell_resideo'
@@ -49514,6 +49560,7 @@ export type Routes = {
49514
49560
  | 'guesty'
49515
49561
  | 'acuity_scheduling'
49516
49562
  | 'omnitec'
49563
+ | 'kisi'
49517
49564
  | 'slack'
49518
49565
  )
49519
49566
  | undefined
@@ -49627,6 +49674,7 @@ export type Routes = {
49627
49674
  | 'ultraloq_lock'
49628
49675
  | 'keyincode_lock'
49629
49676
  | 'omnitec_lock'
49677
+ | 'kisi_lock'
49630
49678
  )
49631
49679
  | 'keynest_key'
49632
49680
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -50385,6 +50433,19 @@ export type Routes = {
50385
50433
  location_id?: (string | null) | undefined
50386
50434
  }
50387
50435
  | undefined
50436
+ /** Metadata for a Kisi device. */
50437
+ kisi_metadata?:
50438
+ | {
50439
+ /** Lock ID for a Kisi device. */
50440
+ lock_id: number
50441
+ /** Lock name for a Kisi device. */
50442
+ lock_name: string
50443
+ /** Place name for a Kisi device. */
50444
+ place_name: string | null
50445
+ /** Description for a Kisi device. */
50446
+ description: string | null
50447
+ }
50448
+ | undefined
50388
50449
  }) &
50389
50450
  ({
50390
50451
  /** */
@@ -50428,28 +50489,28 @@ export type Routes = {
50428
50489
  offline_time_frame_options?:
50429
50490
  | (
50430
50491
  | {
50431
- /** 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`). */
50492
+ /** 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`). */
50432
50493
  display_name: string
50433
50494
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
50434
50495
  min_duration?: string | undefined
50435
50496
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
50436
50497
  max_duration?: string | undefined
50437
- /** 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`. */
50498
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
50438
50499
  matching_start_end_time?: true | undefined
50439
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
50500
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
50440
50501
  time_pairs?:
50441
50502
  | {
50442
- /** Label for the check-in/check-out time pairing. */
50503
+ /** Label for the start/end time pairing. */
50443
50504
  display_name: string
50444
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
50445
- check_in_time: string
50446
- /** 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. */
50447
- check_out_time: string
50505
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
50506
+ start_time: string
50507
+ /** 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. */
50508
+ end_time: string
50448
50509
  }[]
50449
50510
  | undefined
50450
- /** 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. */
50511
+ /** 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. */
50451
50512
  start_date_recurrence_rule?: string | undefined
50452
- /** 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. */
50513
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
50453
50514
  end_date_recurrence_rule?: string | undefined
50454
50515
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
50455
50516
  time_zone?: string | undefined
@@ -50461,28 +50522,28 @@ export type Routes = {
50461
50522
  online_time_frame_options?:
50462
50523
  | (
50463
50524
  | {
50464
- /** 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`). */
50525
+ /** 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`). */
50465
50526
  display_name: string
50466
50527
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
50467
50528
  min_duration?: string | undefined
50468
50529
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
50469
50530
  max_duration?: string | undefined
50470
- /** 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`. */
50531
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
50471
50532
  matching_start_end_time?: true | undefined
50472
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
50533
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
50473
50534
  time_pairs?:
50474
50535
  | {
50475
- /** Label for the check-in/check-out time pairing. */
50536
+ /** Label for the start/end time pairing. */
50476
50537
  display_name: string
50477
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
50478
- check_in_time: string
50479
- /** 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. */
50480
- check_out_time: string
50538
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
50539
+ start_time: string
50540
+ /** 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. */
50541
+ end_time: string
50481
50542
  }[]
50482
50543
  | undefined
50483
- /** 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. */
50544
+ /** 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. */
50484
50545
  start_date_recurrence_rule?: string | undefined
50485
- /** 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. */
50546
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
50486
50547
  end_date_recurrence_rule?: string | undefined
50487
50548
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
50488
50549
  time_zone?: string | undefined
@@ -51479,6 +51540,7 @@ export type Routes = {
51479
51540
  | 'guesty'
51480
51541
  | 'acuity_scheduling'
51481
51542
  | 'omnitec'
51543
+ | 'kisi'
51482
51544
  /** Display name for the device provider. */
51483
51545
  display_name: string
51484
51546
  /** Image URL for the device provider. */
@@ -52990,6 +53052,7 @@ export type Routes = {
52990
53052
  | 'ultraloq_lock'
52991
53053
  | 'keyincode_lock'
52992
53054
  | 'omnitec_lock'
53055
+ | 'kisi_lock'
52993
53056
  )
52994
53057
  | 'keynest_key'
52995
53058
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -53594,6 +53657,7 @@ export type Routes = {
53594
53657
  | 'ultraloq_lock'
53595
53658
  | 'keyincode_lock'
53596
53659
  | 'omnitec_lock'
53660
+ | 'kisi_lock'
53597
53661
  )
53598
53662
  | 'keynest_key'
53599
53663
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -53641,6 +53705,7 @@ export type Routes = {
53641
53705
  | 'ultraloq_lock'
53642
53706
  | 'keyincode_lock'
53643
53707
  | 'omnitec_lock'
53708
+ | 'kisi_lock'
53644
53709
  )
53645
53710
  | 'keynest_key'
53646
53711
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -53688,6 +53753,7 @@ export type Routes = {
53688
53753
  | 'dormakaba_oracode'
53689
53754
  | 'tedee'
53690
53755
  | 'keyincode'
53756
+ | 'kisi'
53691
53757
  | 'akiles'
53692
53758
  | 'ecobee'
53693
53759
  | 'honeywell_resideo'
@@ -53707,6 +53773,7 @@ export type Routes = {
53707
53773
  | 'guesty'
53708
53774
  | 'acuity_scheduling'
53709
53775
  | 'omnitec'
53776
+ | 'kisi'
53710
53777
  | 'slack'
53711
53778
  )
53712
53779
  | undefined
@@ -53820,6 +53887,7 @@ export type Routes = {
53820
53887
  | 'ultraloq_lock'
53821
53888
  | 'keyincode_lock'
53822
53889
  | 'omnitec_lock'
53890
+ | 'kisi_lock'
53823
53891
  )
53824
53892
  | 'keynest_key'
53825
53893
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -63576,6 +63644,7 @@ export type Routes = {
63576
63644
  | 'ultraloq_lock'
63577
63645
  | 'keyincode_lock'
63578
63646
  | 'omnitec_lock'
63647
+ | 'kisi_lock'
63579
63648
  )
63580
63649
  | 'keynest_key'
63581
63650
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -64334,6 +64403,19 @@ export type Routes = {
64334
64403
  location_id?: (string | null) | undefined
64335
64404
  }
64336
64405
  | undefined
64406
+ /** Metadata for a Kisi device. */
64407
+ kisi_metadata?:
64408
+ | {
64409
+ /** Lock ID for a Kisi device. */
64410
+ lock_id: number
64411
+ /** Lock name for a Kisi device. */
64412
+ lock_name: string
64413
+ /** Place name for a Kisi device. */
64414
+ place_name: string | null
64415
+ /** Description for a Kisi device. */
64416
+ description: string | null
64417
+ }
64418
+ | undefined
64337
64419
  }) &
64338
64420
  ({
64339
64421
  /** */
@@ -64377,28 +64459,28 @@ export type Routes = {
64377
64459
  offline_time_frame_options?:
64378
64460
  | (
64379
64461
  | {
64380
- /** 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`). */
64462
+ /** 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`). */
64381
64463
  display_name: string
64382
64464
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
64383
64465
  min_duration?: string | undefined
64384
64466
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
64385
64467
  max_duration?: string | undefined
64386
- /** 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`. */
64468
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
64387
64469
  matching_start_end_time?: true | undefined
64388
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
64470
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
64389
64471
  time_pairs?:
64390
64472
  | {
64391
- /** Label for the check-in/check-out time pairing. */
64473
+ /** Label for the start/end time pairing. */
64392
64474
  display_name: string
64393
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
64394
- check_in_time: string
64395
- /** 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. */
64396
- check_out_time: string
64475
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
64476
+ start_time: string
64477
+ /** 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. */
64478
+ end_time: string
64397
64479
  }[]
64398
64480
  | undefined
64399
- /** 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. */
64481
+ /** 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. */
64400
64482
  start_date_recurrence_rule?: string | undefined
64401
- /** 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. */
64483
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
64402
64484
  end_date_recurrence_rule?: string | undefined
64403
64485
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
64404
64486
  time_zone?: string | undefined
@@ -64410,28 +64492,28 @@ export type Routes = {
64410
64492
  online_time_frame_options?:
64411
64493
  | (
64412
64494
  | {
64413
- /** 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`). */
64495
+ /** 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`). */
64414
64496
  display_name: string
64415
64497
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
64416
64498
  min_duration?: string | undefined
64417
64499
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
64418
64500
  max_duration?: string | undefined
64419
- /** 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`. */
64501
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
64420
64502
  matching_start_end_time?: true | undefined
64421
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
64503
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
64422
64504
  time_pairs?:
64423
64505
  | {
64424
- /** Label for the check-in/check-out time pairing. */
64506
+ /** Label for the start/end time pairing. */
64425
64507
  display_name: string
64426
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
64427
- check_in_time: string
64428
- /** 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. */
64429
- check_out_time: string
64508
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
64509
+ start_time: string
64510
+ /** 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. */
64511
+ end_time: string
64430
64512
  }[]
64431
64513
  | undefined
64432
- /** 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. */
64514
+ /** 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. */
64433
64515
  start_date_recurrence_rule?: string | undefined
64434
- /** 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. */
64516
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
64435
64517
  end_date_recurrence_rule?: string | undefined
64436
64518
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
64437
64519
  time_zone?: string | undefined
@@ -65366,6 +65448,7 @@ export type Routes = {
65366
65448
  | 'ultraloq_lock'
65367
65449
  | 'keyincode_lock'
65368
65450
  | 'omnitec_lock'
65451
+ | 'kisi_lock'
65369
65452
  )
65370
65453
  | 'keynest_key'
65371
65454
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -66124,6 +66207,19 @@ export type Routes = {
66124
66207
  location_id?: (string | null) | undefined
66125
66208
  }
66126
66209
  | undefined
66210
+ /** Metadata for a Kisi device. */
66211
+ kisi_metadata?:
66212
+ | {
66213
+ /** Lock ID for a Kisi device. */
66214
+ lock_id: number
66215
+ /** Lock name for a Kisi device. */
66216
+ lock_name: string
66217
+ /** Place name for a Kisi device. */
66218
+ place_name: string | null
66219
+ /** Description for a Kisi device. */
66220
+ description: string | null
66221
+ }
66222
+ | undefined
66127
66223
  }) &
66128
66224
  ({
66129
66225
  /** */
@@ -66167,28 +66263,28 @@ export type Routes = {
66167
66263
  offline_time_frame_options?:
66168
66264
  | (
66169
66265
  | {
66170
- /** 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`). */
66266
+ /** 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`). */
66171
66267
  display_name: string
66172
66268
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66173
66269
  min_duration?: string | undefined
66174
66270
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66175
66271
  max_duration?: string | undefined
66176
- /** 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`. */
66272
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66177
66273
  matching_start_end_time?: true | undefined
66178
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66274
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66179
66275
  time_pairs?:
66180
66276
  | {
66181
- /** Label for the check-in/check-out time pairing. */
66277
+ /** Label for the start/end time pairing. */
66182
66278
  display_name: string
66183
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66184
- check_in_time: string
66185
- /** 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. */
66186
- check_out_time: string
66279
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66280
+ start_time: string
66281
+ /** 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. */
66282
+ end_time: string
66187
66283
  }[]
66188
66284
  | undefined
66189
- /** 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. */
66285
+ /** 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. */
66190
66286
  start_date_recurrence_rule?: string | undefined
66191
- /** 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. */
66287
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66192
66288
  end_date_recurrence_rule?: string | undefined
66193
66289
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66194
66290
  time_zone?: string | undefined
@@ -66200,28 +66296,28 @@ export type Routes = {
66200
66296
  online_time_frame_options?:
66201
66297
  | (
66202
66298
  | {
66203
- /** 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`). */
66299
+ /** 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`). */
66204
66300
  display_name: string
66205
66301
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66206
66302
  min_duration?: string | undefined
66207
66303
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66208
66304
  max_duration?: string | undefined
66209
- /** 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`. */
66305
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66210
66306
  matching_start_end_time?: true | undefined
66211
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66307
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66212
66308
  time_pairs?:
66213
66309
  | {
66214
- /** Label for the check-in/check-out time pairing. */
66310
+ /** Label for the start/end time pairing. */
66215
66311
  display_name: string
66216
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66217
- check_in_time: string
66218
- /** 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. */
66219
- check_out_time: string
66312
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66313
+ start_time: string
66314
+ /** 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. */
66315
+ end_time: string
66220
66316
  }[]
66221
66317
  | undefined
66222
- /** 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. */
66318
+ /** 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. */
66223
66319
  start_date_recurrence_rule?: string | undefined
66224
- /** 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. */
66320
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66225
66321
  end_date_recurrence_rule?: string | undefined
66226
66322
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66227
66323
  time_zone?: string | undefined
@@ -67169,6 +67265,7 @@ export type Routes = {
67169
67265
  | 'ultraloq_lock'
67170
67266
  | 'keyincode_lock'
67171
67267
  | 'omnitec_lock'
67268
+ | 'kisi_lock'
67172
67269
  )
67173
67270
  | undefined
67174
67271
  /** Device types of the locks that you want to list. */
@@ -67202,6 +67299,7 @@ export type Routes = {
67202
67299
  | 'ultraloq_lock'
67203
67300
  | 'keyincode_lock'
67204
67301
  | 'omnitec_lock'
67302
+ | 'kisi_lock'
67205
67303
  )[]
67206
67304
  | undefined
67207
67305
  /** Manufacturer of the locks that you want to list. */
@@ -67232,11 +67330,13 @@ export type Routes = {
67232
67330
  | 'dormakaba_oracode'
67233
67331
  | 'tedee'
67234
67332
  | 'keyincode'
67333
+ | 'kisi'
67235
67334
  | 'akiles'
67236
67335
  | 'korelock'
67237
67336
  | 'smartthings'
67238
67337
  | 'ultraloq'
67239
67338
  | 'omnitec'
67339
+ | 'kisi'
67240
67340
  )
67241
67341
  | undefined
67242
67342
  /** Array of device IDs for which you want to list devices. */
@@ -67349,6 +67449,7 @@ export type Routes = {
67349
67449
  | 'ultraloq_lock'
67350
67450
  | 'keyincode_lock'
67351
67451
  | 'omnitec_lock'
67452
+ | 'kisi_lock'
67352
67453
  )
67353
67454
  | 'keynest_key'
67354
67455
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -68107,6 +68208,19 @@ export type Routes = {
68107
68208
  location_id?: (string | null) | undefined
68108
68209
  }
68109
68210
  | undefined
68211
+ /** Metadata for a Kisi device. */
68212
+ kisi_metadata?:
68213
+ | {
68214
+ /** Lock ID for a Kisi device. */
68215
+ lock_id: number
68216
+ /** Lock name for a Kisi device. */
68217
+ lock_name: string
68218
+ /** Place name for a Kisi device. */
68219
+ place_name: string | null
68220
+ /** Description for a Kisi device. */
68221
+ description: string | null
68222
+ }
68223
+ | undefined
68110
68224
  }) &
68111
68225
  ({
68112
68226
  /** */
@@ -68150,28 +68264,28 @@ export type Routes = {
68150
68264
  offline_time_frame_options?:
68151
68265
  | (
68152
68266
  | {
68153
- /** 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`). */
68267
+ /** 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`). */
68154
68268
  display_name: string
68155
68269
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
68156
68270
  min_duration?: string | undefined
68157
68271
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
68158
68272
  max_duration?: string | undefined
68159
- /** 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`. */
68273
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
68160
68274
  matching_start_end_time?: true | undefined
68161
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
68275
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
68162
68276
  time_pairs?:
68163
68277
  | {
68164
- /** Label for the check-in/check-out time pairing. */
68278
+ /** Label for the start/end time pairing. */
68165
68279
  display_name: string
68166
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
68167
- check_in_time: string
68168
- /** 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. */
68169
- check_out_time: string
68280
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
68281
+ start_time: string
68282
+ /** 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. */
68283
+ end_time: string
68170
68284
  }[]
68171
68285
  | undefined
68172
- /** 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. */
68286
+ /** 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. */
68173
68287
  start_date_recurrence_rule?: string | undefined
68174
- /** 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. */
68288
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
68175
68289
  end_date_recurrence_rule?: string | undefined
68176
68290
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
68177
68291
  time_zone?: string | undefined
@@ -68183,28 +68297,28 @@ export type Routes = {
68183
68297
  online_time_frame_options?:
68184
68298
  | (
68185
68299
  | {
68186
- /** 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`). */
68300
+ /** 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`). */
68187
68301
  display_name: string
68188
68302
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
68189
68303
  min_duration?: string | undefined
68190
68304
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
68191
68305
  max_duration?: string | undefined
68192
- /** 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`. */
68306
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
68193
68307
  matching_start_end_time?: true | undefined
68194
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
68308
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
68195
68309
  time_pairs?:
68196
68310
  | {
68197
- /** Label for the check-in/check-out time pairing. */
68311
+ /** Label for the start/end time pairing. */
68198
68312
  display_name: string
68199
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
68200
- check_in_time: string
68201
- /** 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. */
68202
- check_out_time: string
68313
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
68314
+ start_time: string
68315
+ /** 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. */
68316
+ end_time: string
68203
68317
  }[]
68204
68318
  | undefined
68205
- /** 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. */
68319
+ /** 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. */
68206
68320
  start_date_recurrence_rule?: string | undefined
68207
- /** 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. */
68321
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
68208
68322
  end_date_recurrence_rule?: string | undefined
68209
68323
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
68210
68324
  time_zone?: string | undefined
@@ -69138,6 +69252,7 @@ export type Routes = {
69138
69252
  | 'ultraloq_lock'
69139
69253
  | 'keyincode_lock'
69140
69254
  | 'omnitec_lock'
69255
+ | 'kisi_lock'
69141
69256
  )
69142
69257
  | 'keynest_key'
69143
69258
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -69896,6 +70011,19 @@ export type Routes = {
69896
70011
  location_id?: (string | null) | undefined
69897
70012
  }
69898
70013
  | undefined
70014
+ /** Metadata for a Kisi device. */
70015
+ kisi_metadata?:
70016
+ | {
70017
+ /** Lock ID for a Kisi device. */
70018
+ lock_id: number
70019
+ /** Lock name for a Kisi device. */
70020
+ lock_name: string
70021
+ /** Place name for a Kisi device. */
70022
+ place_name: string | null
70023
+ /** Description for a Kisi device. */
70024
+ description: string | null
70025
+ }
70026
+ | undefined
69899
70027
  }) &
69900
70028
  ({
69901
70029
  /** */
@@ -69939,28 +70067,28 @@ export type Routes = {
69939
70067
  offline_time_frame_options?:
69940
70068
  | (
69941
70069
  | {
69942
- /** 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`). */
70070
+ /** 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`). */
69943
70071
  display_name: string
69944
70072
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
69945
70073
  min_duration?: string | undefined
69946
70074
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
69947
70075
  max_duration?: string | undefined
69948
- /** 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`. */
70076
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
69949
70077
  matching_start_end_time?: true | undefined
69950
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
70078
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
69951
70079
  time_pairs?:
69952
70080
  | {
69953
- /** Label for the check-in/check-out time pairing. */
70081
+ /** Label for the start/end time pairing. */
69954
70082
  display_name: string
69955
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
69956
- check_in_time: string
69957
- /** 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. */
69958
- check_out_time: string
70083
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
70084
+ start_time: string
70085
+ /** 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. */
70086
+ end_time: string
69959
70087
  }[]
69960
70088
  | undefined
69961
- /** 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. */
70089
+ /** 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. */
69962
70090
  start_date_recurrence_rule?: string | undefined
69963
- /** 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. */
70091
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
69964
70092
  end_date_recurrence_rule?: string | undefined
69965
70093
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
69966
70094
  time_zone?: string | undefined
@@ -69972,28 +70100,28 @@ export type Routes = {
69972
70100
  online_time_frame_options?:
69973
70101
  | (
69974
70102
  | {
69975
- /** 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`). */
70103
+ /** 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`). */
69976
70104
  display_name: string
69977
70105
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
69978
70106
  min_duration?: string | undefined
69979
70107
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
69980
70108
  max_duration?: string | undefined
69981
- /** 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`. */
70109
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
69982
70110
  matching_start_end_time?: true | undefined
69983
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
70111
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
69984
70112
  time_pairs?:
69985
70113
  | {
69986
- /** Label for the check-in/check-out time pairing. */
70114
+ /** Label for the start/end time pairing. */
69987
70115
  display_name: string
69988
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
69989
- check_in_time: string
69990
- /** 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. */
69991
- check_out_time: string
70116
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
70117
+ start_time: string
70118
+ /** 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. */
70119
+ end_time: string
69992
70120
  }[]
69993
70121
  | undefined
69994
- /** 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. */
70122
+ /** 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. */
69995
70123
  start_date_recurrence_rule?: string | undefined
69996
- /** 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. */
70124
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
69997
70125
  end_date_recurrence_rule?: string | undefined
69998
70126
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
69999
70127
  time_zone?: string | undefined
@@ -78816,6 +78944,7 @@ export type Routes = {
78816
78944
  | 'ultraloq_lock'
78817
78945
  | 'keyincode_lock'
78818
78946
  | 'omnitec_lock'
78947
+ | 'kisi_lock'
78819
78948
  )
78820
78949
  | 'keynest_key'
78821
78950
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -79574,6 +79703,19 @@ export type Routes = {
79574
79703
  location_id?: (string | null) | undefined
79575
79704
  }
79576
79705
  | undefined
79706
+ /** Metadata for a Kisi device. */
79707
+ kisi_metadata?:
79708
+ | {
79709
+ /** Lock ID for a Kisi device. */
79710
+ lock_id: number
79711
+ /** Lock name for a Kisi device. */
79712
+ lock_name: string
79713
+ /** Place name for a Kisi device. */
79714
+ place_name: string | null
79715
+ /** Description for a Kisi device. */
79716
+ description: string | null
79717
+ }
79718
+ | undefined
79577
79719
  }) &
79578
79720
  ({
79579
79721
  /** */
@@ -79617,28 +79759,28 @@ export type Routes = {
79617
79759
  offline_time_frame_options?:
79618
79760
  | (
79619
79761
  | {
79620
- /** 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`). */
79762
+ /** 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`). */
79621
79763
  display_name: string
79622
79764
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
79623
79765
  min_duration?: string | undefined
79624
79766
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
79625
79767
  max_duration?: string | undefined
79626
- /** 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`. */
79768
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
79627
79769
  matching_start_end_time?: true | undefined
79628
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
79770
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
79629
79771
  time_pairs?:
79630
79772
  | {
79631
- /** Label for the check-in/check-out time pairing. */
79773
+ /** Label for the start/end time pairing. */
79632
79774
  display_name: string
79633
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
79634
- check_in_time: string
79635
- /** 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. */
79636
- check_out_time: string
79775
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
79776
+ start_time: string
79777
+ /** 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. */
79778
+ end_time: string
79637
79779
  }[]
79638
79780
  | undefined
79639
- /** 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. */
79781
+ /** 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. */
79640
79782
  start_date_recurrence_rule?: string | undefined
79641
- /** 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. */
79783
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
79642
79784
  end_date_recurrence_rule?: string | undefined
79643
79785
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
79644
79786
  time_zone?: string | undefined
@@ -79650,28 +79792,28 @@ export type Routes = {
79650
79792
  online_time_frame_options?:
79651
79793
  | (
79652
79794
  | {
79653
- /** 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`). */
79795
+ /** 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`). */
79654
79796
  display_name: string
79655
79797
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
79656
79798
  min_duration?: string | undefined
79657
79799
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
79658
79800
  max_duration?: string | undefined
79659
- /** 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`. */
79801
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
79660
79802
  matching_start_end_time?: true | undefined
79661
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
79803
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
79662
79804
  time_pairs?:
79663
79805
  | {
79664
- /** Label for the check-in/check-out time pairing. */
79806
+ /** Label for the start/end time pairing. */
79665
79807
  display_name: string
79666
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
79667
- check_in_time: string
79668
- /** 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. */
79669
- check_out_time: string
79808
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
79809
+ start_time: string
79810
+ /** 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. */
79811
+ end_time: string
79670
79812
  }[]
79671
79813
  | undefined
79672
- /** 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. */
79814
+ /** 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. */
79673
79815
  start_date_recurrence_rule?: string | undefined
79674
- /** 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. */
79816
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
79675
79817
  end_date_recurrence_rule?: string | undefined
79676
79818
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
79677
79819
  time_zone?: string | undefined
@@ -80605,6 +80747,7 @@ export type Routes = {
80605
80747
  | 'ultraloq_lock'
80606
80748
  | 'keyincode_lock'
80607
80749
  | 'omnitec_lock'
80750
+ | 'kisi_lock'
80608
80751
  )
80609
80752
  | 'keynest_key'
80610
80753
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -81363,6 +81506,19 @@ export type Routes = {
81363
81506
  location_id?: (string | null) | undefined
81364
81507
  }
81365
81508
  | undefined
81509
+ /** Metadata for a Kisi device. */
81510
+ kisi_metadata?:
81511
+ | {
81512
+ /** Lock ID for a Kisi device. */
81513
+ lock_id: number
81514
+ /** Lock name for a Kisi device. */
81515
+ lock_name: string
81516
+ /** Place name for a Kisi device. */
81517
+ place_name: string | null
81518
+ /** Description for a Kisi device. */
81519
+ description: string | null
81520
+ }
81521
+ | undefined
81366
81522
  }) &
81367
81523
  ({
81368
81524
  /** */
@@ -81406,28 +81562,28 @@ export type Routes = {
81406
81562
  offline_time_frame_options?:
81407
81563
  | (
81408
81564
  | {
81409
- /** 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`). */
81565
+ /** 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`). */
81410
81566
  display_name: string
81411
81567
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
81412
81568
  min_duration?: string | undefined
81413
81569
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
81414
81570
  max_duration?: string | undefined
81415
- /** 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`. */
81571
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
81416
81572
  matching_start_end_time?: true | undefined
81417
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
81573
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
81418
81574
  time_pairs?:
81419
81575
  | {
81420
- /** Label for the check-in/check-out time pairing. */
81576
+ /** Label for the start/end time pairing. */
81421
81577
  display_name: string
81422
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
81423
- check_in_time: string
81424
- /** 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. */
81425
- check_out_time: string
81578
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
81579
+ start_time: string
81580
+ /** 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. */
81581
+ end_time: string
81426
81582
  }[]
81427
81583
  | undefined
81428
- /** 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. */
81584
+ /** 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. */
81429
81585
  start_date_recurrence_rule?: string | undefined
81430
- /** 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. */
81586
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
81431
81587
  end_date_recurrence_rule?: string | undefined
81432
81588
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
81433
81589
  time_zone?: string | undefined
@@ -81439,28 +81595,28 @@ export type Routes = {
81439
81595
  online_time_frame_options?:
81440
81596
  | (
81441
81597
  | {
81442
- /** 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`). */
81598
+ /** 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`). */
81443
81599
  display_name: string
81444
81600
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
81445
81601
  min_duration?: string | undefined
81446
81602
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
81447
81603
  max_duration?: string | undefined
81448
- /** 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`. */
81604
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
81449
81605
  matching_start_end_time?: true | undefined
81450
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
81606
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
81451
81607
  time_pairs?:
81452
81608
  | {
81453
- /** Label for the check-in/check-out time pairing. */
81609
+ /** Label for the start/end time pairing. */
81454
81610
  display_name: string
81455
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
81456
- check_in_time: string
81457
- /** 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. */
81458
- check_out_time: string
81611
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
81612
+ start_time: string
81613
+ /** 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. */
81614
+ end_time: string
81459
81615
  }[]
81460
81616
  | undefined
81461
- /** 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. */
81617
+ /** 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. */
81462
81618
  start_date_recurrence_rule?: string | undefined
81463
- /** 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. */
81619
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
81464
81620
  end_date_recurrence_rule?: string | undefined
81465
81621
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
81466
81622
  time_zone?: string | undefined
@@ -98707,6 +98863,7 @@ export type Routes = {
98707
98863
  | 'ultraloq_lock'
98708
98864
  | 'keyincode_lock'
98709
98865
  | 'omnitec_lock'
98866
+ | 'kisi_lock'
98710
98867
  )
98711
98868
  | 'keynest_key'
98712
98869
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -99467,6 +99624,19 @@ export type Routes = {
99467
99624
  location_id?: (string | null) | undefined
99468
99625
  }
99469
99626
  | undefined
99627
+ /** Metadata for a Kisi device. */
99628
+ kisi_metadata?:
99629
+ | {
99630
+ /** Lock ID for a Kisi device. */
99631
+ lock_id: number
99632
+ /** Lock name for a Kisi device. */
99633
+ lock_name: string
99634
+ /** Place name for a Kisi device. */
99635
+ place_name: string | null
99636
+ /** Description for a Kisi device. */
99637
+ description: string | null
99638
+ }
99639
+ | undefined
99470
99640
  }) &
99471
99641
  ({
99472
99642
  /** */
@@ -99512,28 +99682,28 @@ export type Routes = {
99512
99682
  offline_time_frame_options?:
99513
99683
  | (
99514
99684
  | {
99515
- /** 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`). */
99685
+ /** 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`). */
99516
99686
  display_name: string
99517
99687
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
99518
99688
  min_duration?: string | undefined
99519
99689
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
99520
99690
  max_duration?: string | undefined
99521
- /** 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`. */
99691
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
99522
99692
  matching_start_end_time?: true | undefined
99523
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
99693
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
99524
99694
  time_pairs?:
99525
99695
  | {
99526
- /** Label for the check-in/check-out time pairing. */
99696
+ /** Label for the start/end time pairing. */
99527
99697
  display_name: string
99528
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
99529
- check_in_time: string
99530
- /** 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. */
99531
- check_out_time: string
99698
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
99699
+ start_time: string
99700
+ /** 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. */
99701
+ end_time: string
99532
99702
  }[]
99533
99703
  | undefined
99534
- /** 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. */
99704
+ /** 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. */
99535
99705
  start_date_recurrence_rule?: string | undefined
99536
- /** 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. */
99706
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
99537
99707
  end_date_recurrence_rule?: string | undefined
99538
99708
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
99539
99709
  time_zone?: string | undefined
@@ -99545,28 +99715,28 @@ export type Routes = {
99545
99715
  online_time_frame_options?:
99546
99716
  | (
99547
99717
  | {
99548
- /** 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`). */
99718
+ /** 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`). */
99549
99719
  display_name: string
99550
99720
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
99551
99721
  min_duration?: string | undefined
99552
99722
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
99553
99723
  max_duration?: string | undefined
99554
- /** 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`. */
99724
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
99555
99725
  matching_start_end_time?: true | undefined
99556
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
99726
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
99557
99727
  time_pairs?:
99558
99728
  | {
99559
- /** Label for the check-in/check-out time pairing. */
99729
+ /** Label for the start/end time pairing. */
99560
99730
  display_name: string
99561
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
99562
- check_in_time: string
99563
- /** 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. */
99564
- check_out_time: string
99731
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
99732
+ start_time: string
99733
+ /** 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. */
99734
+ end_time: string
99565
99735
  }[]
99566
99736
  | undefined
99567
- /** 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. */
99737
+ /** 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. */
99568
99738
  start_date_recurrence_rule?: string | undefined
99569
- /** 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. */
99739
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
99570
99740
  end_date_recurrence_rule?: string | undefined
99571
99741
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
99572
99742
  time_zone?: string | undefined
@@ -107475,6 +107645,7 @@ export type Routes = {
107475
107645
  | 'ultraloq_lock'
107476
107646
  | 'keyincode_lock'
107477
107647
  | 'omnitec_lock'
107648
+ | 'kisi_lock'
107478
107649
  )
107479
107650
  | 'keynest_key'
107480
107651
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -108233,6 +108404,19 @@ export type Routes = {
108233
108404
  location_id?: (string | null) | undefined
108234
108405
  }
108235
108406
  | undefined
108407
+ /** Metadata for a Kisi device. */
108408
+ kisi_metadata?:
108409
+ | {
108410
+ /** Lock ID for a Kisi device. */
108411
+ lock_id: number
108412
+ /** Lock name for a Kisi device. */
108413
+ lock_name: string
108414
+ /** Place name for a Kisi device. */
108415
+ place_name: string | null
108416
+ /** Description for a Kisi device. */
108417
+ description: string | null
108418
+ }
108419
+ | undefined
108236
108420
  }) &
108237
108421
  ({
108238
108422
  /** */
@@ -108276,28 +108460,28 @@ export type Routes = {
108276
108460
  offline_time_frame_options?:
108277
108461
  | (
108278
108462
  | {
108279
- /** 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`). */
108463
+ /** 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`). */
108280
108464
  display_name: string
108281
108465
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
108282
108466
  min_duration?: string | undefined
108283
108467
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
108284
108468
  max_duration?: string | undefined
108285
- /** 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`. */
108469
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
108286
108470
  matching_start_end_time?: true | undefined
108287
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
108471
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
108288
108472
  time_pairs?:
108289
108473
  | {
108290
- /** Label for the check-in/check-out time pairing. */
108474
+ /** Label for the start/end time pairing. */
108291
108475
  display_name: string
108292
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
108293
- check_in_time: string
108294
- /** 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. */
108295
- check_out_time: string
108476
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
108477
+ start_time: string
108478
+ /** 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. */
108479
+ end_time: string
108296
108480
  }[]
108297
108481
  | undefined
108298
- /** 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. */
108482
+ /** 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. */
108299
108483
  start_date_recurrence_rule?: string | undefined
108300
- /** 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. */
108484
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
108301
108485
  end_date_recurrence_rule?: string | undefined
108302
108486
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
108303
108487
  time_zone?: string | undefined
@@ -108309,28 +108493,28 @@ export type Routes = {
108309
108493
  online_time_frame_options?:
108310
108494
  | (
108311
108495
  | {
108312
- /** 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`). */
108496
+ /** 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`). */
108313
108497
  display_name: string
108314
108498
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
108315
108499
  min_duration?: string | undefined
108316
108500
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
108317
108501
  max_duration?: string | undefined
108318
- /** 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`. */
108502
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
108319
108503
  matching_start_end_time?: true | undefined
108320
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
108504
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
108321
108505
  time_pairs?:
108322
108506
  | {
108323
- /** Label for the check-in/check-out time pairing. */
108507
+ /** Label for the start/end time pairing. */
108324
108508
  display_name: string
108325
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
108326
- check_in_time: string
108327
- /** 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. */
108328
- check_out_time: string
108509
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
108510
+ start_time: string
108511
+ /** 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. */
108512
+ end_time: string
108329
108513
  }[]
108330
108514
  | undefined
108331
- /** 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. */
108515
+ /** 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. */
108332
108516
  start_date_recurrence_rule?: string | undefined
108333
- /** 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. */
108517
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
108334
108518
  end_date_recurrence_rule?: string | undefined
108335
108519
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
108336
108520
  time_zone?: string | undefined
@@ -113298,6 +113482,7 @@ export type Routes = {
113298
113482
  | 'ultraloq_lock'
113299
113483
  | 'keyincode_lock'
113300
113484
  | 'omnitec_lock'
113485
+ | 'kisi_lock'
113301
113486
  )
113302
113487
  | 'keynest_key'
113303
113488
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -114056,6 +114241,19 @@ export type Routes = {
114056
114241
  location_id?: (string | null) | undefined
114057
114242
  }
114058
114243
  | undefined
114244
+ /** Metadata for a Kisi device. */
114245
+ kisi_metadata?:
114246
+ | {
114247
+ /** Lock ID for a Kisi device. */
114248
+ lock_id: number
114249
+ /** Lock name for a Kisi device. */
114250
+ lock_name: string
114251
+ /** Place name for a Kisi device. */
114252
+ place_name: string | null
114253
+ /** Description for a Kisi device. */
114254
+ description: string | null
114255
+ }
114256
+ | undefined
114059
114257
  }) &
114060
114258
  ({
114061
114259
  /** */
@@ -114099,28 +114297,28 @@ export type Routes = {
114099
114297
  offline_time_frame_options?:
114100
114298
  | (
114101
114299
  | {
114102
- /** 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`). */
114300
+ /** 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`). */
114103
114301
  display_name: string
114104
114302
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
114105
114303
  min_duration?: string | undefined
114106
114304
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
114107
114305
  max_duration?: string | undefined
114108
- /** 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`. */
114306
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
114109
114307
  matching_start_end_time?: true | undefined
114110
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
114308
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
114111
114309
  time_pairs?:
114112
114310
  | {
114113
- /** Label for the check-in/check-out time pairing. */
114311
+ /** Label for the start/end time pairing. */
114114
114312
  display_name: string
114115
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
114116
- check_in_time: string
114117
- /** 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. */
114118
- check_out_time: string
114313
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
114314
+ start_time: string
114315
+ /** 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. */
114316
+ end_time: string
114119
114317
  }[]
114120
114318
  | undefined
114121
- /** 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. */
114319
+ /** 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. */
114122
114320
  start_date_recurrence_rule?: string | undefined
114123
- /** 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. */
114321
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
114124
114322
  end_date_recurrence_rule?: string | undefined
114125
114323
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
114126
114324
  time_zone?: string | undefined
@@ -114132,28 +114330,28 @@ export type Routes = {
114132
114330
  online_time_frame_options?:
114133
114331
  | (
114134
114332
  | {
114135
- /** 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`). */
114333
+ /** 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`). */
114136
114334
  display_name: string
114137
114335
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
114138
114336
  min_duration?: string | undefined
114139
114337
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
114140
114338
  max_duration?: string | undefined
114141
- /** 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`. */
114339
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
114142
114340
  matching_start_end_time?: true | undefined
114143
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
114341
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
114144
114342
  time_pairs?:
114145
114343
  | {
114146
- /** Label for the check-in/check-out time pairing. */
114344
+ /** Label for the start/end time pairing. */
114147
114345
  display_name: string
114148
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
114149
- check_in_time: string
114150
- /** 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. */
114151
- check_out_time: string
114346
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
114347
+ start_time: string
114348
+ /** 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. */
114349
+ end_time: string
114152
114350
  }[]
114153
114351
  | undefined
114154
- /** 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. */
114352
+ /** 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. */
114155
114353
  start_date_recurrence_rule?: string | undefined
114156
- /** 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. */
114354
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
114157
114355
  end_date_recurrence_rule?: string | undefined
114158
114356
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
114159
114357
  time_zone?: string | undefined
@@ -115087,6 +115285,7 @@ export type Routes = {
115087
115285
  | 'ultraloq_lock'
115088
115286
  | 'keyincode_lock'
115089
115287
  | 'omnitec_lock'
115288
+ | 'kisi_lock'
115090
115289
  )
115091
115290
  | 'keynest_key'
115092
115291
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -115845,6 +116044,19 @@ export type Routes = {
115845
116044
  location_id?: (string | null) | undefined
115846
116045
  }
115847
116046
  | undefined
116047
+ /** Metadata for a Kisi device. */
116048
+ kisi_metadata?:
116049
+ | {
116050
+ /** Lock ID for a Kisi device. */
116051
+ lock_id: number
116052
+ /** Lock name for a Kisi device. */
116053
+ lock_name: string
116054
+ /** Place name for a Kisi device. */
116055
+ place_name: string | null
116056
+ /** Description for a Kisi device. */
116057
+ description: string | null
116058
+ }
116059
+ | undefined
115848
116060
  }) &
115849
116061
  ({
115850
116062
  /** */
@@ -115888,28 +116100,28 @@ export type Routes = {
115888
116100
  offline_time_frame_options?:
115889
116101
  | (
115890
116102
  | {
115891
- /** 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`). */
116103
+ /** 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`). */
115892
116104
  display_name: string
115893
116105
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
115894
116106
  min_duration?: string | undefined
115895
116107
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
115896
116108
  max_duration?: string | undefined
115897
- /** 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`. */
116109
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
115898
116110
  matching_start_end_time?: true | undefined
115899
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
116111
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
115900
116112
  time_pairs?:
115901
116113
  | {
115902
- /** Label for the check-in/check-out time pairing. */
116114
+ /** Label for the start/end time pairing. */
115903
116115
  display_name: string
115904
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
115905
- check_in_time: string
115906
- /** 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. */
115907
- check_out_time: string
116116
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
116117
+ start_time: string
116118
+ /** 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. */
116119
+ end_time: string
115908
116120
  }[]
115909
116121
  | undefined
115910
- /** 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. */
116122
+ /** 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. */
115911
116123
  start_date_recurrence_rule?: string | undefined
115912
- /** 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. */
116124
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
115913
116125
  end_date_recurrence_rule?: string | undefined
115914
116126
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
115915
116127
  time_zone?: string | undefined
@@ -115921,28 +116133,28 @@ export type Routes = {
115921
116133
  online_time_frame_options?:
115922
116134
  | (
115923
116135
  | {
115924
- /** 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`). */
116136
+ /** 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`). */
115925
116137
  display_name: string
115926
116138
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
115927
116139
  min_duration?: string | undefined
115928
116140
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
115929
116141
  max_duration?: string | undefined
115930
- /** 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`. */
116142
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
115931
116143
  matching_start_end_time?: true | undefined
115932
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
116144
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
115933
116145
  time_pairs?:
115934
116146
  | {
115935
- /** Label for the check-in/check-out time pairing. */
116147
+ /** Label for the start/end time pairing. */
115936
116148
  display_name: string
115937
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
115938
- check_in_time: string
115939
- /** 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. */
115940
- check_out_time: string
116149
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
116150
+ start_time: string
116151
+ /** 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. */
116152
+ end_time: string
115941
116153
  }[]
115942
116154
  | undefined
115943
- /** 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. */
116155
+ /** 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. */
115944
116156
  start_date_recurrence_rule?: string | undefined
115945
- /** 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. */
116157
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
115946
116158
  end_date_recurrence_rule?: string | undefined
115947
116159
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
115948
116160
  time_zone?: string | undefined
@@ -125700,6 +125912,7 @@ export type Routes = {
125700
125912
  | 'ultraloq_lock'
125701
125913
  | 'keyincode_lock'
125702
125914
  | 'omnitec_lock'
125915
+ | 'kisi_lock'
125703
125916
  )
125704
125917
  | 'keynest_key'
125705
125918
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -126458,6 +126671,19 @@ export type Routes = {
126458
126671
  location_id?: (string | null) | undefined
126459
126672
  }
126460
126673
  | undefined
126674
+ /** Metadata for a Kisi device. */
126675
+ kisi_metadata?:
126676
+ | {
126677
+ /** Lock ID for a Kisi device. */
126678
+ lock_id: number
126679
+ /** Lock name for a Kisi device. */
126680
+ lock_name: string
126681
+ /** Place name for a Kisi device. */
126682
+ place_name: string | null
126683
+ /** Description for a Kisi device. */
126684
+ description: string | null
126685
+ }
126686
+ | undefined
126461
126687
  }) &
126462
126688
  ({
126463
126689
  /** */
@@ -126501,28 +126727,28 @@ export type Routes = {
126501
126727
  offline_time_frame_options?:
126502
126728
  | (
126503
126729
  | {
126504
- /** 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`). */
126730
+ /** 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`). */
126505
126731
  display_name: string
126506
126732
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
126507
126733
  min_duration?: string | undefined
126508
126734
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
126509
126735
  max_duration?: string | undefined
126510
- /** 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`. */
126736
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
126511
126737
  matching_start_end_time?: true | undefined
126512
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
126738
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
126513
126739
  time_pairs?:
126514
126740
  | {
126515
- /** Label for the check-in/check-out time pairing. */
126741
+ /** Label for the start/end time pairing. */
126516
126742
  display_name: string
126517
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
126518
- check_in_time: string
126519
- /** 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. */
126520
- check_out_time: string
126743
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
126744
+ start_time: string
126745
+ /** 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. */
126746
+ end_time: string
126521
126747
  }[]
126522
126748
  | undefined
126523
- /** 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. */
126749
+ /** 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. */
126524
126750
  start_date_recurrence_rule?: string | undefined
126525
- /** 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. */
126751
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
126526
126752
  end_date_recurrence_rule?: string | undefined
126527
126753
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
126528
126754
  time_zone?: string | undefined
@@ -126534,28 +126760,28 @@ export type Routes = {
126534
126760
  online_time_frame_options?:
126535
126761
  | (
126536
126762
  | {
126537
- /** 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`). */
126763
+ /** 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`). */
126538
126764
  display_name: string
126539
126765
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
126540
126766
  min_duration?: string | undefined
126541
126767
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
126542
126768
  max_duration?: string | undefined
126543
- /** 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`. */
126769
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
126544
126770
  matching_start_end_time?: true | undefined
126545
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
126771
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
126546
126772
  time_pairs?:
126547
126773
  | {
126548
- /** Label for the check-in/check-out time pairing. */
126774
+ /** Label for the start/end time pairing. */
126549
126775
  display_name: string
126550
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
126551
- check_in_time: string
126552
- /** 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. */
126553
- check_out_time: string
126776
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
126777
+ start_time: string
126778
+ /** 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. */
126779
+ end_time: string
126554
126780
  }[]
126555
126781
  | undefined
126556
- /** 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. */
126782
+ /** 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. */
126557
126783
  start_date_recurrence_rule?: string | undefined
126558
- /** 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. */
126784
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
126559
126785
  end_date_recurrence_rule?: string | undefined
126560
126786
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
126561
126787
  time_zone?: string | undefined
@@ -127491,6 +127717,7 @@ export type Routes = {
127491
127717
  | 'ultraloq_lock'
127492
127718
  | 'keyincode_lock'
127493
127719
  | 'omnitec_lock'
127720
+ | 'kisi_lock'
127494
127721
  )
127495
127722
  | 'keynest_key'
127496
127723
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -128249,6 +128476,19 @@ export type Routes = {
128249
128476
  location_id?: (string | null) | undefined
128250
128477
  }
128251
128478
  | undefined
128479
+ /** Metadata for a Kisi device. */
128480
+ kisi_metadata?:
128481
+ | {
128482
+ /** Lock ID for a Kisi device. */
128483
+ lock_id: number
128484
+ /** Lock name for a Kisi device. */
128485
+ lock_name: string
128486
+ /** Place name for a Kisi device. */
128487
+ place_name: string | null
128488
+ /** Description for a Kisi device. */
128489
+ description: string | null
128490
+ }
128491
+ | undefined
128252
128492
  }) &
128253
128493
  ({
128254
128494
  /** */
@@ -128292,28 +128532,28 @@ export type Routes = {
128292
128532
  offline_time_frame_options?:
128293
128533
  | (
128294
128534
  | {
128295
- /** 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`). */
128535
+ /** 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`). */
128296
128536
  display_name: string
128297
128537
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
128298
128538
  min_duration?: string | undefined
128299
128539
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
128300
128540
  max_duration?: string | undefined
128301
- /** 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`. */
128541
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
128302
128542
  matching_start_end_time?: true | undefined
128303
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
128543
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
128304
128544
  time_pairs?:
128305
128545
  | {
128306
- /** Label for the check-in/check-out time pairing. */
128546
+ /** Label for the start/end time pairing. */
128307
128547
  display_name: string
128308
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
128309
- check_in_time: string
128310
- /** 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. */
128311
- check_out_time: string
128548
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
128549
+ start_time: string
128550
+ /** 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. */
128551
+ end_time: string
128312
128552
  }[]
128313
128553
  | undefined
128314
- /** 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. */
128554
+ /** 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. */
128315
128555
  start_date_recurrence_rule?: string | undefined
128316
- /** 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. */
128556
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
128317
128557
  end_date_recurrence_rule?: string | undefined
128318
128558
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
128319
128559
  time_zone?: string | undefined
@@ -128325,28 +128565,28 @@ export type Routes = {
128325
128565
  online_time_frame_options?:
128326
128566
  | (
128327
128567
  | {
128328
- /** 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`). */
128568
+ /** 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`). */
128329
128569
  display_name: string
128330
128570
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
128331
128571
  min_duration?: string | undefined
128332
128572
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
128333
128573
  max_duration?: string | undefined
128334
- /** 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`. */
128574
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
128335
128575
  matching_start_end_time?: true | undefined
128336
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
128576
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
128337
128577
  time_pairs?:
128338
128578
  | {
128339
- /** Label for the check-in/check-out time pairing. */
128579
+ /** Label for the start/end time pairing. */
128340
128580
  display_name: string
128341
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
128342
- check_in_time: string
128343
- /** 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. */
128344
- check_out_time: string
128581
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
128582
+ start_time: string
128583
+ /** 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. */
128584
+ end_time: string
128345
128585
  }[]
128346
128586
  | undefined
128347
- /** 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. */
128587
+ /** 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. */
128348
128588
  start_date_recurrence_rule?: string | undefined
128349
- /** 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. */
128589
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
128350
128590
  end_date_recurrence_rule?: string | undefined
128351
128591
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
128352
128592
  time_zone?: string | undefined
@@ -130705,6 +130945,7 @@ export type Routes = {
130705
130945
  | 'ultraloq_lock'
130706
130946
  | 'keyincode_lock'
130707
130947
  | 'omnitec_lock'
130948
+ | 'kisi_lock'
130708
130949
  )
130709
130950
  | 'keynest_key'
130710
130951
  | ('noiseaware_activity_zone' | 'minut_sensor')
@@ -131465,6 +131706,19 @@ export type Routes = {
131465
131706
  location_id?: (string | null) | undefined
131466
131707
  }
131467
131708
  | undefined
131709
+ /** Metadata for a Kisi device. */
131710
+ kisi_metadata?:
131711
+ | {
131712
+ /** Lock ID for a Kisi device. */
131713
+ lock_id: number
131714
+ /** Lock name for a Kisi device. */
131715
+ lock_name: string
131716
+ /** Place name for a Kisi device. */
131717
+ place_name: string | null
131718
+ /** Description for a Kisi device. */
131719
+ description: string | null
131720
+ }
131721
+ | undefined
131468
131722
  }) &
131469
131723
  ({
131470
131724
  /** */
@@ -131510,28 +131764,28 @@ export type Routes = {
131510
131764
  offline_time_frame_options?:
131511
131765
  | (
131512
131766
  | {
131513
- /** 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`). */
131767
+ /** 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`). */
131514
131768
  display_name: string
131515
131769
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
131516
131770
  min_duration?: string | undefined
131517
131771
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
131518
131772
  max_duration?: string | undefined
131519
- /** 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`. */
131773
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
131520
131774
  matching_start_end_time?: true | undefined
131521
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
131775
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
131522
131776
  time_pairs?:
131523
131777
  | {
131524
- /** Label for the check-in/check-out time pairing. */
131778
+ /** Label for the start/end time pairing. */
131525
131779
  display_name: string
131526
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
131527
- check_in_time: string
131528
- /** 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. */
131529
- check_out_time: string
131780
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
131781
+ start_time: string
131782
+ /** 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. */
131783
+ end_time: string
131530
131784
  }[]
131531
131785
  | undefined
131532
- /** 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. */
131786
+ /** 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. */
131533
131787
  start_date_recurrence_rule?: string | undefined
131534
- /** 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. */
131788
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
131535
131789
  end_date_recurrence_rule?: string | undefined
131536
131790
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
131537
131791
  time_zone?: string | undefined
@@ -131543,28 +131797,28 @@ export type Routes = {
131543
131797
  online_time_frame_options?:
131544
131798
  | (
131545
131799
  | {
131546
- /** 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`). */
131800
+ /** 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`). */
131547
131801
  display_name: string
131548
131802
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
131549
131803
  min_duration?: string | undefined
131550
131804
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
131551
131805
  max_duration?: string | undefined
131552
- /** 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`. */
131806
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
131553
131807
  matching_start_end_time?: true | undefined
131554
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
131808
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
131555
131809
  time_pairs?:
131556
131810
  | {
131557
- /** Label for the check-in/check-out time pairing. */
131811
+ /** Label for the start/end time pairing. */
131558
131812
  display_name: string
131559
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
131560
- check_in_time: string
131561
- /** 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. */
131562
- check_out_time: string
131813
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
131814
+ start_time: string
131815
+ /** 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. */
131816
+ end_time: string
131563
131817
  }[]
131564
131818
  | undefined
131565
- /** 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. */
131819
+ /** 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. */
131566
131820
  start_date_recurrence_rule?: string | undefined
131567
- /** 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. */
131821
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
131568
131822
  end_date_recurrence_rule?: string | undefined
131569
131823
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
131570
131824
  time_zone?: string | undefined
@@ -135939,6 +136193,7 @@ export type Routes = {
135939
136193
  | 'ultraloq_lock'
135940
136194
  | 'keyincode_lock'
135941
136195
  | 'omnitec_lock'
136196
+ | 'kisi_lock'
135942
136197
  )
135943
136198
  | 'keynest_key'
135944
136199
  | ('noiseaware_activity_zone' | 'minut_sensor')