@seamapi/types 1.931.0 → 1.933.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 +53 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +470 -432
- package/dist/index.cjs +53 -39
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +38 -38
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +11 -13
- 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 +28 -28
- package/lib/seam/connect/models/devices/device-metadata.d.ts +16 -16
- package/lib/seam/connect/models/devices/device.d.ts +52 -52
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +40 -40
- package/lib/seam/connect/models/events/devices.d.ts +12 -0
- package/lib/seam/connect/models/events/devices.js +6 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -0
- package/lib/seam/connect/openapi.js +36 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +372 -340
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +11 -13
- package/src/lib/seam/connect/models/events/devices.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +38 -28
- package/src/lib/seam/connect/route-types.ts +372 -340
|
@@ -14328,28 +14328,28 @@ export type Routes = {
|
|
|
14328
14328
|
offline_time_frame_options?:
|
|
14329
14329
|
| (
|
|
14330
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
|
|
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 start times`). */
|
|
14332
14332
|
display_name: string
|
|
14333
14333
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
14334
14334
|
min_duration?: string | undefined
|
|
14335
14335
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
14336
14336
|
max_duration?: string | undefined
|
|
14337
|
-
/** When `true`, the
|
|
14337
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
14338
14338
|
matching_start_end_time?: true | undefined
|
|
14339
|
-
/** Fixed
|
|
14339
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
14340
14340
|
time_pairs?:
|
|
14341
14341
|
| {
|
|
14342
|
-
/** Label for the
|
|
14342
|
+
/** Label for the start/end time pairing. */
|
|
14343
14343
|
display_name: string
|
|
14344
|
-
/**
|
|
14345
|
-
|
|
14346
|
-
/**
|
|
14347
|
-
|
|
14344
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
14345
|
+
start_time: string
|
|
14346
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
14347
|
+
end_time: string
|
|
14348
14348
|
}[]
|
|
14349
14349
|
| undefined
|
|
14350
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
14350
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
14351
14351
|
start_date_recurrence_rule?: string | undefined
|
|
14352
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
14352
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
14353
14353
|
end_date_recurrence_rule?: string | undefined
|
|
14354
14354
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
14355
14355
|
time_zone?: string | undefined
|
|
@@ -14361,28 +14361,28 @@ export type Routes = {
|
|
|
14361
14361
|
online_time_frame_options?:
|
|
14362
14362
|
| (
|
|
14363
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
|
|
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 start times`). */
|
|
14365
14365
|
display_name: string
|
|
14366
14366
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
14367
14367
|
min_duration?: string | undefined
|
|
14368
14368
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
14369
14369
|
max_duration?: string | undefined
|
|
14370
|
-
/** When `true`, the
|
|
14370
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
14371
14371
|
matching_start_end_time?: true | undefined
|
|
14372
|
-
/** Fixed
|
|
14372
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
14373
14373
|
time_pairs?:
|
|
14374
14374
|
| {
|
|
14375
|
-
/** Label for the
|
|
14375
|
+
/** Label for the start/end time pairing. */
|
|
14376
14376
|
display_name: string
|
|
14377
|
-
/**
|
|
14378
|
-
|
|
14379
|
-
/**
|
|
14380
|
-
|
|
14377
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
14378
|
+
start_time: string
|
|
14379
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
14380
|
+
end_time: string
|
|
14381
14381
|
}[]
|
|
14382
14382
|
| undefined
|
|
14383
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
14383
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
14384
14384
|
start_date_recurrence_rule?: string | undefined
|
|
14385
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
14385
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
14386
14386
|
end_date_recurrence_rule?: string | undefined
|
|
14387
14387
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
14388
14388
|
time_zone?: string | undefined
|
|
@@ -22204,28 +22204,28 @@ export type Routes = {
|
|
|
22204
22204
|
offline_time_frame_options?:
|
|
22205
22205
|
| (
|
|
22206
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
|
|
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 start times`). */
|
|
22208
22208
|
display_name: string
|
|
22209
22209
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
22210
22210
|
min_duration?: string | undefined
|
|
22211
22211
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
22212
22212
|
max_duration?: string | undefined
|
|
22213
|
-
/** When `true`, the
|
|
22213
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
22214
22214
|
matching_start_end_time?: true | undefined
|
|
22215
|
-
/** Fixed
|
|
22215
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
22216
22216
|
time_pairs?:
|
|
22217
22217
|
| {
|
|
22218
|
-
/** Label for the
|
|
22218
|
+
/** Label for the start/end time pairing. */
|
|
22219
22219
|
display_name: string
|
|
22220
|
-
/**
|
|
22221
|
-
|
|
22222
|
-
/**
|
|
22223
|
-
|
|
22220
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
22221
|
+
start_time: string
|
|
22222
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
22223
|
+
end_time: string
|
|
22224
22224
|
}[]
|
|
22225
22225
|
| undefined
|
|
22226
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
22226
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
22227
22227
|
start_date_recurrence_rule?: string | undefined
|
|
22228
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
22228
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
22229
22229
|
end_date_recurrence_rule?: string | undefined
|
|
22230
22230
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
22231
22231
|
time_zone?: string | undefined
|
|
@@ -22237,28 +22237,28 @@ export type Routes = {
|
|
|
22237
22237
|
online_time_frame_options?:
|
|
22238
22238
|
| (
|
|
22239
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
|
|
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 start times`). */
|
|
22241
22241
|
display_name: string
|
|
22242
22242
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
22243
22243
|
min_duration?: string | undefined
|
|
22244
22244
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
22245
22245
|
max_duration?: string | undefined
|
|
22246
|
-
/** When `true`, the
|
|
22246
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
22247
22247
|
matching_start_end_time?: true | undefined
|
|
22248
|
-
/** Fixed
|
|
22248
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
22249
22249
|
time_pairs?:
|
|
22250
22250
|
| {
|
|
22251
|
-
/** Label for the
|
|
22251
|
+
/** Label for the start/end time pairing. */
|
|
22252
22252
|
display_name: string
|
|
22253
|
-
/**
|
|
22254
|
-
|
|
22255
|
-
/**
|
|
22256
|
-
|
|
22253
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
22254
|
+
start_time: string
|
|
22255
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
22256
|
+
end_time: string
|
|
22257
22257
|
}[]
|
|
22258
22258
|
| undefined
|
|
22259
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
22259
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
22260
22260
|
start_date_recurrence_rule?: string | undefined
|
|
22261
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
22261
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
22262
22262
|
end_date_recurrence_rule?: string | undefined
|
|
22263
22263
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
22264
22264
|
time_zone?: string | undefined
|
|
@@ -48398,28 +48398,28 @@ export type Routes = {
|
|
|
48398
48398
|
offline_time_frame_options?:
|
|
48399
48399
|
| (
|
|
48400
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
|
|
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 start times`). */
|
|
48402
48402
|
display_name: string
|
|
48403
48403
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
48404
48404
|
min_duration?: string | undefined
|
|
48405
48405
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
48406
48406
|
max_duration?: string | undefined
|
|
48407
|
-
/** When `true`, the
|
|
48407
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
48408
48408
|
matching_start_end_time?: true | undefined
|
|
48409
|
-
/** Fixed
|
|
48409
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
48410
48410
|
time_pairs?:
|
|
48411
48411
|
| {
|
|
48412
|
-
/** Label for the
|
|
48412
|
+
/** Label for the start/end time pairing. */
|
|
48413
48413
|
display_name: string
|
|
48414
|
-
/**
|
|
48415
|
-
|
|
48416
|
-
/**
|
|
48417
|
-
|
|
48414
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
48415
|
+
start_time: string
|
|
48416
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
48417
|
+
end_time: string
|
|
48418
48418
|
}[]
|
|
48419
48419
|
| undefined
|
|
48420
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
48420
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
48421
48421
|
start_date_recurrence_rule?: string | undefined
|
|
48422
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
48422
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
48423
48423
|
end_date_recurrence_rule?: string | undefined
|
|
48424
48424
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
48425
48425
|
time_zone?: string | undefined
|
|
@@ -48431,28 +48431,28 @@ export type Routes = {
|
|
|
48431
48431
|
online_time_frame_options?:
|
|
48432
48432
|
| (
|
|
48433
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
|
|
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 start times`). */
|
|
48435
48435
|
display_name: string
|
|
48436
48436
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
48437
48437
|
min_duration?: string | undefined
|
|
48438
48438
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
48439
48439
|
max_duration?: string | undefined
|
|
48440
|
-
/** When `true`, the
|
|
48440
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
48441
48441
|
matching_start_end_time?: true | undefined
|
|
48442
|
-
/** Fixed
|
|
48442
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
48443
48443
|
time_pairs?:
|
|
48444
48444
|
| {
|
|
48445
|
-
/** Label for the
|
|
48445
|
+
/** Label for the start/end time pairing. */
|
|
48446
48446
|
display_name: string
|
|
48447
|
-
/**
|
|
48448
|
-
|
|
48449
|
-
/**
|
|
48450
|
-
|
|
48447
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
48448
|
+
start_time: string
|
|
48449
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
48450
|
+
end_time: string
|
|
48451
48451
|
}[]
|
|
48452
48452
|
| undefined
|
|
48453
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
48453
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
48454
48454
|
start_date_recurrence_rule?: string | undefined
|
|
48455
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
48455
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
48456
48456
|
end_date_recurrence_rule?: string | undefined
|
|
48457
48457
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
48458
48458
|
time_zone?: string | undefined
|
|
@@ -50428,28 +50428,28 @@ export type Routes = {
|
|
|
50428
50428
|
offline_time_frame_options?:
|
|
50429
50429
|
| (
|
|
50430
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
|
|
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 start times`). */
|
|
50432
50432
|
display_name: string
|
|
50433
50433
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
50434
50434
|
min_duration?: string | undefined
|
|
50435
50435
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
50436
50436
|
max_duration?: string | undefined
|
|
50437
|
-
/** When `true`, the
|
|
50437
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
50438
50438
|
matching_start_end_time?: true | undefined
|
|
50439
|
-
/** Fixed
|
|
50439
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
50440
50440
|
time_pairs?:
|
|
50441
50441
|
| {
|
|
50442
|
-
/** Label for the
|
|
50442
|
+
/** Label for the start/end time pairing. */
|
|
50443
50443
|
display_name: string
|
|
50444
|
-
/**
|
|
50445
|
-
|
|
50446
|
-
/**
|
|
50447
|
-
|
|
50444
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
50445
|
+
start_time: string
|
|
50446
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
50447
|
+
end_time: string
|
|
50448
50448
|
}[]
|
|
50449
50449
|
| undefined
|
|
50450
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
50450
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
50451
50451
|
start_date_recurrence_rule?: string | undefined
|
|
50452
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
50452
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
50453
50453
|
end_date_recurrence_rule?: string | undefined
|
|
50454
50454
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
50455
50455
|
time_zone?: string | undefined
|
|
@@ -50461,28 +50461,28 @@ export type Routes = {
|
|
|
50461
50461
|
online_time_frame_options?:
|
|
50462
50462
|
| (
|
|
50463
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
|
|
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 start times`). */
|
|
50465
50465
|
display_name: string
|
|
50466
50466
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
50467
50467
|
min_duration?: string | undefined
|
|
50468
50468
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
50469
50469
|
max_duration?: string | undefined
|
|
50470
|
-
/** When `true`, the
|
|
50470
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
50471
50471
|
matching_start_end_time?: true | undefined
|
|
50472
|
-
/** Fixed
|
|
50472
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
50473
50473
|
time_pairs?:
|
|
50474
50474
|
| {
|
|
50475
|
-
/** Label for the
|
|
50475
|
+
/** Label for the start/end time pairing. */
|
|
50476
50476
|
display_name: string
|
|
50477
|
-
/**
|
|
50478
|
-
|
|
50479
|
-
/**
|
|
50480
|
-
|
|
50477
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
50478
|
+
start_time: string
|
|
50479
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
50480
|
+
end_time: string
|
|
50481
50481
|
}[]
|
|
50482
50482
|
| undefined
|
|
50483
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
50483
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
50484
50484
|
start_date_recurrence_rule?: string | undefined
|
|
50485
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
50485
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
50486
50486
|
end_date_recurrence_rule?: string | undefined
|
|
50487
50487
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
50488
50488
|
time_zone?: string | undefined
|
|
@@ -57235,6 +57235,10 @@ export type Routes = {
|
|
|
57235
57235
|
event_type: 'lock.locked'
|
|
57236
57236
|
/** ID of the access code that was used to lock the device. */
|
|
57237
57237
|
access_code_id?: string | undefined
|
|
57238
|
+
/**
|
|
57239
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
57240
|
+
*/
|
|
57241
|
+
code?: string | undefined
|
|
57238
57242
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
57239
57243
|
access_code_is_managed?: boolean | undefined
|
|
57240
57244
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -57285,6 +57289,10 @@ export type Routes = {
|
|
|
57285
57289
|
event_type: 'lock.unlocked'
|
|
57286
57290
|
/** ID of the access code that was used to unlock the affected device. */
|
|
57287
57291
|
access_code_id?: string | undefined
|
|
57292
|
+
/**
|
|
57293
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
57294
|
+
*/
|
|
57295
|
+
code?: string | undefined
|
|
57288
57296
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
57289
57297
|
access_code_is_managed?: boolean | undefined
|
|
57290
57298
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -60886,6 +60894,10 @@ export type Routes = {
|
|
|
60886
60894
|
event_type: 'lock.locked'
|
|
60887
60895
|
/** ID of the access code that was used to lock the device. */
|
|
60888
60896
|
access_code_id?: string | undefined
|
|
60897
|
+
/**
|
|
60898
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
60899
|
+
*/
|
|
60900
|
+
code?: string | undefined
|
|
60889
60901
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
60890
60902
|
access_code_is_managed?: boolean | undefined
|
|
60891
60903
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -60931,6 +60943,10 @@ export type Routes = {
|
|
|
60931
60943
|
event_type: 'lock.unlocked'
|
|
60932
60944
|
/** ID of the access code that was used to unlock the affected device. */
|
|
60933
60945
|
access_code_id?: string | undefined
|
|
60946
|
+
/**
|
|
60947
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
60948
|
+
*/
|
|
60949
|
+
code?: string | undefined
|
|
60934
60950
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
60935
60951
|
access_code_is_managed?: boolean | undefined
|
|
60936
60952
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -64361,28 +64377,28 @@ export type Routes = {
|
|
|
64361
64377
|
offline_time_frame_options?:
|
|
64362
64378
|
| (
|
|
64363
64379
|
| {
|
|
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
|
|
64380
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
64365
64381
|
display_name: string
|
|
64366
64382
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
64367
64383
|
min_duration?: string | undefined
|
|
64368
64384
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
64369
64385
|
max_duration?: string | undefined
|
|
64370
|
-
/** When `true`, the
|
|
64386
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
64371
64387
|
matching_start_end_time?: true | undefined
|
|
64372
|
-
/** Fixed
|
|
64388
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
64373
64389
|
time_pairs?:
|
|
64374
64390
|
| {
|
|
64375
|
-
/** Label for the
|
|
64391
|
+
/** Label for the start/end time pairing. */
|
|
64376
64392
|
display_name: string
|
|
64377
|
-
/**
|
|
64378
|
-
|
|
64379
|
-
/**
|
|
64380
|
-
|
|
64393
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
64394
|
+
start_time: string
|
|
64395
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
64396
|
+
end_time: string
|
|
64381
64397
|
}[]
|
|
64382
64398
|
| undefined
|
|
64383
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
64399
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
64384
64400
|
start_date_recurrence_rule?: string | undefined
|
|
64385
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
64401
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
64386
64402
|
end_date_recurrence_rule?: string | undefined
|
|
64387
64403
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
64388
64404
|
time_zone?: string | undefined
|
|
@@ -64394,28 +64410,28 @@ export type Routes = {
|
|
|
64394
64410
|
online_time_frame_options?:
|
|
64395
64411
|
| (
|
|
64396
64412
|
| {
|
|
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
|
|
64413
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
64398
64414
|
display_name: string
|
|
64399
64415
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
64400
64416
|
min_duration?: string | undefined
|
|
64401
64417
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
64402
64418
|
max_duration?: string | undefined
|
|
64403
|
-
/** When `true`, the
|
|
64419
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
64404
64420
|
matching_start_end_time?: true | undefined
|
|
64405
|
-
/** Fixed
|
|
64421
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
64406
64422
|
time_pairs?:
|
|
64407
64423
|
| {
|
|
64408
|
-
/** Label for the
|
|
64424
|
+
/** Label for the start/end time pairing. */
|
|
64409
64425
|
display_name: string
|
|
64410
|
-
/**
|
|
64411
|
-
|
|
64412
|
-
/**
|
|
64413
|
-
|
|
64426
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
64427
|
+
start_time: string
|
|
64428
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
64429
|
+
end_time: string
|
|
64414
64430
|
}[]
|
|
64415
64431
|
| undefined
|
|
64416
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
64432
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
64417
64433
|
start_date_recurrence_rule?: string | undefined
|
|
64418
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
64434
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
64419
64435
|
end_date_recurrence_rule?: string | undefined
|
|
64420
64436
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
64421
64437
|
time_zone?: string | undefined
|
|
@@ -66151,28 +66167,28 @@ export type Routes = {
|
|
|
66151
66167
|
offline_time_frame_options?:
|
|
66152
66168
|
| (
|
|
66153
66169
|
| {
|
|
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
|
|
66170
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
66155
66171
|
display_name: string
|
|
66156
66172
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
66157
66173
|
min_duration?: string | undefined
|
|
66158
66174
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
66159
66175
|
max_duration?: string | undefined
|
|
66160
|
-
/** When `true`, the
|
|
66176
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
66161
66177
|
matching_start_end_time?: true | undefined
|
|
66162
|
-
/** Fixed
|
|
66178
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
66163
66179
|
time_pairs?:
|
|
66164
66180
|
| {
|
|
66165
|
-
/** Label for the
|
|
66181
|
+
/** Label for the start/end time pairing. */
|
|
66166
66182
|
display_name: string
|
|
66167
|
-
/**
|
|
66168
|
-
|
|
66169
|
-
/**
|
|
66170
|
-
|
|
66183
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
66184
|
+
start_time: string
|
|
66185
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
66186
|
+
end_time: string
|
|
66171
66187
|
}[]
|
|
66172
66188
|
| undefined
|
|
66173
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
66189
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
66174
66190
|
start_date_recurrence_rule?: string | undefined
|
|
66175
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
66191
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
66176
66192
|
end_date_recurrence_rule?: string | undefined
|
|
66177
66193
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
66178
66194
|
time_zone?: string | undefined
|
|
@@ -66184,28 +66200,28 @@ export type Routes = {
|
|
|
66184
66200
|
online_time_frame_options?:
|
|
66185
66201
|
| (
|
|
66186
66202
|
| {
|
|
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
|
|
66203
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
66188
66204
|
display_name: string
|
|
66189
66205
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
66190
66206
|
min_duration?: string | undefined
|
|
66191
66207
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
66192
66208
|
max_duration?: string | undefined
|
|
66193
|
-
/** When `true`, the
|
|
66209
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
66194
66210
|
matching_start_end_time?: true | undefined
|
|
66195
|
-
/** Fixed
|
|
66211
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
66196
66212
|
time_pairs?:
|
|
66197
66213
|
| {
|
|
66198
|
-
/** Label for the
|
|
66214
|
+
/** Label for the start/end time pairing. */
|
|
66199
66215
|
display_name: string
|
|
66200
|
-
/**
|
|
66201
|
-
|
|
66202
|
-
/**
|
|
66203
|
-
|
|
66216
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
66217
|
+
start_time: string
|
|
66218
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
66219
|
+
end_time: string
|
|
66204
66220
|
}[]
|
|
66205
66221
|
| undefined
|
|
66206
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
66222
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
66207
66223
|
start_date_recurrence_rule?: string | undefined
|
|
66208
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
66224
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
66209
66225
|
end_date_recurrence_rule?: string | undefined
|
|
66210
66226
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
66211
66227
|
time_zone?: string | undefined
|
|
@@ -68134,28 +68150,28 @@ export type Routes = {
|
|
|
68134
68150
|
offline_time_frame_options?:
|
|
68135
68151
|
| (
|
|
68136
68152
|
| {
|
|
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
|
|
68153
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
68138
68154
|
display_name: string
|
|
68139
68155
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
68140
68156
|
min_duration?: string | undefined
|
|
68141
68157
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
68142
68158
|
max_duration?: string | undefined
|
|
68143
|
-
/** When `true`, the
|
|
68159
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
68144
68160
|
matching_start_end_time?: true | undefined
|
|
68145
|
-
/** Fixed
|
|
68161
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
68146
68162
|
time_pairs?:
|
|
68147
68163
|
| {
|
|
68148
|
-
/** Label for the
|
|
68164
|
+
/** Label for the start/end time pairing. */
|
|
68149
68165
|
display_name: string
|
|
68150
|
-
/**
|
|
68151
|
-
|
|
68152
|
-
/**
|
|
68153
|
-
|
|
68166
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
68167
|
+
start_time: string
|
|
68168
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
68169
|
+
end_time: string
|
|
68154
68170
|
}[]
|
|
68155
68171
|
| undefined
|
|
68156
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
68172
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
68157
68173
|
start_date_recurrence_rule?: string | undefined
|
|
68158
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
68174
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
68159
68175
|
end_date_recurrence_rule?: string | undefined
|
|
68160
68176
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
68161
68177
|
time_zone?: string | undefined
|
|
@@ -68167,28 +68183,28 @@ export type Routes = {
|
|
|
68167
68183
|
online_time_frame_options?:
|
|
68168
68184
|
| (
|
|
68169
68185
|
| {
|
|
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
|
|
68186
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
68171
68187
|
display_name: string
|
|
68172
68188
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
68173
68189
|
min_duration?: string | undefined
|
|
68174
68190
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
68175
68191
|
max_duration?: string | undefined
|
|
68176
|
-
/** When `true`, the
|
|
68192
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
68177
68193
|
matching_start_end_time?: true | undefined
|
|
68178
|
-
/** Fixed
|
|
68194
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
68179
68195
|
time_pairs?:
|
|
68180
68196
|
| {
|
|
68181
|
-
/** Label for the
|
|
68197
|
+
/** Label for the start/end time pairing. */
|
|
68182
68198
|
display_name: string
|
|
68183
|
-
/**
|
|
68184
|
-
|
|
68185
|
-
/**
|
|
68186
|
-
|
|
68199
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
68200
|
+
start_time: string
|
|
68201
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
68202
|
+
end_time: string
|
|
68187
68203
|
}[]
|
|
68188
68204
|
| undefined
|
|
68189
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
68205
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
68190
68206
|
start_date_recurrence_rule?: string | undefined
|
|
68191
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
68207
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
68192
68208
|
end_date_recurrence_rule?: string | undefined
|
|
68193
68209
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
68194
68210
|
time_zone?: string | undefined
|
|
@@ -69923,28 +69939,28 @@ export type Routes = {
|
|
|
69923
69939
|
offline_time_frame_options?:
|
|
69924
69940
|
| (
|
|
69925
69941
|
| {
|
|
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
|
|
69942
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
69927
69943
|
display_name: string
|
|
69928
69944
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
69929
69945
|
min_duration?: string | undefined
|
|
69930
69946
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
69931
69947
|
max_duration?: string | undefined
|
|
69932
|
-
/** When `true`, the
|
|
69948
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
69933
69949
|
matching_start_end_time?: true | undefined
|
|
69934
|
-
/** Fixed
|
|
69950
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
69935
69951
|
time_pairs?:
|
|
69936
69952
|
| {
|
|
69937
|
-
/** Label for the
|
|
69953
|
+
/** Label for the start/end time pairing. */
|
|
69938
69954
|
display_name: string
|
|
69939
|
-
/**
|
|
69940
|
-
|
|
69941
|
-
/**
|
|
69942
|
-
|
|
69955
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
69956
|
+
start_time: string
|
|
69957
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
69958
|
+
end_time: string
|
|
69943
69959
|
}[]
|
|
69944
69960
|
| undefined
|
|
69945
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
69961
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
69946
69962
|
start_date_recurrence_rule?: string | undefined
|
|
69947
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
69963
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
69948
69964
|
end_date_recurrence_rule?: string | undefined
|
|
69949
69965
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
69950
69966
|
time_zone?: string | undefined
|
|
@@ -69956,28 +69972,28 @@ export type Routes = {
|
|
|
69956
69972
|
online_time_frame_options?:
|
|
69957
69973
|
| (
|
|
69958
69974
|
| {
|
|
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
|
|
69975
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
69960
69976
|
display_name: string
|
|
69961
69977
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
69962
69978
|
min_duration?: string | undefined
|
|
69963
69979
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
69964
69980
|
max_duration?: string | undefined
|
|
69965
|
-
/** When `true`, the
|
|
69981
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
69966
69982
|
matching_start_end_time?: true | undefined
|
|
69967
|
-
/** Fixed
|
|
69983
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
69968
69984
|
time_pairs?:
|
|
69969
69985
|
| {
|
|
69970
|
-
/** Label for the
|
|
69986
|
+
/** Label for the start/end time pairing. */
|
|
69971
69987
|
display_name: string
|
|
69972
|
-
/**
|
|
69973
|
-
|
|
69974
|
-
/**
|
|
69975
|
-
|
|
69988
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
69989
|
+
start_time: string
|
|
69990
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
69991
|
+
end_time: string
|
|
69976
69992
|
}[]
|
|
69977
69993
|
| undefined
|
|
69978
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
69994
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
69979
69995
|
start_date_recurrence_rule?: string | undefined
|
|
69980
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
69996
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
69981
69997
|
end_date_recurrence_rule?: string | undefined
|
|
69982
69998
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
69983
69999
|
time_zone?: string | undefined
|
|
@@ -79601,28 +79617,28 @@ export type Routes = {
|
|
|
79601
79617
|
offline_time_frame_options?:
|
|
79602
79618
|
| (
|
|
79603
79619
|
| {
|
|
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
|
|
79620
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
79605
79621
|
display_name: string
|
|
79606
79622
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
79607
79623
|
min_duration?: string | undefined
|
|
79608
79624
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
79609
79625
|
max_duration?: string | undefined
|
|
79610
|
-
/** When `true`, the
|
|
79626
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
79611
79627
|
matching_start_end_time?: true | undefined
|
|
79612
|
-
/** Fixed
|
|
79628
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
79613
79629
|
time_pairs?:
|
|
79614
79630
|
| {
|
|
79615
|
-
/** Label for the
|
|
79631
|
+
/** Label for the start/end time pairing. */
|
|
79616
79632
|
display_name: string
|
|
79617
|
-
/**
|
|
79618
|
-
|
|
79619
|
-
/**
|
|
79620
|
-
|
|
79633
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
79634
|
+
start_time: string
|
|
79635
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
79636
|
+
end_time: string
|
|
79621
79637
|
}[]
|
|
79622
79638
|
| undefined
|
|
79623
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
79639
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
79624
79640
|
start_date_recurrence_rule?: string | undefined
|
|
79625
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
79641
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
79626
79642
|
end_date_recurrence_rule?: string | undefined
|
|
79627
79643
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
79628
79644
|
time_zone?: string | undefined
|
|
@@ -79634,28 +79650,28 @@ export type Routes = {
|
|
|
79634
79650
|
online_time_frame_options?:
|
|
79635
79651
|
| (
|
|
79636
79652
|
| {
|
|
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
|
|
79653
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
79638
79654
|
display_name: string
|
|
79639
79655
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
79640
79656
|
min_duration?: string | undefined
|
|
79641
79657
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
79642
79658
|
max_duration?: string | undefined
|
|
79643
|
-
/** When `true`, the
|
|
79659
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
79644
79660
|
matching_start_end_time?: true | undefined
|
|
79645
|
-
/** Fixed
|
|
79661
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
79646
79662
|
time_pairs?:
|
|
79647
79663
|
| {
|
|
79648
|
-
/** Label for the
|
|
79664
|
+
/** Label for the start/end time pairing. */
|
|
79649
79665
|
display_name: string
|
|
79650
|
-
/**
|
|
79651
|
-
|
|
79652
|
-
/**
|
|
79653
|
-
|
|
79666
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
79667
|
+
start_time: string
|
|
79668
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
79669
|
+
end_time: string
|
|
79654
79670
|
}[]
|
|
79655
79671
|
| undefined
|
|
79656
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
79672
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
79657
79673
|
start_date_recurrence_rule?: string | undefined
|
|
79658
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
79674
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
79659
79675
|
end_date_recurrence_rule?: string | undefined
|
|
79660
79676
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
79661
79677
|
time_zone?: string | undefined
|
|
@@ -81390,28 +81406,28 @@ export type Routes = {
|
|
|
81390
81406
|
offline_time_frame_options?:
|
|
81391
81407
|
| (
|
|
81392
81408
|
| {
|
|
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
|
|
81409
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
81394
81410
|
display_name: string
|
|
81395
81411
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
81396
81412
|
min_duration?: string | undefined
|
|
81397
81413
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
81398
81414
|
max_duration?: string | undefined
|
|
81399
|
-
/** When `true`, the
|
|
81415
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
81400
81416
|
matching_start_end_time?: true | undefined
|
|
81401
|
-
/** Fixed
|
|
81417
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
81402
81418
|
time_pairs?:
|
|
81403
81419
|
| {
|
|
81404
|
-
/** Label for the
|
|
81420
|
+
/** Label for the start/end time pairing. */
|
|
81405
81421
|
display_name: string
|
|
81406
|
-
/**
|
|
81407
|
-
|
|
81408
|
-
/**
|
|
81409
|
-
|
|
81422
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
81423
|
+
start_time: string
|
|
81424
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
81425
|
+
end_time: string
|
|
81410
81426
|
}[]
|
|
81411
81427
|
| undefined
|
|
81412
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
81428
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
81413
81429
|
start_date_recurrence_rule?: string | undefined
|
|
81414
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
81430
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
81415
81431
|
end_date_recurrence_rule?: string | undefined
|
|
81416
81432
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
81417
81433
|
time_zone?: string | undefined
|
|
@@ -81423,28 +81439,28 @@ export type Routes = {
|
|
|
81423
81439
|
online_time_frame_options?:
|
|
81424
81440
|
| (
|
|
81425
81441
|
| {
|
|
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
|
|
81442
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
81427
81443
|
display_name: string
|
|
81428
81444
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
81429
81445
|
min_duration?: string | undefined
|
|
81430
81446
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
81431
81447
|
max_duration?: string | undefined
|
|
81432
|
-
/** When `true`, the
|
|
81448
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
81433
81449
|
matching_start_end_time?: true | undefined
|
|
81434
|
-
/** Fixed
|
|
81450
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
81435
81451
|
time_pairs?:
|
|
81436
81452
|
| {
|
|
81437
|
-
/** Label for the
|
|
81453
|
+
/** Label for the start/end time pairing. */
|
|
81438
81454
|
display_name: string
|
|
81439
|
-
/**
|
|
81440
|
-
|
|
81441
|
-
/**
|
|
81442
|
-
|
|
81455
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
81456
|
+
start_time: string
|
|
81457
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
81458
|
+
end_time: string
|
|
81443
81459
|
}[]
|
|
81444
81460
|
| undefined
|
|
81445
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
81461
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
81446
81462
|
start_date_recurrence_rule?: string | undefined
|
|
81447
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
81463
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
81448
81464
|
end_date_recurrence_rule?: string | undefined
|
|
81449
81465
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
81450
81466
|
time_zone?: string | undefined
|
|
@@ -95593,6 +95609,10 @@ export type Routes = {
|
|
|
95593
95609
|
event_type: 'lock.locked'
|
|
95594
95610
|
/** ID of the access code that was used to lock the device. */
|
|
95595
95611
|
access_code_id?: string | undefined
|
|
95612
|
+
/**
|
|
95613
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
95614
|
+
*/
|
|
95615
|
+
code?: string | undefined
|
|
95596
95616
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
95597
95617
|
access_code_is_managed?: boolean | undefined
|
|
95598
95618
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -95638,6 +95658,10 @@ export type Routes = {
|
|
|
95638
95658
|
event_type: 'lock.unlocked'
|
|
95639
95659
|
/** ID of the access code that was used to unlock the affected device. */
|
|
95640
95660
|
access_code_id?: string | undefined
|
|
95661
|
+
/**
|
|
95662
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
95663
|
+
*/
|
|
95664
|
+
code?: string | undefined
|
|
95641
95665
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
95642
95666
|
access_code_is_managed?: boolean | undefined
|
|
95643
95667
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|
|
@@ -99488,28 +99512,28 @@ export type Routes = {
|
|
|
99488
99512
|
offline_time_frame_options?:
|
|
99489
99513
|
| (
|
|
99490
99514
|
| {
|
|
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
|
|
99515
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
99492
99516
|
display_name: string
|
|
99493
99517
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
99494
99518
|
min_duration?: string | undefined
|
|
99495
99519
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
99496
99520
|
max_duration?: string | undefined
|
|
99497
|
-
/** When `true`, the
|
|
99521
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
99498
99522
|
matching_start_end_time?: true | undefined
|
|
99499
|
-
/** Fixed
|
|
99523
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
99500
99524
|
time_pairs?:
|
|
99501
99525
|
| {
|
|
99502
|
-
/** Label for the
|
|
99526
|
+
/** Label for the start/end time pairing. */
|
|
99503
99527
|
display_name: string
|
|
99504
|
-
/**
|
|
99505
|
-
|
|
99506
|
-
/**
|
|
99507
|
-
|
|
99528
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
99529
|
+
start_time: string
|
|
99530
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
99531
|
+
end_time: string
|
|
99508
99532
|
}[]
|
|
99509
99533
|
| undefined
|
|
99510
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
99534
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
99511
99535
|
start_date_recurrence_rule?: string | undefined
|
|
99512
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
99536
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
99513
99537
|
end_date_recurrence_rule?: string | undefined
|
|
99514
99538
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
99515
99539
|
time_zone?: string | undefined
|
|
@@ -99521,28 +99545,28 @@ export type Routes = {
|
|
|
99521
99545
|
online_time_frame_options?:
|
|
99522
99546
|
| (
|
|
99523
99547
|
| {
|
|
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
|
|
99548
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
99525
99549
|
display_name: string
|
|
99526
99550
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
99527
99551
|
min_duration?: string | undefined
|
|
99528
99552
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
99529
99553
|
max_duration?: string | undefined
|
|
99530
|
-
/** When `true`, the
|
|
99554
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
99531
99555
|
matching_start_end_time?: true | undefined
|
|
99532
|
-
/** Fixed
|
|
99556
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
99533
99557
|
time_pairs?:
|
|
99534
99558
|
| {
|
|
99535
|
-
/** Label for the
|
|
99559
|
+
/** Label for the start/end time pairing. */
|
|
99536
99560
|
display_name: string
|
|
99537
|
-
/**
|
|
99538
|
-
|
|
99539
|
-
/**
|
|
99540
|
-
|
|
99561
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
99562
|
+
start_time: string
|
|
99563
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
99564
|
+
end_time: string
|
|
99541
99565
|
}[]
|
|
99542
99566
|
| undefined
|
|
99543
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
99567
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
99544
99568
|
start_date_recurrence_rule?: string | undefined
|
|
99545
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
99569
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
99546
99570
|
end_date_recurrence_rule?: string | undefined
|
|
99547
99571
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
99548
99572
|
time_zone?: string | undefined
|
|
@@ -108252,28 +108276,28 @@ export type Routes = {
|
|
|
108252
108276
|
offline_time_frame_options?:
|
|
108253
108277
|
| (
|
|
108254
108278
|
| {
|
|
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
|
|
108279
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
108256
108280
|
display_name: string
|
|
108257
108281
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
108258
108282
|
min_duration?: string | undefined
|
|
108259
108283
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
108260
108284
|
max_duration?: string | undefined
|
|
108261
|
-
/** When `true`, the
|
|
108285
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
108262
108286
|
matching_start_end_time?: true | undefined
|
|
108263
|
-
/** Fixed
|
|
108287
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
108264
108288
|
time_pairs?:
|
|
108265
108289
|
| {
|
|
108266
|
-
/** Label for the
|
|
108290
|
+
/** Label for the start/end time pairing. */
|
|
108267
108291
|
display_name: string
|
|
108268
|
-
/**
|
|
108269
|
-
|
|
108270
|
-
/**
|
|
108271
|
-
|
|
108292
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
108293
|
+
start_time: string
|
|
108294
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
108295
|
+
end_time: string
|
|
108272
108296
|
}[]
|
|
108273
108297
|
| undefined
|
|
108274
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
108298
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
108275
108299
|
start_date_recurrence_rule?: string | undefined
|
|
108276
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
108300
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
108277
108301
|
end_date_recurrence_rule?: string | undefined
|
|
108278
108302
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
108279
108303
|
time_zone?: string | undefined
|
|
@@ -108285,28 +108309,28 @@ export type Routes = {
|
|
|
108285
108309
|
online_time_frame_options?:
|
|
108286
108310
|
| (
|
|
108287
108311
|
| {
|
|
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
|
|
108312
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
108289
108313
|
display_name: string
|
|
108290
108314
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
108291
108315
|
min_duration?: string | undefined
|
|
108292
108316
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
108293
108317
|
max_duration?: string | undefined
|
|
108294
|
-
/** When `true`, the
|
|
108318
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
108295
108319
|
matching_start_end_time?: true | undefined
|
|
108296
|
-
/** Fixed
|
|
108320
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
108297
108321
|
time_pairs?:
|
|
108298
108322
|
| {
|
|
108299
|
-
/** Label for the
|
|
108323
|
+
/** Label for the start/end time pairing. */
|
|
108300
108324
|
display_name: string
|
|
108301
|
-
/**
|
|
108302
|
-
|
|
108303
|
-
/**
|
|
108304
|
-
|
|
108325
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
108326
|
+
start_time: string
|
|
108327
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
108328
|
+
end_time: string
|
|
108305
108329
|
}[]
|
|
108306
108330
|
| undefined
|
|
108307
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
108331
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
108308
108332
|
start_date_recurrence_rule?: string | undefined
|
|
108309
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
108333
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
108310
108334
|
end_date_recurrence_rule?: string | undefined
|
|
108311
108335
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
108312
108336
|
time_zone?: string | undefined
|
|
@@ -114075,28 +114099,28 @@ export type Routes = {
|
|
|
114075
114099
|
offline_time_frame_options?:
|
|
114076
114100
|
| (
|
|
114077
114101
|
| {
|
|
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
|
|
114102
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
114079
114103
|
display_name: string
|
|
114080
114104
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
114081
114105
|
min_duration?: string | undefined
|
|
114082
114106
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
114083
114107
|
max_duration?: string | undefined
|
|
114084
|
-
/** When `true`, the
|
|
114108
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
114085
114109
|
matching_start_end_time?: true | undefined
|
|
114086
|
-
/** Fixed
|
|
114110
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
114087
114111
|
time_pairs?:
|
|
114088
114112
|
| {
|
|
114089
|
-
/** Label for the
|
|
114113
|
+
/** Label for the start/end time pairing. */
|
|
114090
114114
|
display_name: string
|
|
114091
|
-
/**
|
|
114092
|
-
|
|
114093
|
-
/**
|
|
114094
|
-
|
|
114115
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
114116
|
+
start_time: string
|
|
114117
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
114118
|
+
end_time: string
|
|
114095
114119
|
}[]
|
|
114096
114120
|
| undefined
|
|
114097
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
114121
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
114098
114122
|
start_date_recurrence_rule?: string | undefined
|
|
114099
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
114123
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
114100
114124
|
end_date_recurrence_rule?: string | undefined
|
|
114101
114125
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
114102
114126
|
time_zone?: string | undefined
|
|
@@ -114108,28 +114132,28 @@ export type Routes = {
|
|
|
114108
114132
|
online_time_frame_options?:
|
|
114109
114133
|
| (
|
|
114110
114134
|
| {
|
|
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
|
|
114135
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
114112
114136
|
display_name: string
|
|
114113
114137
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
114114
114138
|
min_duration?: string | undefined
|
|
114115
114139
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
114116
114140
|
max_duration?: string | undefined
|
|
114117
|
-
/** When `true`, the
|
|
114141
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
114118
114142
|
matching_start_end_time?: true | undefined
|
|
114119
|
-
/** Fixed
|
|
114143
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
114120
114144
|
time_pairs?:
|
|
114121
114145
|
| {
|
|
114122
|
-
/** Label for the
|
|
114146
|
+
/** Label for the start/end time pairing. */
|
|
114123
114147
|
display_name: string
|
|
114124
|
-
/**
|
|
114125
|
-
|
|
114126
|
-
/**
|
|
114127
|
-
|
|
114148
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
114149
|
+
start_time: string
|
|
114150
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
114151
|
+
end_time: string
|
|
114128
114152
|
}[]
|
|
114129
114153
|
| undefined
|
|
114130
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
114154
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
114131
114155
|
start_date_recurrence_rule?: string | undefined
|
|
114132
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
114156
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
114133
114157
|
end_date_recurrence_rule?: string | undefined
|
|
114134
114158
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
114135
114159
|
time_zone?: string | undefined
|
|
@@ -115864,28 +115888,28 @@ export type Routes = {
|
|
|
115864
115888
|
offline_time_frame_options?:
|
|
115865
115889
|
| (
|
|
115866
115890
|
| {
|
|
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
|
|
115891
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
115868
115892
|
display_name: string
|
|
115869
115893
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
115870
115894
|
min_duration?: string | undefined
|
|
115871
115895
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
115872
115896
|
max_duration?: string | undefined
|
|
115873
|
-
/** When `true`, the
|
|
115897
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
115874
115898
|
matching_start_end_time?: true | undefined
|
|
115875
|
-
/** Fixed
|
|
115899
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
115876
115900
|
time_pairs?:
|
|
115877
115901
|
| {
|
|
115878
|
-
/** Label for the
|
|
115902
|
+
/** Label for the start/end time pairing. */
|
|
115879
115903
|
display_name: string
|
|
115880
|
-
/**
|
|
115881
|
-
|
|
115882
|
-
/**
|
|
115883
|
-
|
|
115904
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
115905
|
+
start_time: string
|
|
115906
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
115907
|
+
end_time: string
|
|
115884
115908
|
}[]
|
|
115885
115909
|
| undefined
|
|
115886
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
115910
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
115887
115911
|
start_date_recurrence_rule?: string | undefined
|
|
115888
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
115912
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
115889
115913
|
end_date_recurrence_rule?: string | undefined
|
|
115890
115914
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
115891
115915
|
time_zone?: string | undefined
|
|
@@ -115897,28 +115921,28 @@ export type Routes = {
|
|
|
115897
115921
|
online_time_frame_options?:
|
|
115898
115922
|
| (
|
|
115899
115923
|
| {
|
|
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
|
|
115924
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
115901
115925
|
display_name: string
|
|
115902
115926
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
115903
115927
|
min_duration?: string | undefined
|
|
115904
115928
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
115905
115929
|
max_duration?: string | undefined
|
|
115906
|
-
/** When `true`, the
|
|
115930
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
115907
115931
|
matching_start_end_time?: true | undefined
|
|
115908
|
-
/** Fixed
|
|
115932
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
115909
115933
|
time_pairs?:
|
|
115910
115934
|
| {
|
|
115911
|
-
/** Label for the
|
|
115935
|
+
/** Label for the start/end time pairing. */
|
|
115912
115936
|
display_name: string
|
|
115913
|
-
/**
|
|
115914
|
-
|
|
115915
|
-
/**
|
|
115916
|
-
|
|
115937
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
115938
|
+
start_time: string
|
|
115939
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
115940
|
+
end_time: string
|
|
115917
115941
|
}[]
|
|
115918
115942
|
| undefined
|
|
115919
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
115943
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
115920
115944
|
start_date_recurrence_rule?: string | undefined
|
|
115921
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
115945
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
115922
115946
|
end_date_recurrence_rule?: string | undefined
|
|
115923
115947
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
115924
115948
|
time_zone?: string | undefined
|
|
@@ -126477,28 +126501,28 @@ export type Routes = {
|
|
|
126477
126501
|
offline_time_frame_options?:
|
|
126478
126502
|
| (
|
|
126479
126503
|
| {
|
|
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
|
|
126504
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
126481
126505
|
display_name: string
|
|
126482
126506
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126483
126507
|
min_duration?: string | undefined
|
|
126484
126508
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126485
126509
|
max_duration?: string | undefined
|
|
126486
|
-
/** When `true`, the
|
|
126510
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
126487
126511
|
matching_start_end_time?: true | undefined
|
|
126488
|
-
/** Fixed
|
|
126512
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126489
126513
|
time_pairs?:
|
|
126490
126514
|
| {
|
|
126491
|
-
/** Label for the
|
|
126515
|
+
/** Label for the start/end time pairing. */
|
|
126492
126516
|
display_name: string
|
|
126493
|
-
/**
|
|
126494
|
-
|
|
126495
|
-
/**
|
|
126496
|
-
|
|
126517
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
126518
|
+
start_time: string
|
|
126519
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
126520
|
+
end_time: string
|
|
126497
126521
|
}[]
|
|
126498
126522
|
| undefined
|
|
126499
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
126523
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126500
126524
|
start_date_recurrence_rule?: string | undefined
|
|
126501
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
126525
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126502
126526
|
end_date_recurrence_rule?: string | undefined
|
|
126503
126527
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126504
126528
|
time_zone?: string | undefined
|
|
@@ -126510,28 +126534,28 @@ export type Routes = {
|
|
|
126510
126534
|
online_time_frame_options?:
|
|
126511
126535
|
| (
|
|
126512
126536
|
| {
|
|
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
|
|
126537
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
126514
126538
|
display_name: string
|
|
126515
126539
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126516
126540
|
min_duration?: string | undefined
|
|
126517
126541
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126518
126542
|
max_duration?: string | undefined
|
|
126519
|
-
/** When `true`, the
|
|
126543
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
126520
126544
|
matching_start_end_time?: true | undefined
|
|
126521
|
-
/** Fixed
|
|
126545
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126522
126546
|
time_pairs?:
|
|
126523
126547
|
| {
|
|
126524
|
-
/** Label for the
|
|
126548
|
+
/** Label for the start/end time pairing. */
|
|
126525
126549
|
display_name: string
|
|
126526
|
-
/**
|
|
126527
|
-
|
|
126528
|
-
/**
|
|
126529
|
-
|
|
126550
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
126551
|
+
start_time: string
|
|
126552
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
126553
|
+
end_time: string
|
|
126530
126554
|
}[]
|
|
126531
126555
|
| undefined
|
|
126532
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
126556
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126533
126557
|
start_date_recurrence_rule?: string | undefined
|
|
126534
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
126558
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126535
126559
|
end_date_recurrence_rule?: string | undefined
|
|
126536
126560
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126537
126561
|
time_zone?: string | undefined
|
|
@@ -128268,28 +128292,28 @@ export type Routes = {
|
|
|
128268
128292
|
offline_time_frame_options?:
|
|
128269
128293
|
| (
|
|
128270
128294
|
| {
|
|
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
|
|
128295
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
128272
128296
|
display_name: string
|
|
128273
128297
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
128274
128298
|
min_duration?: string | undefined
|
|
128275
128299
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
128276
128300
|
max_duration?: string | undefined
|
|
128277
|
-
/** When `true`, the
|
|
128301
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
128278
128302
|
matching_start_end_time?: true | undefined
|
|
128279
|
-
/** Fixed
|
|
128303
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
128280
128304
|
time_pairs?:
|
|
128281
128305
|
| {
|
|
128282
|
-
/** Label for the
|
|
128306
|
+
/** Label for the start/end time pairing. */
|
|
128283
128307
|
display_name: string
|
|
128284
|
-
/**
|
|
128285
|
-
|
|
128286
|
-
/**
|
|
128287
|
-
|
|
128308
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
128309
|
+
start_time: string
|
|
128310
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
128311
|
+
end_time: string
|
|
128288
128312
|
}[]
|
|
128289
128313
|
| undefined
|
|
128290
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
128314
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
128291
128315
|
start_date_recurrence_rule?: string | undefined
|
|
128292
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
128316
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
128293
128317
|
end_date_recurrence_rule?: string | undefined
|
|
128294
128318
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
128295
128319
|
time_zone?: string | undefined
|
|
@@ -128301,28 +128325,28 @@ export type Routes = {
|
|
|
128301
128325
|
online_time_frame_options?:
|
|
128302
128326
|
| (
|
|
128303
128327
|
| {
|
|
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
|
|
128328
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
128305
128329
|
display_name: string
|
|
128306
128330
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
128307
128331
|
min_duration?: string | undefined
|
|
128308
128332
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
128309
128333
|
max_duration?: string | undefined
|
|
128310
|
-
/** When `true`, the
|
|
128334
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
128311
128335
|
matching_start_end_time?: true | undefined
|
|
128312
|
-
/** Fixed
|
|
128336
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
128313
128337
|
time_pairs?:
|
|
128314
128338
|
| {
|
|
128315
|
-
/** Label for the
|
|
128339
|
+
/** Label for the start/end time pairing. */
|
|
128316
128340
|
display_name: string
|
|
128317
|
-
/**
|
|
128318
|
-
|
|
128319
|
-
/**
|
|
128320
|
-
|
|
128341
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
128342
|
+
start_time: string
|
|
128343
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
128344
|
+
end_time: string
|
|
128321
128345
|
}[]
|
|
128322
128346
|
| undefined
|
|
128323
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
128347
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
128324
128348
|
start_date_recurrence_rule?: string | undefined
|
|
128325
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
128349
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
128326
128350
|
end_date_recurrence_rule?: string | undefined
|
|
128327
128351
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
128328
128352
|
time_zone?: string | undefined
|
|
@@ -131486,28 +131510,28 @@ export type Routes = {
|
|
|
131486
131510
|
offline_time_frame_options?:
|
|
131487
131511
|
| (
|
|
131488
131512
|
| {
|
|
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
|
|
131513
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
131490
131514
|
display_name: string
|
|
131491
131515
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
131492
131516
|
min_duration?: string | undefined
|
|
131493
131517
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
131494
131518
|
max_duration?: string | undefined
|
|
131495
|
-
/** When `true`, the
|
|
131519
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
131496
131520
|
matching_start_end_time?: true | undefined
|
|
131497
|
-
/** Fixed
|
|
131521
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
131498
131522
|
time_pairs?:
|
|
131499
131523
|
| {
|
|
131500
|
-
/** Label for the
|
|
131524
|
+
/** Label for the start/end time pairing. */
|
|
131501
131525
|
display_name: string
|
|
131502
|
-
/**
|
|
131503
|
-
|
|
131504
|
-
/**
|
|
131505
|
-
|
|
131526
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
131527
|
+
start_time: string
|
|
131528
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
131529
|
+
end_time: string
|
|
131506
131530
|
}[]
|
|
131507
131531
|
| undefined
|
|
131508
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
131532
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
131509
131533
|
start_date_recurrence_rule?: string | undefined
|
|
131510
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
131534
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
131511
131535
|
end_date_recurrence_rule?: string | undefined
|
|
131512
131536
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
131513
131537
|
time_zone?: string | undefined
|
|
@@ -131519,28 +131543,28 @@ export type Routes = {
|
|
|
131519
131543
|
online_time_frame_options?:
|
|
131520
131544
|
| (
|
|
131521
131545
|
| {
|
|
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
|
|
131546
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
131523
131547
|
display_name: string
|
|
131524
131548
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
131525
131549
|
min_duration?: string | undefined
|
|
131526
131550
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
131527
131551
|
max_duration?: string | undefined
|
|
131528
|
-
/** When `true`, the
|
|
131552
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
131529
131553
|
matching_start_end_time?: true | undefined
|
|
131530
|
-
/** Fixed
|
|
131554
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
131531
131555
|
time_pairs?:
|
|
131532
131556
|
| {
|
|
131533
|
-
/** Label for the
|
|
131557
|
+
/** Label for the start/end time pairing. */
|
|
131534
131558
|
display_name: string
|
|
131535
|
-
/**
|
|
131536
|
-
|
|
131537
|
-
/**
|
|
131538
|
-
|
|
131559
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
131560
|
+
start_time: string
|
|
131561
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
131562
|
+
end_time: string
|
|
131539
131563
|
}[]
|
|
131540
131564
|
| undefined
|
|
131541
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
131565
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
131542
131566
|
start_date_recurrence_rule?: string | undefined
|
|
131543
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
131567
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
131544
131568
|
end_date_recurrence_rule?: string | undefined
|
|
131545
131569
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
131546
131570
|
time_zone?: string | undefined
|
|
@@ -139884,6 +139908,10 @@ export type Routes = {
|
|
|
139884
139908
|
event_type: 'lock.locked'
|
|
139885
139909
|
/** ID of the access code that was used to lock the device. */
|
|
139886
139910
|
access_code_id?: string | undefined
|
|
139911
|
+
/**
|
|
139912
|
+
Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
139913
|
+
*/
|
|
139914
|
+
code?: string | undefined
|
|
139887
139915
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
139888
139916
|
access_code_is_managed?: boolean | undefined
|
|
139889
139917
|
/** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
|
|
@@ -139934,6 +139962,10 @@ export type Routes = {
|
|
|
139934
139962
|
event_type: 'lock.unlocked'
|
|
139935
139963
|
/** ID of the access code that was used to unlock the affected device. */
|
|
139936
139964
|
access_code_id?: string | undefined
|
|
139965
|
+
/**
|
|
139966
|
+
Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
|
|
139967
|
+
*/
|
|
139968
|
+
code?: string | undefined
|
|
139937
139969
|
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
|
|
139938
139970
|
access_code_is_managed?: boolean | undefined
|
|
139939
139971
|
/** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
|