@seamapi/types 1.927.0 → 1.929.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.
- package/dist/connect.cjs +190 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1360 -116
- package/dist/index.cjs +190 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +4 -4
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +2 -2
- package/lib/seam/connect/models/customer/customer-data.d.ts +12 -12
- package/lib/seam/connect/models/customer/location-resources.d.ts +8 -8
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +201 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +58 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +165 -13
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +12 -12
- package/lib/seam/connect/models/devices/device-metadata.d.ts +20 -20
- package/lib/seam/connect/models/devices/device.d.ts +248 -40
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +180 -28
- package/lib/seam/connect/models/spaces/space.d.ts +27 -27
- package/lib/seam/connect/models/spaces/space.js +4 -1
- package/lib/seam/connect/models/spaces/space.js.map +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +4 -4
- package/lib/seam/connect/openapi.js +138 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +897 -13
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +86 -0
- package/src/lib/seam/connect/models/devices/capability-properties/index.ts +1 -1
- package/src/lib/seam/connect/models/spaces/space.ts +6 -1
- package/src/lib/seam/connect/openapi.ts +167 -1
- package/src/lib/seam/connect/route-types.ts +1135 -13
|
@@ -13460,7 +13460,7 @@ export type Routes = {
|
|
|
13460
13460
|
acs_entrance_count: number
|
|
13461
13461
|
/** Customer key associated with the space. */
|
|
13462
13462
|
customer_key?: string | undefined
|
|
13463
|
-
/** Reservation/stay-related defaults for the space. */
|
|
13463
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
13464
13464
|
customer_data?:
|
|
13465
13465
|
| {
|
|
13466
13466
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -14324,6 +14324,72 @@ export type Routes = {
|
|
|
14324
14324
|
| undefined
|
|
14325
14325
|
/** Supported code lengths for access codes. */
|
|
14326
14326
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
14327
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
14328
|
+
offline_time_frame_options?:
|
|
14329
|
+
| (
|
|
14330
|
+
| {
|
|
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`). */
|
|
14332
|
+
display_name: string
|
|
14333
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
14334
|
+
min_duration?: string | undefined
|
|
14335
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
14336
|
+
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`. */
|
|
14338
|
+
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`. */
|
|
14340
|
+
time_pairs?:
|
|
14341
|
+
| {
|
|
14342
|
+
/** Label for the check-in/check-out time pairing. */
|
|
14343
|
+
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
|
|
14348
|
+
}[]
|
|
14349
|
+
| 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. */
|
|
14351
|
+
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. */
|
|
14353
|
+
end_date_recurrence_rule?: string | undefined
|
|
14354
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
14355
|
+
time_zone?: string | undefined
|
|
14356
|
+
}[]
|
|
14357
|
+
| undefined
|
|
14358
|
+
)
|
|
14359
|
+
| undefined
|
|
14360
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
14361
|
+
online_time_frame_options?:
|
|
14362
|
+
| (
|
|
14363
|
+
| {
|
|
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`). */
|
|
14365
|
+
display_name: string
|
|
14366
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
14367
|
+
min_duration?: string | undefined
|
|
14368
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
14369
|
+
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`. */
|
|
14371
|
+
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`. */
|
|
14373
|
+
time_pairs?:
|
|
14374
|
+
| {
|
|
14375
|
+
/** Label for the check-in/check-out time pairing. */
|
|
14376
|
+
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
|
|
14381
|
+
}[]
|
|
14382
|
+
| 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. */
|
|
14384
|
+
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. */
|
|
14386
|
+
end_date_recurrence_rule?: string | undefined
|
|
14387
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
14388
|
+
time_zone?: string | undefined
|
|
14389
|
+
}[]
|
|
14390
|
+
| undefined
|
|
14391
|
+
)
|
|
14392
|
+
| undefined
|
|
14327
14393
|
/** Maximum number of active access codes that the device supports. */
|
|
14328
14394
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
14329
14395
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -21270,7 +21336,7 @@ export type Routes = {
|
|
|
21270
21336
|
acs_entrance_count: number
|
|
21271
21337
|
/** Customer key associated with the space. */
|
|
21272
21338
|
customer_key?: string | undefined
|
|
21273
|
-
/** Reservation/stay-related defaults for the space. */
|
|
21339
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
21274
21340
|
customer_data?:
|
|
21275
21341
|
| {
|
|
21276
21342
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -22134,6 +22200,72 @@ export type Routes = {
|
|
|
22134
22200
|
| undefined
|
|
22135
22201
|
/** Supported code lengths for access codes. */
|
|
22136
22202
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
22203
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
22204
|
+
offline_time_frame_options?:
|
|
22205
|
+
| (
|
|
22206
|
+
| {
|
|
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`). */
|
|
22208
|
+
display_name: string
|
|
22209
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
22210
|
+
min_duration?: string | undefined
|
|
22211
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
22212
|
+
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`. */
|
|
22214
|
+
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`. */
|
|
22216
|
+
time_pairs?:
|
|
22217
|
+
| {
|
|
22218
|
+
/** Label for the check-in/check-out time pairing. */
|
|
22219
|
+
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
|
|
22224
|
+
}[]
|
|
22225
|
+
| 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. */
|
|
22227
|
+
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. */
|
|
22229
|
+
end_date_recurrence_rule?: string | undefined
|
|
22230
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
22231
|
+
time_zone?: string | undefined
|
|
22232
|
+
}[]
|
|
22233
|
+
| undefined
|
|
22234
|
+
)
|
|
22235
|
+
| undefined
|
|
22236
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
22237
|
+
online_time_frame_options?:
|
|
22238
|
+
| (
|
|
22239
|
+
| {
|
|
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`). */
|
|
22241
|
+
display_name: string
|
|
22242
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
22243
|
+
min_duration?: string | undefined
|
|
22244
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
22245
|
+
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`. */
|
|
22247
|
+
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`. */
|
|
22249
|
+
time_pairs?:
|
|
22250
|
+
| {
|
|
22251
|
+
/** Label for the check-in/check-out time pairing. */
|
|
22252
|
+
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
|
|
22257
|
+
}[]
|
|
22258
|
+
| 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. */
|
|
22260
|
+
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. */
|
|
22262
|
+
end_date_recurrence_rule?: string | undefined
|
|
22263
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
22264
|
+
time_zone?: string | undefined
|
|
22265
|
+
}[]
|
|
22266
|
+
| undefined
|
|
22267
|
+
)
|
|
22268
|
+
| undefined
|
|
22137
22269
|
/** Maximum number of active access codes that the device supports. */
|
|
22138
22270
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
22139
22271
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -48262,6 +48394,72 @@ export type Routes = {
|
|
|
48262
48394
|
| undefined
|
|
48263
48395
|
/** Supported code lengths for access codes. */
|
|
48264
48396
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
48397
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
48398
|
+
offline_time_frame_options?:
|
|
48399
|
+
| (
|
|
48400
|
+
| {
|
|
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`). */
|
|
48402
|
+
display_name: string
|
|
48403
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
48404
|
+
min_duration?: string | undefined
|
|
48405
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
48406
|
+
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`. */
|
|
48408
|
+
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`. */
|
|
48410
|
+
time_pairs?:
|
|
48411
|
+
| {
|
|
48412
|
+
/** Label for the check-in/check-out time pairing. */
|
|
48413
|
+
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
|
|
48418
|
+
}[]
|
|
48419
|
+
| 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. */
|
|
48421
|
+
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. */
|
|
48423
|
+
end_date_recurrence_rule?: string | undefined
|
|
48424
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
48425
|
+
time_zone?: string | undefined
|
|
48426
|
+
}[]
|
|
48427
|
+
| undefined
|
|
48428
|
+
)
|
|
48429
|
+
| undefined
|
|
48430
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
48431
|
+
online_time_frame_options?:
|
|
48432
|
+
| (
|
|
48433
|
+
| {
|
|
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`). */
|
|
48435
|
+
display_name: string
|
|
48436
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
48437
|
+
min_duration?: string | undefined
|
|
48438
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
48439
|
+
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`. */
|
|
48441
|
+
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`. */
|
|
48443
|
+
time_pairs?:
|
|
48444
|
+
| {
|
|
48445
|
+
/** Label for the check-in/check-out time pairing. */
|
|
48446
|
+
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
|
|
48451
|
+
}[]
|
|
48452
|
+
| 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. */
|
|
48454
|
+
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. */
|
|
48456
|
+
end_date_recurrence_rule?: string | undefined
|
|
48457
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
48458
|
+
time_zone?: string | undefined
|
|
48459
|
+
}[]
|
|
48460
|
+
| undefined
|
|
48461
|
+
)
|
|
48462
|
+
| undefined
|
|
48265
48463
|
/** Maximum number of active access codes that the device supports. */
|
|
48266
48464
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
48267
48465
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -50226,6 +50424,72 @@ export type Routes = {
|
|
|
50226
50424
|
| undefined
|
|
50227
50425
|
/** Supported code lengths for access codes. */
|
|
50228
50426
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
50427
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
50428
|
+
offline_time_frame_options?:
|
|
50429
|
+
| (
|
|
50430
|
+
| {
|
|
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`). */
|
|
50432
|
+
display_name: string
|
|
50433
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
50434
|
+
min_duration?: string | undefined
|
|
50435
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
50436
|
+
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`. */
|
|
50438
|
+
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`. */
|
|
50440
|
+
time_pairs?:
|
|
50441
|
+
| {
|
|
50442
|
+
/** Label for the check-in/check-out time pairing. */
|
|
50443
|
+
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
|
|
50448
|
+
}[]
|
|
50449
|
+
| 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. */
|
|
50451
|
+
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. */
|
|
50453
|
+
end_date_recurrence_rule?: string | undefined
|
|
50454
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
50455
|
+
time_zone?: string | undefined
|
|
50456
|
+
}[]
|
|
50457
|
+
| undefined
|
|
50458
|
+
)
|
|
50459
|
+
| undefined
|
|
50460
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
50461
|
+
online_time_frame_options?:
|
|
50462
|
+
| (
|
|
50463
|
+
| {
|
|
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`). */
|
|
50465
|
+
display_name: string
|
|
50466
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
50467
|
+
min_duration?: string | undefined
|
|
50468
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
50469
|
+
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`. */
|
|
50471
|
+
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`. */
|
|
50473
|
+
time_pairs?:
|
|
50474
|
+
| {
|
|
50475
|
+
/** Label for the check-in/check-out time pairing. */
|
|
50476
|
+
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
|
|
50481
|
+
}[]
|
|
50482
|
+
| 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. */
|
|
50484
|
+
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. */
|
|
50486
|
+
end_date_recurrence_rule?: string | undefined
|
|
50487
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
50488
|
+
time_zone?: string | undefined
|
|
50489
|
+
}[]
|
|
50490
|
+
| undefined
|
|
50491
|
+
)
|
|
50492
|
+
| undefined
|
|
50229
50493
|
/** Maximum number of active access codes that the device supports. */
|
|
50230
50494
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
50231
50495
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -64093,6 +64357,72 @@ export type Routes = {
|
|
|
64093
64357
|
| undefined
|
|
64094
64358
|
/** Supported code lengths for access codes. */
|
|
64095
64359
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
64360
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
64361
|
+
offline_time_frame_options?:
|
|
64362
|
+
| (
|
|
64363
|
+
| {
|
|
64364
|
+
/** 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`). */
|
|
64365
|
+
display_name: string
|
|
64366
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
64367
|
+
min_duration?: string | undefined
|
|
64368
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
64369
|
+
max_duration?: string | undefined
|
|
64370
|
+
/** 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`. */
|
|
64371
|
+
matching_start_end_time?: true | undefined
|
|
64372
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
64373
|
+
time_pairs?:
|
|
64374
|
+
| {
|
|
64375
|
+
/** Label for the check-in/check-out time pairing. */
|
|
64376
|
+
display_name: string
|
|
64377
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
64378
|
+
check_in_time: string
|
|
64379
|
+
/** 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. */
|
|
64380
|
+
check_out_time: string
|
|
64381
|
+
}[]
|
|
64382
|
+
| undefined
|
|
64383
|
+
/** 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. */
|
|
64384
|
+
start_date_recurrence_rule?: string | undefined
|
|
64385
|
+
/** 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. */
|
|
64386
|
+
end_date_recurrence_rule?: string | undefined
|
|
64387
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
64388
|
+
time_zone?: string | undefined
|
|
64389
|
+
}[]
|
|
64390
|
+
| undefined
|
|
64391
|
+
)
|
|
64392
|
+
| undefined
|
|
64393
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
64394
|
+
online_time_frame_options?:
|
|
64395
|
+
| (
|
|
64396
|
+
| {
|
|
64397
|
+
/** 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`). */
|
|
64398
|
+
display_name: string
|
|
64399
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
64400
|
+
min_duration?: string | undefined
|
|
64401
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
64402
|
+
max_duration?: string | undefined
|
|
64403
|
+
/** 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`. */
|
|
64404
|
+
matching_start_end_time?: true | undefined
|
|
64405
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
64406
|
+
time_pairs?:
|
|
64407
|
+
| {
|
|
64408
|
+
/** Label for the check-in/check-out time pairing. */
|
|
64409
|
+
display_name: string
|
|
64410
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
64411
|
+
check_in_time: string
|
|
64412
|
+
/** 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. */
|
|
64413
|
+
check_out_time: string
|
|
64414
|
+
}[]
|
|
64415
|
+
| undefined
|
|
64416
|
+
/** 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. */
|
|
64417
|
+
start_date_recurrence_rule?: string | undefined
|
|
64418
|
+
/** 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. */
|
|
64419
|
+
end_date_recurrence_rule?: string | undefined
|
|
64420
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
64421
|
+
time_zone?: string | undefined
|
|
64422
|
+
}[]
|
|
64423
|
+
| undefined
|
|
64424
|
+
)
|
|
64425
|
+
| undefined
|
|
64096
64426
|
/** Maximum number of active access codes that the device supports. */
|
|
64097
64427
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
64098
64428
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -65817,6 +66147,72 @@ export type Routes = {
|
|
|
65817
66147
|
| undefined
|
|
65818
66148
|
/** Supported code lengths for access codes. */
|
|
65819
66149
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
66150
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
66151
|
+
offline_time_frame_options?:
|
|
66152
|
+
| (
|
|
66153
|
+
| {
|
|
66154
|
+
/** 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`). */
|
|
66155
|
+
display_name: string
|
|
66156
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
66157
|
+
min_duration?: string | undefined
|
|
66158
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
66159
|
+
max_duration?: string | undefined
|
|
66160
|
+
/** 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`. */
|
|
66161
|
+
matching_start_end_time?: true | undefined
|
|
66162
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
66163
|
+
time_pairs?:
|
|
66164
|
+
| {
|
|
66165
|
+
/** Label for the check-in/check-out time pairing. */
|
|
66166
|
+
display_name: string
|
|
66167
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
66168
|
+
check_in_time: string
|
|
66169
|
+
/** 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. */
|
|
66170
|
+
check_out_time: string
|
|
66171
|
+
}[]
|
|
66172
|
+
| undefined
|
|
66173
|
+
/** 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. */
|
|
66174
|
+
start_date_recurrence_rule?: string | undefined
|
|
66175
|
+
/** 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. */
|
|
66176
|
+
end_date_recurrence_rule?: string | undefined
|
|
66177
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
66178
|
+
time_zone?: string | undefined
|
|
66179
|
+
}[]
|
|
66180
|
+
| undefined
|
|
66181
|
+
)
|
|
66182
|
+
| undefined
|
|
66183
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
66184
|
+
online_time_frame_options?:
|
|
66185
|
+
| (
|
|
66186
|
+
| {
|
|
66187
|
+
/** 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`). */
|
|
66188
|
+
display_name: string
|
|
66189
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
66190
|
+
min_duration?: string | undefined
|
|
66191
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
66192
|
+
max_duration?: string | undefined
|
|
66193
|
+
/** 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`. */
|
|
66194
|
+
matching_start_end_time?: true | undefined
|
|
66195
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
66196
|
+
time_pairs?:
|
|
66197
|
+
| {
|
|
66198
|
+
/** Label for the check-in/check-out time pairing. */
|
|
66199
|
+
display_name: string
|
|
66200
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
66201
|
+
check_in_time: string
|
|
66202
|
+
/** 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. */
|
|
66203
|
+
check_out_time: string
|
|
66204
|
+
}[]
|
|
66205
|
+
| undefined
|
|
66206
|
+
/** 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. */
|
|
66207
|
+
start_date_recurrence_rule?: string | undefined
|
|
66208
|
+
/** 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. */
|
|
66209
|
+
end_date_recurrence_rule?: string | undefined
|
|
66210
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
66211
|
+
time_zone?: string | undefined
|
|
66212
|
+
}[]
|
|
66213
|
+
| undefined
|
|
66214
|
+
)
|
|
66215
|
+
| undefined
|
|
65820
66216
|
/** Maximum number of active access codes that the device supports. */
|
|
65821
66217
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
65822
66218
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -67734,6 +68130,72 @@ export type Routes = {
|
|
|
67734
68130
|
| undefined
|
|
67735
68131
|
/** Supported code lengths for access codes. */
|
|
67736
68132
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
68133
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
68134
|
+
offline_time_frame_options?:
|
|
68135
|
+
| (
|
|
68136
|
+
| {
|
|
68137
|
+
/** 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`). */
|
|
68138
|
+
display_name: string
|
|
68139
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
68140
|
+
min_duration?: string | undefined
|
|
68141
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
68142
|
+
max_duration?: string | undefined
|
|
68143
|
+
/** 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`. */
|
|
68144
|
+
matching_start_end_time?: true | undefined
|
|
68145
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
68146
|
+
time_pairs?:
|
|
68147
|
+
| {
|
|
68148
|
+
/** Label for the check-in/check-out time pairing. */
|
|
68149
|
+
display_name: string
|
|
68150
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
68151
|
+
check_in_time: string
|
|
68152
|
+
/** 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. */
|
|
68153
|
+
check_out_time: string
|
|
68154
|
+
}[]
|
|
68155
|
+
| undefined
|
|
68156
|
+
/** 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. */
|
|
68157
|
+
start_date_recurrence_rule?: string | undefined
|
|
68158
|
+
/** 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. */
|
|
68159
|
+
end_date_recurrence_rule?: string | undefined
|
|
68160
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
68161
|
+
time_zone?: string | undefined
|
|
68162
|
+
}[]
|
|
68163
|
+
| undefined
|
|
68164
|
+
)
|
|
68165
|
+
| undefined
|
|
68166
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
68167
|
+
online_time_frame_options?:
|
|
68168
|
+
| (
|
|
68169
|
+
| {
|
|
68170
|
+
/** 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`). */
|
|
68171
|
+
display_name: string
|
|
68172
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
68173
|
+
min_duration?: string | undefined
|
|
68174
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
68175
|
+
max_duration?: string | undefined
|
|
68176
|
+
/** 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`. */
|
|
68177
|
+
matching_start_end_time?: true | undefined
|
|
68178
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
68179
|
+
time_pairs?:
|
|
68180
|
+
| {
|
|
68181
|
+
/** Label for the check-in/check-out time pairing. */
|
|
68182
|
+
display_name: string
|
|
68183
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
68184
|
+
check_in_time: string
|
|
68185
|
+
/** 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. */
|
|
68186
|
+
check_out_time: string
|
|
68187
|
+
}[]
|
|
68188
|
+
| undefined
|
|
68189
|
+
/** 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. */
|
|
68190
|
+
start_date_recurrence_rule?: string | undefined
|
|
68191
|
+
/** 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. */
|
|
68192
|
+
end_date_recurrence_rule?: string | undefined
|
|
68193
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
68194
|
+
time_zone?: string | undefined
|
|
68195
|
+
}[]
|
|
68196
|
+
| undefined
|
|
68197
|
+
)
|
|
68198
|
+
| undefined
|
|
67737
68199
|
/** Maximum number of active access codes that the device supports. */
|
|
67738
68200
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
67739
68201
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -69457,6 +69919,72 @@ export type Routes = {
|
|
|
69457
69919
|
| undefined
|
|
69458
69920
|
/** Supported code lengths for access codes. */
|
|
69459
69921
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
69922
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
69923
|
+
offline_time_frame_options?:
|
|
69924
|
+
| (
|
|
69925
|
+
| {
|
|
69926
|
+
/** 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`). */
|
|
69927
|
+
display_name: string
|
|
69928
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
69929
|
+
min_duration?: string | undefined
|
|
69930
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
69931
|
+
max_duration?: string | undefined
|
|
69932
|
+
/** 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`. */
|
|
69933
|
+
matching_start_end_time?: true | undefined
|
|
69934
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
69935
|
+
time_pairs?:
|
|
69936
|
+
| {
|
|
69937
|
+
/** Label for the check-in/check-out time pairing. */
|
|
69938
|
+
display_name: string
|
|
69939
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
69940
|
+
check_in_time: string
|
|
69941
|
+
/** 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. */
|
|
69942
|
+
check_out_time: string
|
|
69943
|
+
}[]
|
|
69944
|
+
| undefined
|
|
69945
|
+
/** 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. */
|
|
69946
|
+
start_date_recurrence_rule?: string | undefined
|
|
69947
|
+
/** 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. */
|
|
69948
|
+
end_date_recurrence_rule?: string | undefined
|
|
69949
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
69950
|
+
time_zone?: string | undefined
|
|
69951
|
+
}[]
|
|
69952
|
+
| undefined
|
|
69953
|
+
)
|
|
69954
|
+
| undefined
|
|
69955
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
69956
|
+
online_time_frame_options?:
|
|
69957
|
+
| (
|
|
69958
|
+
| {
|
|
69959
|
+
/** 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`). */
|
|
69960
|
+
display_name: string
|
|
69961
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
69962
|
+
min_duration?: string | undefined
|
|
69963
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
69964
|
+
max_duration?: string | undefined
|
|
69965
|
+
/** 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`. */
|
|
69966
|
+
matching_start_end_time?: true | undefined
|
|
69967
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
69968
|
+
time_pairs?:
|
|
69969
|
+
| {
|
|
69970
|
+
/** Label for the check-in/check-out time pairing. */
|
|
69971
|
+
display_name: string
|
|
69972
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
69973
|
+
check_in_time: string
|
|
69974
|
+
/** 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. */
|
|
69975
|
+
check_out_time: string
|
|
69976
|
+
}[]
|
|
69977
|
+
| undefined
|
|
69978
|
+
/** 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. */
|
|
69979
|
+
start_date_recurrence_rule?: string | undefined
|
|
69980
|
+
/** 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. */
|
|
69981
|
+
end_date_recurrence_rule?: string | undefined
|
|
69982
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
69983
|
+
time_zone?: string | undefined
|
|
69984
|
+
}[]
|
|
69985
|
+
| undefined
|
|
69986
|
+
)
|
|
69987
|
+
| undefined
|
|
69460
69988
|
/** Maximum number of active access codes that the device supports. */
|
|
69461
69989
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
69462
69990
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -79069,6 +79597,72 @@ export type Routes = {
|
|
|
79069
79597
|
| undefined
|
|
79070
79598
|
/** Supported code lengths for access codes. */
|
|
79071
79599
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
79600
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
79601
|
+
offline_time_frame_options?:
|
|
79602
|
+
| (
|
|
79603
|
+
| {
|
|
79604
|
+
/** 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`). */
|
|
79605
|
+
display_name: string
|
|
79606
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
79607
|
+
min_duration?: string | undefined
|
|
79608
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
79609
|
+
max_duration?: string | undefined
|
|
79610
|
+
/** 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`. */
|
|
79611
|
+
matching_start_end_time?: true | undefined
|
|
79612
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
79613
|
+
time_pairs?:
|
|
79614
|
+
| {
|
|
79615
|
+
/** Label for the check-in/check-out time pairing. */
|
|
79616
|
+
display_name: string
|
|
79617
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
79618
|
+
check_in_time: string
|
|
79619
|
+
/** 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. */
|
|
79620
|
+
check_out_time: string
|
|
79621
|
+
}[]
|
|
79622
|
+
| undefined
|
|
79623
|
+
/** 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. */
|
|
79624
|
+
start_date_recurrence_rule?: string | undefined
|
|
79625
|
+
/** 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. */
|
|
79626
|
+
end_date_recurrence_rule?: string | undefined
|
|
79627
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
79628
|
+
time_zone?: string | undefined
|
|
79629
|
+
}[]
|
|
79630
|
+
| undefined
|
|
79631
|
+
)
|
|
79632
|
+
| undefined
|
|
79633
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
79634
|
+
online_time_frame_options?:
|
|
79635
|
+
| (
|
|
79636
|
+
| {
|
|
79637
|
+
/** 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`). */
|
|
79638
|
+
display_name: string
|
|
79639
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
79640
|
+
min_duration?: string | undefined
|
|
79641
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
79642
|
+
max_duration?: string | undefined
|
|
79643
|
+
/** 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`. */
|
|
79644
|
+
matching_start_end_time?: true | undefined
|
|
79645
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
79646
|
+
time_pairs?:
|
|
79647
|
+
| {
|
|
79648
|
+
/** Label for the check-in/check-out time pairing. */
|
|
79649
|
+
display_name: string
|
|
79650
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
79651
|
+
check_in_time: string
|
|
79652
|
+
/** 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. */
|
|
79653
|
+
check_out_time: string
|
|
79654
|
+
}[]
|
|
79655
|
+
| undefined
|
|
79656
|
+
/** 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. */
|
|
79657
|
+
start_date_recurrence_rule?: string | undefined
|
|
79658
|
+
/** 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. */
|
|
79659
|
+
end_date_recurrence_rule?: string | undefined
|
|
79660
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
79661
|
+
time_zone?: string | undefined
|
|
79662
|
+
}[]
|
|
79663
|
+
| undefined
|
|
79664
|
+
)
|
|
79665
|
+
| undefined
|
|
79072
79666
|
/** Maximum number of active access codes that the device supports. */
|
|
79073
79667
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
79074
79668
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -80792,6 +81386,72 @@ export type Routes = {
|
|
|
80792
81386
|
| undefined
|
|
80793
81387
|
/** Supported code lengths for access codes. */
|
|
80794
81388
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
81389
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
81390
|
+
offline_time_frame_options?:
|
|
81391
|
+
| (
|
|
81392
|
+
| {
|
|
81393
|
+
/** 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`). */
|
|
81394
|
+
display_name: string
|
|
81395
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
81396
|
+
min_duration?: string | undefined
|
|
81397
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
81398
|
+
max_duration?: string | undefined
|
|
81399
|
+
/** 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`. */
|
|
81400
|
+
matching_start_end_time?: true | undefined
|
|
81401
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
81402
|
+
time_pairs?:
|
|
81403
|
+
| {
|
|
81404
|
+
/** Label for the check-in/check-out time pairing. */
|
|
81405
|
+
display_name: string
|
|
81406
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
81407
|
+
check_in_time: string
|
|
81408
|
+
/** 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. */
|
|
81409
|
+
check_out_time: string
|
|
81410
|
+
}[]
|
|
81411
|
+
| undefined
|
|
81412
|
+
/** 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. */
|
|
81413
|
+
start_date_recurrence_rule?: string | undefined
|
|
81414
|
+
/** 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. */
|
|
81415
|
+
end_date_recurrence_rule?: string | undefined
|
|
81416
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
81417
|
+
time_zone?: string | undefined
|
|
81418
|
+
}[]
|
|
81419
|
+
| undefined
|
|
81420
|
+
)
|
|
81421
|
+
| undefined
|
|
81422
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
81423
|
+
online_time_frame_options?:
|
|
81424
|
+
| (
|
|
81425
|
+
| {
|
|
81426
|
+
/** 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`). */
|
|
81427
|
+
display_name: string
|
|
81428
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
81429
|
+
min_duration?: string | undefined
|
|
81430
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
81431
|
+
max_duration?: string | undefined
|
|
81432
|
+
/** 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`. */
|
|
81433
|
+
matching_start_end_time?: true | undefined
|
|
81434
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
81435
|
+
time_pairs?:
|
|
81436
|
+
| {
|
|
81437
|
+
/** Label for the check-in/check-out time pairing. */
|
|
81438
|
+
display_name: string
|
|
81439
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
81440
|
+
check_in_time: string
|
|
81441
|
+
/** 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. */
|
|
81442
|
+
check_out_time: string
|
|
81443
|
+
}[]
|
|
81444
|
+
| undefined
|
|
81445
|
+
/** 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. */
|
|
81446
|
+
start_date_recurrence_rule?: string | undefined
|
|
81447
|
+
/** 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. */
|
|
81448
|
+
end_date_recurrence_rule?: string | undefined
|
|
81449
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
81450
|
+
time_zone?: string | undefined
|
|
81451
|
+
}[]
|
|
81452
|
+
| undefined
|
|
81453
|
+
)
|
|
81454
|
+
| undefined
|
|
80795
81455
|
/** Maximum number of active access codes that the device supports. */
|
|
80796
81456
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
80797
81457
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -88411,7 +89071,7 @@ export type Routes = {
|
|
|
88411
89071
|
acs_entrance_count: number
|
|
88412
89072
|
/** Customer key associated with the space. */
|
|
88413
89073
|
customer_key?: string | undefined
|
|
88414
|
-
/** Reservation/stay-related defaults for the space. */
|
|
89074
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
88415
89075
|
customer_data?:
|
|
88416
89076
|
| {
|
|
88417
89077
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -88484,7 +89144,7 @@ export type Routes = {
|
|
|
88484
89144
|
acs_entrance_count: number
|
|
88485
89145
|
/** Customer key associated with the space. */
|
|
88486
89146
|
customer_key?: string | undefined
|
|
88487
|
-
/** Reservation/stay-related defaults for the space. */
|
|
89147
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
88488
89148
|
customer_data?:
|
|
88489
89149
|
| {
|
|
88490
89150
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -88549,7 +89209,7 @@ export type Routes = {
|
|
|
88549
89209
|
acs_entrance_count: number
|
|
88550
89210
|
/** Customer key associated with the space. */
|
|
88551
89211
|
customer_key?: string | undefined
|
|
88552
|
-
/** Reservation/stay-related defaults for the space. */
|
|
89212
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
88553
89213
|
customer_data?:
|
|
88554
89214
|
| {
|
|
88555
89215
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -96449,7 +97109,7 @@ export type Routes = {
|
|
|
96449
97109
|
acs_entrance_count: number
|
|
96450
97110
|
/** Customer key associated with the space. */
|
|
96451
97111
|
customer_key?: string | undefined
|
|
96452
|
-
/** Reservation/stay-related defaults for the space. */
|
|
97112
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
96453
97113
|
customer_data?:
|
|
96454
97114
|
| {
|
|
96455
97115
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -96517,7 +97177,7 @@ export type Routes = {
|
|
|
96517
97177
|
acs_entrance_count: number
|
|
96518
97178
|
/** Customer key associated with the space. */
|
|
96519
97179
|
customer_key?: string | undefined
|
|
96520
|
-
/** Reservation/stay-related defaults for the space. */
|
|
97180
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
96521
97181
|
customer_data?:
|
|
96522
97182
|
| {
|
|
96523
97183
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -97796,7 +98456,7 @@ export type Routes = {
|
|
|
97796
98456
|
acs_entrance_count: number
|
|
97797
98457
|
/** Customer key associated with the space. */
|
|
97798
98458
|
customer_key?: string | undefined
|
|
97799
|
-
/** Reservation/stay-related defaults for the space. */
|
|
98459
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
97800
98460
|
customer_data?:
|
|
97801
98461
|
| {
|
|
97802
98462
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -97875,7 +98535,7 @@ export type Routes = {
|
|
|
97875
98535
|
acs_entrance_count: number
|
|
97876
98536
|
/** Customer key associated with the space. */
|
|
97877
98537
|
customer_key?: string | undefined
|
|
97878
|
-
/** Reservation/stay-related defaults for the space. */
|
|
98538
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
97879
98539
|
customer_data?:
|
|
97880
98540
|
| {
|
|
97881
98541
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -97960,7 +98620,7 @@ export type Routes = {
|
|
|
97960
98620
|
acs_entrance_count: number
|
|
97961
98621
|
/** Customer key associated with the space. */
|
|
97962
98622
|
customer_key?: string | undefined
|
|
97963
|
-
/** Reservation/stay-related defaults for the space. */
|
|
98623
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
97964
98624
|
customer_data?:
|
|
97965
98625
|
| {
|
|
97966
98626
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -98824,6 +99484,72 @@ export type Routes = {
|
|
|
98824
99484
|
| undefined
|
|
98825
99485
|
/** Supported code lengths for access codes. */
|
|
98826
99486
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
99487
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
99488
|
+
offline_time_frame_options?:
|
|
99489
|
+
| (
|
|
99490
|
+
| {
|
|
99491
|
+
/** 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`). */
|
|
99492
|
+
display_name: string
|
|
99493
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
99494
|
+
min_duration?: string | undefined
|
|
99495
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
99496
|
+
max_duration?: string | undefined
|
|
99497
|
+
/** 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`. */
|
|
99498
|
+
matching_start_end_time?: true | undefined
|
|
99499
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
99500
|
+
time_pairs?:
|
|
99501
|
+
| {
|
|
99502
|
+
/** Label for the check-in/check-out time pairing. */
|
|
99503
|
+
display_name: string
|
|
99504
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
99505
|
+
check_in_time: string
|
|
99506
|
+
/** 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. */
|
|
99507
|
+
check_out_time: string
|
|
99508
|
+
}[]
|
|
99509
|
+
| undefined
|
|
99510
|
+
/** 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. */
|
|
99511
|
+
start_date_recurrence_rule?: string | undefined
|
|
99512
|
+
/** 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. */
|
|
99513
|
+
end_date_recurrence_rule?: string | undefined
|
|
99514
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
99515
|
+
time_zone?: string | undefined
|
|
99516
|
+
}[]
|
|
99517
|
+
| undefined
|
|
99518
|
+
)
|
|
99519
|
+
| undefined
|
|
99520
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
99521
|
+
online_time_frame_options?:
|
|
99522
|
+
| (
|
|
99523
|
+
| {
|
|
99524
|
+
/** 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`). */
|
|
99525
|
+
display_name: string
|
|
99526
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
99527
|
+
min_duration?: string | undefined
|
|
99528
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
99529
|
+
max_duration?: string | undefined
|
|
99530
|
+
/** 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`. */
|
|
99531
|
+
matching_start_end_time?: true | undefined
|
|
99532
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
99533
|
+
time_pairs?:
|
|
99534
|
+
| {
|
|
99535
|
+
/** Label for the check-in/check-out time pairing. */
|
|
99536
|
+
display_name: string
|
|
99537
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
99538
|
+
check_in_time: string
|
|
99539
|
+
/** 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. */
|
|
99540
|
+
check_out_time: string
|
|
99541
|
+
}[]
|
|
99542
|
+
| undefined
|
|
99543
|
+
/** 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. */
|
|
99544
|
+
start_date_recurrence_rule?: string | undefined
|
|
99545
|
+
/** 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. */
|
|
99546
|
+
end_date_recurrence_rule?: string | undefined
|
|
99547
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
99548
|
+
time_zone?: string | undefined
|
|
99549
|
+
}[]
|
|
99550
|
+
| undefined
|
|
99551
|
+
)
|
|
99552
|
+
| undefined
|
|
98827
99553
|
/** Maximum number of active access codes that the device supports. */
|
|
98828
99554
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
98829
99555
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -100528,7 +101254,7 @@ export type Routes = {
|
|
|
100528
101254
|
acs_entrance_count: number
|
|
100529
101255
|
/** Customer key associated with the space. */
|
|
100530
101256
|
customer_key?: string | undefined
|
|
100531
|
-
/** Reservation/stay-related defaults for the space. */
|
|
101257
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
100532
101258
|
customer_data?:
|
|
100533
101259
|
| {
|
|
100534
101260
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -100668,7 +101394,7 @@ export type Routes = {
|
|
|
100668
101394
|
acs_entrance_count: number
|
|
100669
101395
|
/** Customer key associated with the space. */
|
|
100670
101396
|
customer_key?: string | undefined
|
|
100671
|
-
/** Reservation/stay-related defaults for the space. */
|
|
101397
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
100672
101398
|
customer_data?:
|
|
100673
101399
|
| {
|
|
100674
101400
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|
|
@@ -107522,6 +108248,72 @@ export type Routes = {
|
|
|
107522
108248
|
| undefined
|
|
107523
108249
|
/** Supported code lengths for access codes. */
|
|
107524
108250
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
108251
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
108252
|
+
offline_time_frame_options?:
|
|
108253
|
+
| (
|
|
108254
|
+
| {
|
|
108255
|
+
/** 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`). */
|
|
108256
|
+
display_name: string
|
|
108257
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
108258
|
+
min_duration?: string | undefined
|
|
108259
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
108260
|
+
max_duration?: string | undefined
|
|
108261
|
+
/** 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`. */
|
|
108262
|
+
matching_start_end_time?: true | undefined
|
|
108263
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
108264
|
+
time_pairs?:
|
|
108265
|
+
| {
|
|
108266
|
+
/** Label for the check-in/check-out time pairing. */
|
|
108267
|
+
display_name: string
|
|
108268
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
108269
|
+
check_in_time: string
|
|
108270
|
+
/** 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. */
|
|
108271
|
+
check_out_time: string
|
|
108272
|
+
}[]
|
|
108273
|
+
| undefined
|
|
108274
|
+
/** 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. */
|
|
108275
|
+
start_date_recurrence_rule?: string | undefined
|
|
108276
|
+
/** 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. */
|
|
108277
|
+
end_date_recurrence_rule?: string | undefined
|
|
108278
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
108279
|
+
time_zone?: string | undefined
|
|
108280
|
+
}[]
|
|
108281
|
+
| undefined
|
|
108282
|
+
)
|
|
108283
|
+
| undefined
|
|
108284
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
108285
|
+
online_time_frame_options?:
|
|
108286
|
+
| (
|
|
108287
|
+
| {
|
|
108288
|
+
/** 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`). */
|
|
108289
|
+
display_name: string
|
|
108290
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
108291
|
+
min_duration?: string | undefined
|
|
108292
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
108293
|
+
max_duration?: string | undefined
|
|
108294
|
+
/** 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`. */
|
|
108295
|
+
matching_start_end_time?: true | undefined
|
|
108296
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
108297
|
+
time_pairs?:
|
|
108298
|
+
| {
|
|
108299
|
+
/** Label for the check-in/check-out time pairing. */
|
|
108300
|
+
display_name: string
|
|
108301
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
108302
|
+
check_in_time: string
|
|
108303
|
+
/** 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. */
|
|
108304
|
+
check_out_time: string
|
|
108305
|
+
}[]
|
|
108306
|
+
| undefined
|
|
108307
|
+
/** 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. */
|
|
108308
|
+
start_date_recurrence_rule?: string | undefined
|
|
108309
|
+
/** 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. */
|
|
108310
|
+
end_date_recurrence_rule?: string | undefined
|
|
108311
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
108312
|
+
time_zone?: string | undefined
|
|
108313
|
+
}[]
|
|
108314
|
+
| undefined
|
|
108315
|
+
)
|
|
108316
|
+
| undefined
|
|
107525
108317
|
/** Maximum number of active access codes that the device supports. */
|
|
107526
108318
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
107527
108319
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -113279,6 +114071,72 @@ export type Routes = {
|
|
|
113279
114071
|
| undefined
|
|
113280
114072
|
/** Supported code lengths for access codes. */
|
|
113281
114073
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
114074
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
114075
|
+
offline_time_frame_options?:
|
|
114076
|
+
| (
|
|
114077
|
+
| {
|
|
114078
|
+
/** 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`). */
|
|
114079
|
+
display_name: string
|
|
114080
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
114081
|
+
min_duration?: string | undefined
|
|
114082
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
114083
|
+
max_duration?: string | undefined
|
|
114084
|
+
/** 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`. */
|
|
114085
|
+
matching_start_end_time?: true | undefined
|
|
114086
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
114087
|
+
time_pairs?:
|
|
114088
|
+
| {
|
|
114089
|
+
/** Label for the check-in/check-out time pairing. */
|
|
114090
|
+
display_name: string
|
|
114091
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
114092
|
+
check_in_time: string
|
|
114093
|
+
/** 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. */
|
|
114094
|
+
check_out_time: string
|
|
114095
|
+
}[]
|
|
114096
|
+
| undefined
|
|
114097
|
+
/** 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. */
|
|
114098
|
+
start_date_recurrence_rule?: string | undefined
|
|
114099
|
+
/** 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. */
|
|
114100
|
+
end_date_recurrence_rule?: string | undefined
|
|
114101
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
114102
|
+
time_zone?: string | undefined
|
|
114103
|
+
}[]
|
|
114104
|
+
| undefined
|
|
114105
|
+
)
|
|
114106
|
+
| undefined
|
|
114107
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
114108
|
+
online_time_frame_options?:
|
|
114109
|
+
| (
|
|
114110
|
+
| {
|
|
114111
|
+
/** 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`). */
|
|
114112
|
+
display_name: string
|
|
114113
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
114114
|
+
min_duration?: string | undefined
|
|
114115
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
114116
|
+
max_duration?: string | undefined
|
|
114117
|
+
/** 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`. */
|
|
114118
|
+
matching_start_end_time?: true | undefined
|
|
114119
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
114120
|
+
time_pairs?:
|
|
114121
|
+
| {
|
|
114122
|
+
/** Label for the check-in/check-out time pairing. */
|
|
114123
|
+
display_name: string
|
|
114124
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
114125
|
+
check_in_time: string
|
|
114126
|
+
/** 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. */
|
|
114127
|
+
check_out_time: string
|
|
114128
|
+
}[]
|
|
114129
|
+
| undefined
|
|
114130
|
+
/** 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. */
|
|
114131
|
+
start_date_recurrence_rule?: string | undefined
|
|
114132
|
+
/** 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. */
|
|
114133
|
+
end_date_recurrence_rule?: string | undefined
|
|
114134
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
114135
|
+
time_zone?: string | undefined
|
|
114136
|
+
}[]
|
|
114137
|
+
| undefined
|
|
114138
|
+
)
|
|
114139
|
+
| undefined
|
|
113282
114140
|
/** Maximum number of active access codes that the device supports. */
|
|
113283
114141
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
113284
114142
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -115002,6 +115860,72 @@ export type Routes = {
|
|
|
115002
115860
|
| undefined
|
|
115003
115861
|
/** Supported code lengths for access codes. */
|
|
115004
115862
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
115863
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
115864
|
+
offline_time_frame_options?:
|
|
115865
|
+
| (
|
|
115866
|
+
| {
|
|
115867
|
+
/** 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`). */
|
|
115868
|
+
display_name: string
|
|
115869
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
115870
|
+
min_duration?: string | undefined
|
|
115871
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
115872
|
+
max_duration?: string | undefined
|
|
115873
|
+
/** 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`. */
|
|
115874
|
+
matching_start_end_time?: true | undefined
|
|
115875
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
115876
|
+
time_pairs?:
|
|
115877
|
+
| {
|
|
115878
|
+
/** Label for the check-in/check-out time pairing. */
|
|
115879
|
+
display_name: string
|
|
115880
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
115881
|
+
check_in_time: string
|
|
115882
|
+
/** 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. */
|
|
115883
|
+
check_out_time: string
|
|
115884
|
+
}[]
|
|
115885
|
+
| undefined
|
|
115886
|
+
/** 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. */
|
|
115887
|
+
start_date_recurrence_rule?: string | undefined
|
|
115888
|
+
/** 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. */
|
|
115889
|
+
end_date_recurrence_rule?: string | undefined
|
|
115890
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
115891
|
+
time_zone?: string | undefined
|
|
115892
|
+
}[]
|
|
115893
|
+
| undefined
|
|
115894
|
+
)
|
|
115895
|
+
| undefined
|
|
115896
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
115897
|
+
online_time_frame_options?:
|
|
115898
|
+
| (
|
|
115899
|
+
| {
|
|
115900
|
+
/** 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`). */
|
|
115901
|
+
display_name: string
|
|
115902
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
115903
|
+
min_duration?: string | undefined
|
|
115904
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
115905
|
+
max_duration?: string | undefined
|
|
115906
|
+
/** 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`. */
|
|
115907
|
+
matching_start_end_time?: true | undefined
|
|
115908
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
115909
|
+
time_pairs?:
|
|
115910
|
+
| {
|
|
115911
|
+
/** Label for the check-in/check-out time pairing. */
|
|
115912
|
+
display_name: string
|
|
115913
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
115914
|
+
check_in_time: string
|
|
115915
|
+
/** 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. */
|
|
115916
|
+
check_out_time: string
|
|
115917
|
+
}[]
|
|
115918
|
+
| undefined
|
|
115919
|
+
/** 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. */
|
|
115920
|
+
start_date_recurrence_rule?: string | undefined
|
|
115921
|
+
/** 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. */
|
|
115922
|
+
end_date_recurrence_rule?: string | undefined
|
|
115923
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
115924
|
+
time_zone?: string | undefined
|
|
115925
|
+
}[]
|
|
115926
|
+
| undefined
|
|
115927
|
+
)
|
|
115928
|
+
| undefined
|
|
115005
115929
|
/** Maximum number of active access codes that the device supports. */
|
|
115006
115930
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
115007
115931
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -125549,6 +126473,72 @@ export type Routes = {
|
|
|
125549
126473
|
| undefined
|
|
125550
126474
|
/** Supported code lengths for access codes. */
|
|
125551
126475
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
126476
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
126477
|
+
offline_time_frame_options?:
|
|
126478
|
+
| (
|
|
126479
|
+
| {
|
|
126480
|
+
/** 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`). */
|
|
126481
|
+
display_name: string
|
|
126482
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126483
|
+
min_duration?: string | undefined
|
|
126484
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126485
|
+
max_duration?: string | undefined
|
|
126486
|
+
/** 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`. */
|
|
126487
|
+
matching_start_end_time?: true | undefined
|
|
126488
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126489
|
+
time_pairs?:
|
|
126490
|
+
| {
|
|
126491
|
+
/** Label for the check-in/check-out time pairing. */
|
|
126492
|
+
display_name: string
|
|
126493
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
126494
|
+
check_in_time: string
|
|
126495
|
+
/** 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. */
|
|
126496
|
+
check_out_time: string
|
|
126497
|
+
}[]
|
|
126498
|
+
| undefined
|
|
126499
|
+
/** 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. */
|
|
126500
|
+
start_date_recurrence_rule?: string | undefined
|
|
126501
|
+
/** 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. */
|
|
126502
|
+
end_date_recurrence_rule?: string | undefined
|
|
126503
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126504
|
+
time_zone?: string | undefined
|
|
126505
|
+
}[]
|
|
126506
|
+
| undefined
|
|
126507
|
+
)
|
|
126508
|
+
| undefined
|
|
126509
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
126510
|
+
online_time_frame_options?:
|
|
126511
|
+
| (
|
|
126512
|
+
| {
|
|
126513
|
+
/** 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`). */
|
|
126514
|
+
display_name: string
|
|
126515
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126516
|
+
min_duration?: string | undefined
|
|
126517
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126518
|
+
max_duration?: string | undefined
|
|
126519
|
+
/** 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`. */
|
|
126520
|
+
matching_start_end_time?: true | undefined
|
|
126521
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126522
|
+
time_pairs?:
|
|
126523
|
+
| {
|
|
126524
|
+
/** Label for the check-in/check-out time pairing. */
|
|
126525
|
+
display_name: string
|
|
126526
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
126527
|
+
check_in_time: string
|
|
126528
|
+
/** 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. */
|
|
126529
|
+
check_out_time: string
|
|
126530
|
+
}[]
|
|
126531
|
+
| undefined
|
|
126532
|
+
/** 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. */
|
|
126533
|
+
start_date_recurrence_rule?: string | undefined
|
|
126534
|
+
/** 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. */
|
|
126535
|
+
end_date_recurrence_rule?: string | undefined
|
|
126536
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126537
|
+
time_zone?: string | undefined
|
|
126538
|
+
}[]
|
|
126539
|
+
| undefined
|
|
126540
|
+
)
|
|
126541
|
+
| undefined
|
|
125552
126542
|
/** Maximum number of active access codes that the device supports. */
|
|
125553
126543
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
125554
126544
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -127274,6 +128264,72 @@ export type Routes = {
|
|
|
127274
128264
|
| undefined
|
|
127275
128265
|
/** Supported code lengths for access codes. */
|
|
127276
128266
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
128267
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
128268
|
+
offline_time_frame_options?:
|
|
128269
|
+
| (
|
|
128270
|
+
| {
|
|
128271
|
+
/** 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`). */
|
|
128272
|
+
display_name: string
|
|
128273
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
128274
|
+
min_duration?: string | undefined
|
|
128275
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
128276
|
+
max_duration?: string | undefined
|
|
128277
|
+
/** 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`. */
|
|
128278
|
+
matching_start_end_time?: true | undefined
|
|
128279
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
128280
|
+
time_pairs?:
|
|
128281
|
+
| {
|
|
128282
|
+
/** Label for the check-in/check-out time pairing. */
|
|
128283
|
+
display_name: string
|
|
128284
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
128285
|
+
check_in_time: string
|
|
128286
|
+
/** 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. */
|
|
128287
|
+
check_out_time: string
|
|
128288
|
+
}[]
|
|
128289
|
+
| undefined
|
|
128290
|
+
/** 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. */
|
|
128291
|
+
start_date_recurrence_rule?: string | undefined
|
|
128292
|
+
/** 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. */
|
|
128293
|
+
end_date_recurrence_rule?: string | undefined
|
|
128294
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
128295
|
+
time_zone?: string | undefined
|
|
128296
|
+
}[]
|
|
128297
|
+
| undefined
|
|
128298
|
+
)
|
|
128299
|
+
| undefined
|
|
128300
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
128301
|
+
online_time_frame_options?:
|
|
128302
|
+
| (
|
|
128303
|
+
| {
|
|
128304
|
+
/** 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`). */
|
|
128305
|
+
display_name: string
|
|
128306
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
128307
|
+
min_duration?: string | undefined
|
|
128308
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
128309
|
+
max_duration?: string | undefined
|
|
128310
|
+
/** 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`. */
|
|
128311
|
+
matching_start_end_time?: true | undefined
|
|
128312
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
128313
|
+
time_pairs?:
|
|
128314
|
+
| {
|
|
128315
|
+
/** Label for the check-in/check-out time pairing. */
|
|
128316
|
+
display_name: string
|
|
128317
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
128318
|
+
check_in_time: string
|
|
128319
|
+
/** 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. */
|
|
128320
|
+
check_out_time: string
|
|
128321
|
+
}[]
|
|
128322
|
+
| undefined
|
|
128323
|
+
/** 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. */
|
|
128324
|
+
start_date_recurrence_rule?: string | undefined
|
|
128325
|
+
/** 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. */
|
|
128326
|
+
end_date_recurrence_rule?: string | undefined
|
|
128327
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
128328
|
+
time_zone?: string | undefined
|
|
128329
|
+
}[]
|
|
128330
|
+
| undefined
|
|
128331
|
+
)
|
|
128332
|
+
| undefined
|
|
127277
128333
|
/** Maximum number of active access codes that the device supports. */
|
|
127278
128334
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
127279
128335
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -130426,6 +131482,72 @@ export type Routes = {
|
|
|
130426
131482
|
| undefined
|
|
130427
131483
|
/** Supported code lengths for access codes. */
|
|
130428
131484
|
supported_code_lengths?: (number[] | undefined) | undefined
|
|
131485
|
+
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
131486
|
+
offline_time_frame_options?:
|
|
131487
|
+
| (
|
|
131488
|
+
| {
|
|
131489
|
+
/** 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`). */
|
|
131490
|
+
display_name: string
|
|
131491
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
131492
|
+
min_duration?: string | undefined
|
|
131493
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
131494
|
+
max_duration?: string | undefined
|
|
131495
|
+
/** 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`. */
|
|
131496
|
+
matching_start_end_time?: true | undefined
|
|
131497
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
131498
|
+
time_pairs?:
|
|
131499
|
+
| {
|
|
131500
|
+
/** Label for the check-in/check-out time pairing. */
|
|
131501
|
+
display_name: string
|
|
131502
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
131503
|
+
check_in_time: string
|
|
131504
|
+
/** 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. */
|
|
131505
|
+
check_out_time: string
|
|
131506
|
+
}[]
|
|
131507
|
+
| undefined
|
|
131508
|
+
/** 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. */
|
|
131509
|
+
start_date_recurrence_rule?: string | undefined
|
|
131510
|
+
/** 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. */
|
|
131511
|
+
end_date_recurrence_rule?: string | undefined
|
|
131512
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
131513
|
+
time_zone?: string | undefined
|
|
131514
|
+
}[]
|
|
131515
|
+
| undefined
|
|
131516
|
+
)
|
|
131517
|
+
| undefined
|
|
131518
|
+
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
131519
|
+
online_time_frame_options?:
|
|
131520
|
+
| (
|
|
131521
|
+
| {
|
|
131522
|
+
/** 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`). */
|
|
131523
|
+
display_name: string
|
|
131524
|
+
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
131525
|
+
min_duration?: string | undefined
|
|
131526
|
+
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
131527
|
+
max_duration?: string | undefined
|
|
131528
|
+
/** 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`. */
|
|
131529
|
+
matching_start_end_time?: true | undefined
|
|
131530
|
+
/** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
131531
|
+
time_pairs?:
|
|
131532
|
+
| {
|
|
131533
|
+
/** Label for the check-in/check-out time pairing. */
|
|
131534
|
+
display_name: string
|
|
131535
|
+
/** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
131536
|
+
check_in_time: string
|
|
131537
|
+
/** 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. */
|
|
131538
|
+
check_out_time: string
|
|
131539
|
+
}[]
|
|
131540
|
+
| undefined
|
|
131541
|
+
/** 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. */
|
|
131542
|
+
start_date_recurrence_rule?: string | undefined
|
|
131543
|
+
/** 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. */
|
|
131544
|
+
end_date_recurrence_rule?: string | undefined
|
|
131545
|
+
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
131546
|
+
time_zone?: string | undefined
|
|
131547
|
+
}[]
|
|
131548
|
+
| undefined
|
|
131549
|
+
)
|
|
131550
|
+
| undefined
|
|
130429
131551
|
/** Maximum number of active access codes that the device supports. */
|
|
130430
131552
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
130431
131553
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
@@ -135429,7 +136551,7 @@ export type Routes = {
|
|
|
135429
136551
|
acs_entrance_count: number
|
|
135430
136552
|
/** Customer key associated with the space. */
|
|
135431
136553
|
customer_key?: string | undefined
|
|
135432
|
-
/** Reservation/stay-related defaults for the space. */
|
|
136554
|
+
/** Reservation/stay-related defaults for the space. Also carries the provider/PMS-supplied name under a `<connector_type>_name` key (e.g. `guesty_name`), which Seam preserves when you rename the space (read-only — managed by Seam). */
|
|
135433
136555
|
customer_data?:
|
|
135434
136556
|
| {
|
|
135435
136557
|
/** IANA time zone for the space, e.g. America/Los_Angeles. */
|