@seamapi/types 1.932.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 +39 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +432 -432
- package/dist/index.cjs +39 -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/openapi.js +28 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +340 -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/openapi.ts +28 -28
- package/src/lib/seam/connect/route-types.ts +340 -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
|
|
@@ -64377,28 +64377,28 @@ export type Routes = {
|
|
|
64377
64377
|
offline_time_frame_options?:
|
|
64378
64378
|
| (
|
|
64379
64379
|
| {
|
|
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
|
|
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`). */
|
|
64381
64381
|
display_name: string
|
|
64382
64382
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
64383
64383
|
min_duration?: string | undefined
|
|
64384
64384
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
64385
64385
|
max_duration?: string | undefined
|
|
64386
|
-
/** 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`. */
|
|
64387
64387
|
matching_start_end_time?: true | undefined
|
|
64388
|
-
/** Fixed
|
|
64388
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
64389
64389
|
time_pairs?:
|
|
64390
64390
|
| {
|
|
64391
|
-
/** Label for the
|
|
64391
|
+
/** Label for the start/end time pairing. */
|
|
64392
64392
|
display_name: string
|
|
64393
|
-
/**
|
|
64394
|
-
|
|
64395
|
-
/**
|
|
64396
|
-
|
|
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
|
|
64397
64397
|
}[]
|
|
64398
64398
|
| undefined
|
|
64399
|
-
/** 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. */
|
|
64400
64400
|
start_date_recurrence_rule?: string | undefined
|
|
64401
|
-
/** 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. */
|
|
64402
64402
|
end_date_recurrence_rule?: string | undefined
|
|
64403
64403
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
64404
64404
|
time_zone?: string | undefined
|
|
@@ -64410,28 +64410,28 @@ export type Routes = {
|
|
|
64410
64410
|
online_time_frame_options?:
|
|
64411
64411
|
| (
|
|
64412
64412
|
| {
|
|
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
|
|
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`). */
|
|
64414
64414
|
display_name: string
|
|
64415
64415
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
64416
64416
|
min_duration?: string | undefined
|
|
64417
64417
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
64418
64418
|
max_duration?: string | undefined
|
|
64419
|
-
/** 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`. */
|
|
64420
64420
|
matching_start_end_time?: true | undefined
|
|
64421
|
-
/** Fixed
|
|
64421
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
64422
64422
|
time_pairs?:
|
|
64423
64423
|
| {
|
|
64424
|
-
/** Label for the
|
|
64424
|
+
/** Label for the start/end time pairing. */
|
|
64425
64425
|
display_name: string
|
|
64426
|
-
/**
|
|
64427
|
-
|
|
64428
|
-
/**
|
|
64429
|
-
|
|
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
|
|
64430
64430
|
}[]
|
|
64431
64431
|
| undefined
|
|
64432
|
-
/** 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. */
|
|
64433
64433
|
start_date_recurrence_rule?: string | undefined
|
|
64434
|
-
/** 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. */
|
|
64435
64435
|
end_date_recurrence_rule?: string | undefined
|
|
64436
64436
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
64437
64437
|
time_zone?: string | undefined
|
|
@@ -66167,28 +66167,28 @@ export type Routes = {
|
|
|
66167
66167
|
offline_time_frame_options?:
|
|
66168
66168
|
| (
|
|
66169
66169
|
| {
|
|
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
|
|
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`). */
|
|
66171
66171
|
display_name: string
|
|
66172
66172
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
66173
66173
|
min_duration?: string | undefined
|
|
66174
66174
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
66175
66175
|
max_duration?: string | undefined
|
|
66176
|
-
/** 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`. */
|
|
66177
66177
|
matching_start_end_time?: true | undefined
|
|
66178
|
-
/** Fixed
|
|
66178
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
66179
66179
|
time_pairs?:
|
|
66180
66180
|
| {
|
|
66181
|
-
/** Label for the
|
|
66181
|
+
/** Label for the start/end time pairing. */
|
|
66182
66182
|
display_name: string
|
|
66183
|
-
/**
|
|
66184
|
-
|
|
66185
|
-
/**
|
|
66186
|
-
|
|
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
|
|
66187
66187
|
}[]
|
|
66188
66188
|
| undefined
|
|
66189
|
-
/** 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. */
|
|
66190
66190
|
start_date_recurrence_rule?: string | undefined
|
|
66191
|
-
/** 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. */
|
|
66192
66192
|
end_date_recurrence_rule?: string | undefined
|
|
66193
66193
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
66194
66194
|
time_zone?: string | undefined
|
|
@@ -66200,28 +66200,28 @@ export type Routes = {
|
|
|
66200
66200
|
online_time_frame_options?:
|
|
66201
66201
|
| (
|
|
66202
66202
|
| {
|
|
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
|
|
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`). */
|
|
66204
66204
|
display_name: string
|
|
66205
66205
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
66206
66206
|
min_duration?: string | undefined
|
|
66207
66207
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
66208
66208
|
max_duration?: string | undefined
|
|
66209
|
-
/** 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`. */
|
|
66210
66210
|
matching_start_end_time?: true | undefined
|
|
66211
|
-
/** Fixed
|
|
66211
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
66212
66212
|
time_pairs?:
|
|
66213
66213
|
| {
|
|
66214
|
-
/** Label for the
|
|
66214
|
+
/** Label for the start/end time pairing. */
|
|
66215
66215
|
display_name: string
|
|
66216
|
-
/**
|
|
66217
|
-
|
|
66218
|
-
/**
|
|
66219
|
-
|
|
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
|
|
66220
66220
|
}[]
|
|
66221
66221
|
| undefined
|
|
66222
|
-
/** 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. */
|
|
66223
66223
|
start_date_recurrence_rule?: string | undefined
|
|
66224
|
-
/** 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. */
|
|
66225
66225
|
end_date_recurrence_rule?: string | undefined
|
|
66226
66226
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
66227
66227
|
time_zone?: string | undefined
|
|
@@ -68150,28 +68150,28 @@ export type Routes = {
|
|
|
68150
68150
|
offline_time_frame_options?:
|
|
68151
68151
|
| (
|
|
68152
68152
|
| {
|
|
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
|
|
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`). */
|
|
68154
68154
|
display_name: string
|
|
68155
68155
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
68156
68156
|
min_duration?: string | undefined
|
|
68157
68157
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
68158
68158
|
max_duration?: string | undefined
|
|
68159
|
-
/** 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`. */
|
|
68160
68160
|
matching_start_end_time?: true | undefined
|
|
68161
|
-
/** Fixed
|
|
68161
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
68162
68162
|
time_pairs?:
|
|
68163
68163
|
| {
|
|
68164
|
-
/** Label for the
|
|
68164
|
+
/** Label for the start/end time pairing. */
|
|
68165
68165
|
display_name: string
|
|
68166
|
-
/**
|
|
68167
|
-
|
|
68168
|
-
/**
|
|
68169
|
-
|
|
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
|
|
68170
68170
|
}[]
|
|
68171
68171
|
| undefined
|
|
68172
|
-
/** 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. */
|
|
68173
68173
|
start_date_recurrence_rule?: string | undefined
|
|
68174
|
-
/** 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. */
|
|
68175
68175
|
end_date_recurrence_rule?: string | undefined
|
|
68176
68176
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
68177
68177
|
time_zone?: string | undefined
|
|
@@ -68183,28 +68183,28 @@ export type Routes = {
|
|
|
68183
68183
|
online_time_frame_options?:
|
|
68184
68184
|
| (
|
|
68185
68185
|
| {
|
|
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
|
|
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`). */
|
|
68187
68187
|
display_name: string
|
|
68188
68188
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
68189
68189
|
min_duration?: string | undefined
|
|
68190
68190
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
68191
68191
|
max_duration?: string | undefined
|
|
68192
|
-
/** 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`. */
|
|
68193
68193
|
matching_start_end_time?: true | undefined
|
|
68194
|
-
/** Fixed
|
|
68194
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
68195
68195
|
time_pairs?:
|
|
68196
68196
|
| {
|
|
68197
|
-
/** Label for the
|
|
68197
|
+
/** Label for the start/end time pairing. */
|
|
68198
68198
|
display_name: string
|
|
68199
|
-
/**
|
|
68200
|
-
|
|
68201
|
-
/**
|
|
68202
|
-
|
|
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
|
|
68203
68203
|
}[]
|
|
68204
68204
|
| undefined
|
|
68205
|
-
/** 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. */
|
|
68206
68206
|
start_date_recurrence_rule?: string | undefined
|
|
68207
|
-
/** 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. */
|
|
68208
68208
|
end_date_recurrence_rule?: string | undefined
|
|
68209
68209
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
68210
68210
|
time_zone?: string | undefined
|
|
@@ -69939,28 +69939,28 @@ export type Routes = {
|
|
|
69939
69939
|
offline_time_frame_options?:
|
|
69940
69940
|
| (
|
|
69941
69941
|
| {
|
|
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
|
|
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`). */
|
|
69943
69943
|
display_name: string
|
|
69944
69944
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
69945
69945
|
min_duration?: string | undefined
|
|
69946
69946
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
69947
69947
|
max_duration?: string | undefined
|
|
69948
|
-
/** 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`. */
|
|
69949
69949
|
matching_start_end_time?: true | undefined
|
|
69950
|
-
/** Fixed
|
|
69950
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
69951
69951
|
time_pairs?:
|
|
69952
69952
|
| {
|
|
69953
|
-
/** Label for the
|
|
69953
|
+
/** Label for the start/end time pairing. */
|
|
69954
69954
|
display_name: string
|
|
69955
|
-
/**
|
|
69956
|
-
|
|
69957
|
-
/**
|
|
69958
|
-
|
|
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
|
|
69959
69959
|
}[]
|
|
69960
69960
|
| undefined
|
|
69961
|
-
/** 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. */
|
|
69962
69962
|
start_date_recurrence_rule?: string | undefined
|
|
69963
|
-
/** 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. */
|
|
69964
69964
|
end_date_recurrence_rule?: string | undefined
|
|
69965
69965
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
69966
69966
|
time_zone?: string | undefined
|
|
@@ -69972,28 +69972,28 @@ export type Routes = {
|
|
|
69972
69972
|
online_time_frame_options?:
|
|
69973
69973
|
| (
|
|
69974
69974
|
| {
|
|
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
|
|
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`). */
|
|
69976
69976
|
display_name: string
|
|
69977
69977
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
69978
69978
|
min_duration?: string | undefined
|
|
69979
69979
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
69980
69980
|
max_duration?: string | undefined
|
|
69981
|
-
/** 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`. */
|
|
69982
69982
|
matching_start_end_time?: true | undefined
|
|
69983
|
-
/** Fixed
|
|
69983
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
69984
69984
|
time_pairs?:
|
|
69985
69985
|
| {
|
|
69986
|
-
/** Label for the
|
|
69986
|
+
/** Label for the start/end time pairing. */
|
|
69987
69987
|
display_name: string
|
|
69988
|
-
/**
|
|
69989
|
-
|
|
69990
|
-
/**
|
|
69991
|
-
|
|
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
|
|
69992
69992
|
}[]
|
|
69993
69993
|
| undefined
|
|
69994
|
-
/** 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. */
|
|
69995
69995
|
start_date_recurrence_rule?: string | undefined
|
|
69996
|
-
/** 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. */
|
|
69997
69997
|
end_date_recurrence_rule?: string | undefined
|
|
69998
69998
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
69999
69999
|
time_zone?: string | undefined
|
|
@@ -79617,28 +79617,28 @@ export type Routes = {
|
|
|
79617
79617
|
offline_time_frame_options?:
|
|
79618
79618
|
| (
|
|
79619
79619
|
| {
|
|
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
|
|
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`). */
|
|
79621
79621
|
display_name: string
|
|
79622
79622
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
79623
79623
|
min_duration?: string | undefined
|
|
79624
79624
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
79625
79625
|
max_duration?: string | undefined
|
|
79626
|
-
/** 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`. */
|
|
79627
79627
|
matching_start_end_time?: true | undefined
|
|
79628
|
-
/** Fixed
|
|
79628
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
79629
79629
|
time_pairs?:
|
|
79630
79630
|
| {
|
|
79631
|
-
/** Label for the
|
|
79631
|
+
/** Label for the start/end time pairing. */
|
|
79632
79632
|
display_name: string
|
|
79633
|
-
/**
|
|
79634
|
-
|
|
79635
|
-
/**
|
|
79636
|
-
|
|
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
|
|
79637
79637
|
}[]
|
|
79638
79638
|
| undefined
|
|
79639
|
-
/** 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. */
|
|
79640
79640
|
start_date_recurrence_rule?: string | undefined
|
|
79641
|
-
/** 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. */
|
|
79642
79642
|
end_date_recurrence_rule?: string | undefined
|
|
79643
79643
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
79644
79644
|
time_zone?: string | undefined
|
|
@@ -79650,28 +79650,28 @@ export type Routes = {
|
|
|
79650
79650
|
online_time_frame_options?:
|
|
79651
79651
|
| (
|
|
79652
79652
|
| {
|
|
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
|
|
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`). */
|
|
79654
79654
|
display_name: string
|
|
79655
79655
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
79656
79656
|
min_duration?: string | undefined
|
|
79657
79657
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
79658
79658
|
max_duration?: string | undefined
|
|
79659
|
-
/** 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`. */
|
|
79660
79660
|
matching_start_end_time?: true | undefined
|
|
79661
|
-
/** Fixed
|
|
79661
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
79662
79662
|
time_pairs?:
|
|
79663
79663
|
| {
|
|
79664
|
-
/** Label for the
|
|
79664
|
+
/** Label for the start/end time pairing. */
|
|
79665
79665
|
display_name: string
|
|
79666
|
-
/**
|
|
79667
|
-
|
|
79668
|
-
/**
|
|
79669
|
-
|
|
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
|
|
79670
79670
|
}[]
|
|
79671
79671
|
| undefined
|
|
79672
|
-
/** 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. */
|
|
79673
79673
|
start_date_recurrence_rule?: string | undefined
|
|
79674
|
-
/** 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. */
|
|
79675
79675
|
end_date_recurrence_rule?: string | undefined
|
|
79676
79676
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
79677
79677
|
time_zone?: string | undefined
|
|
@@ -81406,28 +81406,28 @@ export type Routes = {
|
|
|
81406
81406
|
offline_time_frame_options?:
|
|
81407
81407
|
| (
|
|
81408
81408
|
| {
|
|
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
|
|
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`). */
|
|
81410
81410
|
display_name: string
|
|
81411
81411
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
81412
81412
|
min_duration?: string | undefined
|
|
81413
81413
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
81414
81414
|
max_duration?: string | undefined
|
|
81415
|
-
/** 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`. */
|
|
81416
81416
|
matching_start_end_time?: true | undefined
|
|
81417
|
-
/** Fixed
|
|
81417
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
81418
81418
|
time_pairs?:
|
|
81419
81419
|
| {
|
|
81420
|
-
/** Label for the
|
|
81420
|
+
/** Label for the start/end time pairing. */
|
|
81421
81421
|
display_name: string
|
|
81422
|
-
/**
|
|
81423
|
-
|
|
81424
|
-
/**
|
|
81425
|
-
|
|
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
|
|
81426
81426
|
}[]
|
|
81427
81427
|
| undefined
|
|
81428
|
-
/** 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. */
|
|
81429
81429
|
start_date_recurrence_rule?: string | undefined
|
|
81430
|
-
/** 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. */
|
|
81431
81431
|
end_date_recurrence_rule?: string | undefined
|
|
81432
81432
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
81433
81433
|
time_zone?: string | undefined
|
|
@@ -81439,28 +81439,28 @@ export type Routes = {
|
|
|
81439
81439
|
online_time_frame_options?:
|
|
81440
81440
|
| (
|
|
81441
81441
|
| {
|
|
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
|
|
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`). */
|
|
81443
81443
|
display_name: string
|
|
81444
81444
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
81445
81445
|
min_duration?: string | undefined
|
|
81446
81446
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
81447
81447
|
max_duration?: string | undefined
|
|
81448
|
-
/** 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`. */
|
|
81449
81449
|
matching_start_end_time?: true | undefined
|
|
81450
|
-
/** Fixed
|
|
81450
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
81451
81451
|
time_pairs?:
|
|
81452
81452
|
| {
|
|
81453
|
-
/** Label for the
|
|
81453
|
+
/** Label for the start/end time pairing. */
|
|
81454
81454
|
display_name: string
|
|
81455
|
-
/**
|
|
81456
|
-
|
|
81457
|
-
/**
|
|
81458
|
-
|
|
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
|
|
81459
81459
|
}[]
|
|
81460
81460
|
| undefined
|
|
81461
|
-
/** 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. */
|
|
81462
81462
|
start_date_recurrence_rule?: string | undefined
|
|
81463
|
-
/** 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. */
|
|
81464
81464
|
end_date_recurrence_rule?: string | undefined
|
|
81465
81465
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
81466
81466
|
time_zone?: string | undefined
|
|
@@ -99512,28 +99512,28 @@ export type Routes = {
|
|
|
99512
99512
|
offline_time_frame_options?:
|
|
99513
99513
|
| (
|
|
99514
99514
|
| {
|
|
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
|
|
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`). */
|
|
99516
99516
|
display_name: string
|
|
99517
99517
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
99518
99518
|
min_duration?: string | undefined
|
|
99519
99519
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
99520
99520
|
max_duration?: string | undefined
|
|
99521
|
-
/** 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`. */
|
|
99522
99522
|
matching_start_end_time?: true | undefined
|
|
99523
|
-
/** Fixed
|
|
99523
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
99524
99524
|
time_pairs?:
|
|
99525
99525
|
| {
|
|
99526
|
-
/** Label for the
|
|
99526
|
+
/** Label for the start/end time pairing. */
|
|
99527
99527
|
display_name: string
|
|
99528
|
-
/**
|
|
99529
|
-
|
|
99530
|
-
/**
|
|
99531
|
-
|
|
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
|
|
99532
99532
|
}[]
|
|
99533
99533
|
| undefined
|
|
99534
|
-
/** 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. */
|
|
99535
99535
|
start_date_recurrence_rule?: string | undefined
|
|
99536
|
-
/** 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. */
|
|
99537
99537
|
end_date_recurrence_rule?: string | undefined
|
|
99538
99538
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
99539
99539
|
time_zone?: string | undefined
|
|
@@ -99545,28 +99545,28 @@ export type Routes = {
|
|
|
99545
99545
|
online_time_frame_options?:
|
|
99546
99546
|
| (
|
|
99547
99547
|
| {
|
|
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
|
|
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`). */
|
|
99549
99549
|
display_name: string
|
|
99550
99550
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
99551
99551
|
min_duration?: string | undefined
|
|
99552
99552
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
99553
99553
|
max_duration?: string | undefined
|
|
99554
|
-
/** 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`. */
|
|
99555
99555
|
matching_start_end_time?: true | undefined
|
|
99556
|
-
/** Fixed
|
|
99556
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
99557
99557
|
time_pairs?:
|
|
99558
99558
|
| {
|
|
99559
|
-
/** Label for the
|
|
99559
|
+
/** Label for the start/end time pairing. */
|
|
99560
99560
|
display_name: string
|
|
99561
|
-
/**
|
|
99562
|
-
|
|
99563
|
-
/**
|
|
99564
|
-
|
|
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
|
|
99565
99565
|
}[]
|
|
99566
99566
|
| undefined
|
|
99567
|
-
/** 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. */
|
|
99568
99568
|
start_date_recurrence_rule?: string | undefined
|
|
99569
|
-
/** 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. */
|
|
99570
99570
|
end_date_recurrence_rule?: string | undefined
|
|
99571
99571
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
99572
99572
|
time_zone?: string | undefined
|
|
@@ -108276,28 +108276,28 @@ export type Routes = {
|
|
|
108276
108276
|
offline_time_frame_options?:
|
|
108277
108277
|
| (
|
|
108278
108278
|
| {
|
|
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
|
|
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`). */
|
|
108280
108280
|
display_name: string
|
|
108281
108281
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
108282
108282
|
min_duration?: string | undefined
|
|
108283
108283
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
108284
108284
|
max_duration?: string | undefined
|
|
108285
|
-
/** 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`. */
|
|
108286
108286
|
matching_start_end_time?: true | undefined
|
|
108287
|
-
/** Fixed
|
|
108287
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
108288
108288
|
time_pairs?:
|
|
108289
108289
|
| {
|
|
108290
|
-
/** Label for the
|
|
108290
|
+
/** Label for the start/end time pairing. */
|
|
108291
108291
|
display_name: string
|
|
108292
|
-
/**
|
|
108293
|
-
|
|
108294
|
-
/**
|
|
108295
|
-
|
|
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
|
|
108296
108296
|
}[]
|
|
108297
108297
|
| undefined
|
|
108298
|
-
/** 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. */
|
|
108299
108299
|
start_date_recurrence_rule?: string | undefined
|
|
108300
|
-
/** 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. */
|
|
108301
108301
|
end_date_recurrence_rule?: string | undefined
|
|
108302
108302
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
108303
108303
|
time_zone?: string | undefined
|
|
@@ -108309,28 +108309,28 @@ export type Routes = {
|
|
|
108309
108309
|
online_time_frame_options?:
|
|
108310
108310
|
| (
|
|
108311
108311
|
| {
|
|
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
|
|
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`). */
|
|
108313
108313
|
display_name: string
|
|
108314
108314
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
108315
108315
|
min_duration?: string | undefined
|
|
108316
108316
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
108317
108317
|
max_duration?: string | undefined
|
|
108318
|
-
/** 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`. */
|
|
108319
108319
|
matching_start_end_time?: true | undefined
|
|
108320
|
-
/** Fixed
|
|
108320
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
108321
108321
|
time_pairs?:
|
|
108322
108322
|
| {
|
|
108323
|
-
/** Label for the
|
|
108323
|
+
/** Label for the start/end time pairing. */
|
|
108324
108324
|
display_name: string
|
|
108325
|
-
/**
|
|
108326
|
-
|
|
108327
|
-
/**
|
|
108328
|
-
|
|
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
|
|
108329
108329
|
}[]
|
|
108330
108330
|
| undefined
|
|
108331
|
-
/** 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. */
|
|
108332
108332
|
start_date_recurrence_rule?: string | undefined
|
|
108333
|
-
/** 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. */
|
|
108334
108334
|
end_date_recurrence_rule?: string | undefined
|
|
108335
108335
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
108336
108336
|
time_zone?: string | undefined
|
|
@@ -114099,28 +114099,28 @@ export type Routes = {
|
|
|
114099
114099
|
offline_time_frame_options?:
|
|
114100
114100
|
| (
|
|
114101
114101
|
| {
|
|
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
|
|
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`). */
|
|
114103
114103
|
display_name: string
|
|
114104
114104
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
114105
114105
|
min_duration?: string | undefined
|
|
114106
114106
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
114107
114107
|
max_duration?: string | undefined
|
|
114108
|
-
/** 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`. */
|
|
114109
114109
|
matching_start_end_time?: true | undefined
|
|
114110
|
-
/** Fixed
|
|
114110
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
114111
114111
|
time_pairs?:
|
|
114112
114112
|
| {
|
|
114113
|
-
/** Label for the
|
|
114113
|
+
/** Label for the start/end time pairing. */
|
|
114114
114114
|
display_name: string
|
|
114115
|
-
/**
|
|
114116
|
-
|
|
114117
|
-
/**
|
|
114118
|
-
|
|
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
|
|
114119
114119
|
}[]
|
|
114120
114120
|
| undefined
|
|
114121
|
-
/** 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. */
|
|
114122
114122
|
start_date_recurrence_rule?: string | undefined
|
|
114123
|
-
/** 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. */
|
|
114124
114124
|
end_date_recurrence_rule?: string | undefined
|
|
114125
114125
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
114126
114126
|
time_zone?: string | undefined
|
|
@@ -114132,28 +114132,28 @@ export type Routes = {
|
|
|
114132
114132
|
online_time_frame_options?:
|
|
114133
114133
|
| (
|
|
114134
114134
|
| {
|
|
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
|
|
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`). */
|
|
114136
114136
|
display_name: string
|
|
114137
114137
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
114138
114138
|
min_duration?: string | undefined
|
|
114139
114139
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
114140
114140
|
max_duration?: string | undefined
|
|
114141
|
-
/** 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`. */
|
|
114142
114142
|
matching_start_end_time?: true | undefined
|
|
114143
|
-
/** Fixed
|
|
114143
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
114144
114144
|
time_pairs?:
|
|
114145
114145
|
| {
|
|
114146
|
-
/** Label for the
|
|
114146
|
+
/** Label for the start/end time pairing. */
|
|
114147
114147
|
display_name: string
|
|
114148
|
-
/**
|
|
114149
|
-
|
|
114150
|
-
/**
|
|
114151
|
-
|
|
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
|
|
114152
114152
|
}[]
|
|
114153
114153
|
| undefined
|
|
114154
|
-
/** 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. */
|
|
114155
114155
|
start_date_recurrence_rule?: string | undefined
|
|
114156
|
-
/** 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. */
|
|
114157
114157
|
end_date_recurrence_rule?: string | undefined
|
|
114158
114158
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
114159
114159
|
time_zone?: string | undefined
|
|
@@ -115888,28 +115888,28 @@ export type Routes = {
|
|
|
115888
115888
|
offline_time_frame_options?:
|
|
115889
115889
|
| (
|
|
115890
115890
|
| {
|
|
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
|
|
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`). */
|
|
115892
115892
|
display_name: string
|
|
115893
115893
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
115894
115894
|
min_duration?: string | undefined
|
|
115895
115895
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
115896
115896
|
max_duration?: string | undefined
|
|
115897
|
-
/** 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`. */
|
|
115898
115898
|
matching_start_end_time?: true | undefined
|
|
115899
|
-
/** Fixed
|
|
115899
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
115900
115900
|
time_pairs?:
|
|
115901
115901
|
| {
|
|
115902
|
-
/** Label for the
|
|
115902
|
+
/** Label for the start/end time pairing. */
|
|
115903
115903
|
display_name: string
|
|
115904
|
-
/**
|
|
115905
|
-
|
|
115906
|
-
/**
|
|
115907
|
-
|
|
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
|
|
115908
115908
|
}[]
|
|
115909
115909
|
| undefined
|
|
115910
|
-
/** 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. */
|
|
115911
115911
|
start_date_recurrence_rule?: string | undefined
|
|
115912
|
-
/** 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. */
|
|
115913
115913
|
end_date_recurrence_rule?: string | undefined
|
|
115914
115914
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
115915
115915
|
time_zone?: string | undefined
|
|
@@ -115921,28 +115921,28 @@ export type Routes = {
|
|
|
115921
115921
|
online_time_frame_options?:
|
|
115922
115922
|
| (
|
|
115923
115923
|
| {
|
|
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
|
|
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`). */
|
|
115925
115925
|
display_name: string
|
|
115926
115926
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
115927
115927
|
min_duration?: string | undefined
|
|
115928
115928
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
115929
115929
|
max_duration?: string | undefined
|
|
115930
|
-
/** 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`. */
|
|
115931
115931
|
matching_start_end_time?: true | undefined
|
|
115932
|
-
/** Fixed
|
|
115932
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
115933
115933
|
time_pairs?:
|
|
115934
115934
|
| {
|
|
115935
|
-
/** Label for the
|
|
115935
|
+
/** Label for the start/end time pairing. */
|
|
115936
115936
|
display_name: string
|
|
115937
|
-
/**
|
|
115938
|
-
|
|
115939
|
-
/**
|
|
115940
|
-
|
|
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
|
|
115941
115941
|
}[]
|
|
115942
115942
|
| undefined
|
|
115943
|
-
/** 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. */
|
|
115944
115944
|
start_date_recurrence_rule?: string | undefined
|
|
115945
|
-
/** 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. */
|
|
115946
115946
|
end_date_recurrence_rule?: string | undefined
|
|
115947
115947
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
115948
115948
|
time_zone?: string | undefined
|
|
@@ -126501,28 +126501,28 @@ export type Routes = {
|
|
|
126501
126501
|
offline_time_frame_options?:
|
|
126502
126502
|
| (
|
|
126503
126503
|
| {
|
|
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
|
|
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`). */
|
|
126505
126505
|
display_name: string
|
|
126506
126506
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126507
126507
|
min_duration?: string | undefined
|
|
126508
126508
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126509
126509
|
max_duration?: string | undefined
|
|
126510
|
-
/** 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`. */
|
|
126511
126511
|
matching_start_end_time?: true | undefined
|
|
126512
|
-
/** Fixed
|
|
126512
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126513
126513
|
time_pairs?:
|
|
126514
126514
|
| {
|
|
126515
|
-
/** Label for the
|
|
126515
|
+
/** Label for the start/end time pairing. */
|
|
126516
126516
|
display_name: string
|
|
126517
|
-
/**
|
|
126518
|
-
|
|
126519
|
-
/**
|
|
126520
|
-
|
|
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
|
|
126521
126521
|
}[]
|
|
126522
126522
|
| undefined
|
|
126523
|
-
/** 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. */
|
|
126524
126524
|
start_date_recurrence_rule?: string | undefined
|
|
126525
|
-
/** 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. */
|
|
126526
126526
|
end_date_recurrence_rule?: string | undefined
|
|
126527
126527
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126528
126528
|
time_zone?: string | undefined
|
|
@@ -126534,28 +126534,28 @@ export type Routes = {
|
|
|
126534
126534
|
online_time_frame_options?:
|
|
126535
126535
|
| (
|
|
126536
126536
|
| {
|
|
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
|
|
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`). */
|
|
126538
126538
|
display_name: string
|
|
126539
126539
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126540
126540
|
min_duration?: string | undefined
|
|
126541
126541
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126542
126542
|
max_duration?: string | undefined
|
|
126543
|
-
/** 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`. */
|
|
126544
126544
|
matching_start_end_time?: true | undefined
|
|
126545
|
-
/** Fixed
|
|
126545
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126546
126546
|
time_pairs?:
|
|
126547
126547
|
| {
|
|
126548
|
-
/** Label for the
|
|
126548
|
+
/** Label for the start/end time pairing. */
|
|
126549
126549
|
display_name: string
|
|
126550
|
-
/**
|
|
126551
|
-
|
|
126552
|
-
/**
|
|
126553
|
-
|
|
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
|
|
126554
126554
|
}[]
|
|
126555
126555
|
| undefined
|
|
126556
|
-
/** 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. */
|
|
126557
126557
|
start_date_recurrence_rule?: string | undefined
|
|
126558
|
-
/** 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. */
|
|
126559
126559
|
end_date_recurrence_rule?: string | undefined
|
|
126560
126560
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126561
126561
|
time_zone?: string | undefined
|
|
@@ -128292,28 +128292,28 @@ export type Routes = {
|
|
|
128292
128292
|
offline_time_frame_options?:
|
|
128293
128293
|
| (
|
|
128294
128294
|
| {
|
|
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
|
|
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`). */
|
|
128296
128296
|
display_name: string
|
|
128297
128297
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
128298
128298
|
min_duration?: string | undefined
|
|
128299
128299
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
128300
128300
|
max_duration?: string | undefined
|
|
128301
|
-
/** 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`. */
|
|
128302
128302
|
matching_start_end_time?: true | undefined
|
|
128303
|
-
/** Fixed
|
|
128303
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
128304
128304
|
time_pairs?:
|
|
128305
128305
|
| {
|
|
128306
|
-
/** Label for the
|
|
128306
|
+
/** Label for the start/end time pairing. */
|
|
128307
128307
|
display_name: string
|
|
128308
|
-
/**
|
|
128309
|
-
|
|
128310
|
-
/**
|
|
128311
|
-
|
|
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
|
|
128312
128312
|
}[]
|
|
128313
128313
|
| undefined
|
|
128314
|
-
/** 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. */
|
|
128315
128315
|
start_date_recurrence_rule?: string | undefined
|
|
128316
|
-
/** 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. */
|
|
128317
128317
|
end_date_recurrence_rule?: string | undefined
|
|
128318
128318
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
128319
128319
|
time_zone?: string | undefined
|
|
@@ -128325,28 +128325,28 @@ export type Routes = {
|
|
|
128325
128325
|
online_time_frame_options?:
|
|
128326
128326
|
| (
|
|
128327
128327
|
| {
|
|
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
|
|
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`). */
|
|
128329
128329
|
display_name: string
|
|
128330
128330
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
128331
128331
|
min_duration?: string | undefined
|
|
128332
128332
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
128333
128333
|
max_duration?: string | undefined
|
|
128334
|
-
/** 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`. */
|
|
128335
128335
|
matching_start_end_time?: true | undefined
|
|
128336
|
-
/** Fixed
|
|
128336
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
128337
128337
|
time_pairs?:
|
|
128338
128338
|
| {
|
|
128339
|
-
/** Label for the
|
|
128339
|
+
/** Label for the start/end time pairing. */
|
|
128340
128340
|
display_name: string
|
|
128341
|
-
/**
|
|
128342
|
-
|
|
128343
|
-
/**
|
|
128344
|
-
|
|
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
|
|
128345
128345
|
}[]
|
|
128346
128346
|
| undefined
|
|
128347
|
-
/** 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. */
|
|
128348
128348
|
start_date_recurrence_rule?: string | undefined
|
|
128349
|
-
/** 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. */
|
|
128350
128350
|
end_date_recurrence_rule?: string | undefined
|
|
128351
128351
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
128352
128352
|
time_zone?: string | undefined
|
|
@@ -131510,28 +131510,28 @@ export type Routes = {
|
|
|
131510
131510
|
offline_time_frame_options?:
|
|
131511
131511
|
| (
|
|
131512
131512
|
| {
|
|
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
|
|
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`). */
|
|
131514
131514
|
display_name: string
|
|
131515
131515
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
131516
131516
|
min_duration?: string | undefined
|
|
131517
131517
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
131518
131518
|
max_duration?: string | undefined
|
|
131519
|
-
/** 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`. */
|
|
131520
131520
|
matching_start_end_time?: true | undefined
|
|
131521
|
-
/** Fixed
|
|
131521
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
131522
131522
|
time_pairs?:
|
|
131523
131523
|
| {
|
|
131524
|
-
/** Label for the
|
|
131524
|
+
/** Label for the start/end time pairing. */
|
|
131525
131525
|
display_name: string
|
|
131526
|
-
/**
|
|
131527
|
-
|
|
131528
|
-
/**
|
|
131529
|
-
|
|
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
|
|
131530
131530
|
}[]
|
|
131531
131531
|
| undefined
|
|
131532
|
-
/** 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. */
|
|
131533
131533
|
start_date_recurrence_rule?: string | undefined
|
|
131534
|
-
/** 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. */
|
|
131535
131535
|
end_date_recurrence_rule?: string | undefined
|
|
131536
131536
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
131537
131537
|
time_zone?: string | undefined
|
|
@@ -131543,28 +131543,28 @@ export type Routes = {
|
|
|
131543
131543
|
online_time_frame_options?:
|
|
131544
131544
|
| (
|
|
131545
131545
|
| {
|
|
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
|
|
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`). */
|
|
131547
131547
|
display_name: string
|
|
131548
131548
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
131549
131549
|
min_duration?: string | undefined
|
|
131550
131550
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
131551
131551
|
max_duration?: string | undefined
|
|
131552
|
-
/** 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`. */
|
|
131553
131553
|
matching_start_end_time?: true | undefined
|
|
131554
|
-
/** Fixed
|
|
131554
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
131555
131555
|
time_pairs?:
|
|
131556
131556
|
| {
|
|
131557
|
-
/** Label for the
|
|
131557
|
+
/** Label for the start/end time pairing. */
|
|
131558
131558
|
display_name: string
|
|
131559
|
-
/**
|
|
131560
|
-
|
|
131561
|
-
/**
|
|
131562
|
-
|
|
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
|
|
131563
131563
|
}[]
|
|
131564
131564
|
| undefined
|
|
131565
|
-
/** 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. */
|
|
131566
131566
|
start_date_recurrence_rule?: string | undefined
|
|
131567
|
-
/** 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. */
|
|
131568
131568
|
end_date_recurrence_rule?: string | undefined
|
|
131569
131569
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
131570
131570
|
time_zone?: string | undefined
|