@seamapi/types 1.931.0 → 1.933.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12536,52 +12536,52 @@ export type Routes = {
12536
12536
  supported_code_lengths?: (number[] | undefined) | undefined;
12537
12537
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
12538
12538
  offline_time_frame_options?: ({
12539
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
12539
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
12540
12540
  display_name: string;
12541
12541
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
12542
12542
  min_duration?: string | undefined;
12543
12543
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
12544
12544
  max_duration?: string | undefined;
12545
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12545
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12546
12546
  matching_start_end_time?: true | undefined;
12547
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12547
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12548
12548
  time_pairs?: {
12549
- /** Label for the check-in/check-out time pairing. */
12549
+ /** Label for the start/end time pairing. */
12550
12550
  display_name: string;
12551
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12552
- check_in_time: string;
12553
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
12554
- check_out_time: string;
12551
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12552
+ start_time: string;
12553
+ /** 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. */
12554
+ end_time: string;
12555
12555
  }[] | undefined;
12556
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12556
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12557
12557
  start_date_recurrence_rule?: string | undefined;
12558
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12558
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12559
12559
  end_date_recurrence_rule?: string | undefined;
12560
12560
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
12561
12561
  time_zone?: string | undefined;
12562
12562
  }[] | undefined) | undefined;
12563
12563
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
12564
12564
  online_time_frame_options?: ({
12565
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
12565
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
12566
12566
  display_name: string;
12567
12567
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
12568
12568
  min_duration?: string | undefined;
12569
12569
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
12570
12570
  max_duration?: string | undefined;
12571
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12571
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
12572
12572
  matching_start_end_time?: true | undefined;
12573
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12573
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
12574
12574
  time_pairs?: {
12575
- /** Label for the check-in/check-out time pairing. */
12575
+ /** Label for the start/end time pairing. */
12576
12576
  display_name: string;
12577
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12578
- check_in_time: string;
12579
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
12580
- check_out_time: string;
12577
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
12578
+ start_time: string;
12579
+ /** 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. */
12580
+ end_time: string;
12581
12581
  }[] | undefined;
12582
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12582
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12583
12583
  start_date_recurrence_rule?: string | undefined;
12584
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12584
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
12585
12585
  end_date_recurrence_rule?: string | undefined;
12586
12586
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
12587
12587
  time_zone?: string | undefined;
@@ -19236,52 +19236,52 @@ export type Routes = {
19236
19236
  supported_code_lengths?: (number[] | undefined) | undefined;
19237
19237
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
19238
19238
  offline_time_frame_options?: ({
19239
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
19239
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
19240
19240
  display_name: string;
19241
19241
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
19242
19242
  min_duration?: string | undefined;
19243
19243
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
19244
19244
  max_duration?: string | undefined;
19245
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19245
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19246
19246
  matching_start_end_time?: true | undefined;
19247
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19247
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19248
19248
  time_pairs?: {
19249
- /** Label for the check-in/check-out time pairing. */
19249
+ /** Label for the start/end time pairing. */
19250
19250
  display_name: string;
19251
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19252
- check_in_time: string;
19253
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
19254
- check_out_time: string;
19251
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19252
+ start_time: string;
19253
+ /** 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. */
19254
+ end_time: string;
19255
19255
  }[] | undefined;
19256
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19256
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19257
19257
  start_date_recurrence_rule?: string | undefined;
19258
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19258
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19259
19259
  end_date_recurrence_rule?: string | undefined;
19260
19260
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
19261
19261
  time_zone?: string | undefined;
19262
19262
  }[] | undefined) | undefined;
19263
19263
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
19264
19264
  online_time_frame_options?: ({
19265
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
19265
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
19266
19266
  display_name: string;
19267
19267
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
19268
19268
  min_duration?: string | undefined;
19269
19269
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
19270
19270
  max_duration?: string | undefined;
19271
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19271
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
19272
19272
  matching_start_end_time?: true | undefined;
19273
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19273
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
19274
19274
  time_pairs?: {
19275
- /** Label for the check-in/check-out time pairing. */
19275
+ /** Label for the start/end time pairing. */
19276
19276
  display_name: string;
19277
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19278
- check_in_time: string;
19279
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
19280
- check_out_time: string;
19277
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
19278
+ start_time: string;
19279
+ /** 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. */
19280
+ end_time: string;
19281
19281
  }[] | undefined;
19282
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19282
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19283
19283
  start_date_recurrence_rule?: string | undefined;
19284
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19284
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
19285
19285
  end_date_recurrence_rule?: string | undefined;
19286
19286
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
19287
19287
  time_zone?: string | undefined;
@@ -41708,52 +41708,52 @@ export type Routes = {
41708
41708
  supported_code_lengths?: (number[] | undefined) | undefined;
41709
41709
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
41710
41710
  offline_time_frame_options?: ({
41711
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
41711
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
41712
41712
  display_name: string;
41713
41713
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
41714
41714
  min_duration?: string | undefined;
41715
41715
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
41716
41716
  max_duration?: string | undefined;
41717
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41717
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41718
41718
  matching_start_end_time?: true | undefined;
41719
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41719
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41720
41720
  time_pairs?: {
41721
- /** Label for the check-in/check-out time pairing. */
41721
+ /** Label for the start/end time pairing. */
41722
41722
  display_name: string;
41723
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41724
- check_in_time: string;
41725
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
41726
- check_out_time: string;
41723
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41724
+ start_time: string;
41725
+ /** 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. */
41726
+ end_time: string;
41727
41727
  }[] | undefined;
41728
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41728
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41729
41729
  start_date_recurrence_rule?: string | undefined;
41730
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41730
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41731
41731
  end_date_recurrence_rule?: string | undefined;
41732
41732
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
41733
41733
  time_zone?: string | undefined;
41734
41734
  }[] | undefined) | undefined;
41735
41735
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
41736
41736
  online_time_frame_options?: ({
41737
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
41737
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
41738
41738
  display_name: string;
41739
41739
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
41740
41740
  min_duration?: string | undefined;
41741
41741
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
41742
41742
  max_duration?: string | undefined;
41743
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41743
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
41744
41744
  matching_start_end_time?: true | undefined;
41745
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41745
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
41746
41746
  time_pairs?: {
41747
- /** Label for the check-in/check-out time pairing. */
41747
+ /** Label for the start/end time pairing. */
41748
41748
  display_name: string;
41749
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41750
- check_in_time: string;
41751
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
41752
- check_out_time: string;
41749
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
41750
+ start_time: string;
41751
+ /** 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. */
41752
+ end_time: string;
41753
41753
  }[] | undefined;
41754
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41754
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41755
41755
  start_date_recurrence_rule?: string | undefined;
41756
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41756
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
41757
41757
  end_date_recurrence_rule?: string | undefined;
41758
41758
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
41759
41759
  time_zone?: string | undefined;
@@ -43202,52 +43202,52 @@ export type Routes = {
43202
43202
  supported_code_lengths?: (number[] | undefined) | undefined;
43203
43203
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
43204
43204
  offline_time_frame_options?: ({
43205
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
43205
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
43206
43206
  display_name: string;
43207
43207
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
43208
43208
  min_duration?: string | undefined;
43209
43209
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
43210
43210
  max_duration?: string | undefined;
43211
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43211
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43212
43212
  matching_start_end_time?: true | undefined;
43213
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43213
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43214
43214
  time_pairs?: {
43215
- /** Label for the check-in/check-out time pairing. */
43215
+ /** Label for the start/end time pairing. */
43216
43216
  display_name: string;
43217
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43218
- check_in_time: string;
43219
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
43220
- check_out_time: string;
43217
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43218
+ start_time: string;
43219
+ /** 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. */
43220
+ end_time: string;
43221
43221
  }[] | undefined;
43222
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43222
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43223
43223
  start_date_recurrence_rule?: string | undefined;
43224
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43224
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43225
43225
  end_date_recurrence_rule?: string | undefined;
43226
43226
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
43227
43227
  time_zone?: string | undefined;
43228
43228
  }[] | undefined) | undefined;
43229
43229
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
43230
43230
  online_time_frame_options?: ({
43231
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
43231
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
43232
43232
  display_name: string;
43233
43233
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
43234
43234
  min_duration?: string | undefined;
43235
43235
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
43236
43236
  max_duration?: string | undefined;
43237
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43237
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
43238
43238
  matching_start_end_time?: true | undefined;
43239
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43239
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
43240
43240
  time_pairs?: {
43241
- /** Label for the check-in/check-out time pairing. */
43241
+ /** Label for the start/end time pairing. */
43242
43242
  display_name: string;
43243
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43244
- check_in_time: string;
43245
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
43246
- check_out_time: string;
43243
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
43244
+ start_time: string;
43245
+ /** 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. */
43246
+ end_time: string;
43247
43247
  }[] | undefined;
43248
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43248
+ /** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43249
43249
  start_date_recurrence_rule?: string | undefined;
43250
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43250
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
43251
43251
  end_date_recurrence_rule?: string | undefined;
43252
43252
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
43253
43253
  time_zone?: string | undefined;
@@ -47740,6 +47740,10 @@ export type Routes = {
47740
47740
  event_type: 'lock.locked';
47741
47741
  /** ID of the access code that was used to lock the device. */
47742
47742
  access_code_id?: string | undefined;
47743
+ /**
47744
+ Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
47745
+ */
47746
+ code?: string | undefined;
47743
47747
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
47744
47748
  access_code_is_managed?: boolean | undefined;
47745
47749
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
@@ -47780,6 +47784,10 @@ export type Routes = {
47780
47784
  event_type: 'lock.unlocked';
47781
47785
  /** ID of the access code that was used to unlock the affected device. */
47782
47786
  access_code_id?: string | undefined;
47787
+ /**
47788
+ Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
47789
+ */
47790
+ code?: string | undefined;
47783
47791
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
47784
47792
  access_code_is_managed?: boolean | undefined;
47785
47793
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
@@ -50777,6 +50785,10 @@ export type Routes = {
50777
50785
  event_type: 'lock.locked';
50778
50786
  /** ID of the access code that was used to lock the device. */
50779
50787
  access_code_id?: string | undefined;
50788
+ /**
50789
+ Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
50790
+ */
50791
+ code?: string | undefined;
50780
50792
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
50781
50793
  access_code_is_managed?: boolean | undefined;
50782
50794
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
@@ -50817,6 +50829,10 @@ export type Routes = {
50817
50829
  event_type: 'lock.unlocked';
50818
50830
  /** ID of the access code that was used to unlock the affected device. */
50819
50831
  access_code_id?: string | undefined;
50832
+ /**
50833
+ Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
50834
+ */
50835
+ code?: string | undefined;
50820
50836
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
50821
50837
  access_code_is_managed?: boolean | undefined;
50822
50838
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
@@ -53747,52 +53763,52 @@ export type Routes = {
53747
53763
  supported_code_lengths?: (number[] | undefined) | undefined;
53748
53764
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
53749
53765
  offline_time_frame_options?: ({
53750
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
53766
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
53751
53767
  display_name: string;
53752
53768
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
53753
53769
  min_duration?: string | undefined;
53754
53770
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
53755
53771
  max_duration?: string | undefined;
53756
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53772
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53757
53773
  matching_start_end_time?: true | undefined;
53758
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53774
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53759
53775
  time_pairs?: {
53760
- /** Label for the check-in/check-out time pairing. */
53776
+ /** Label for the start/end time pairing. */
53761
53777
  display_name: string;
53762
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53763
- check_in_time: string;
53764
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
53765
- check_out_time: string;
53778
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53779
+ start_time: string;
53780
+ /** 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. */
53781
+ end_time: string;
53766
53782
  }[] | undefined;
53767
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53783
+ /** 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. */
53768
53784
  start_date_recurrence_rule?: string | undefined;
53769
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53785
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53770
53786
  end_date_recurrence_rule?: string | undefined;
53771
53787
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
53772
53788
  time_zone?: string | undefined;
53773
53789
  }[] | undefined) | undefined;
53774
53790
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
53775
53791
  online_time_frame_options?: ({
53776
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
53792
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
53777
53793
  display_name: string;
53778
53794
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
53779
53795
  min_duration?: string | undefined;
53780
53796
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
53781
53797
  max_duration?: string | undefined;
53782
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53798
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
53783
53799
  matching_start_end_time?: true | undefined;
53784
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53800
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
53785
53801
  time_pairs?: {
53786
- /** Label for the check-in/check-out time pairing. */
53802
+ /** Label for the start/end time pairing. */
53787
53803
  display_name: string;
53788
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53789
- check_in_time: string;
53790
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
53791
- check_out_time: string;
53804
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
53805
+ start_time: string;
53806
+ /** 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. */
53807
+ end_time: string;
53792
53808
  }[] | undefined;
53793
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53809
+ /** 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. */
53794
53810
  start_date_recurrence_rule?: string | undefined;
53795
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53811
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
53796
53812
  end_date_recurrence_rule?: string | undefined;
53797
53813
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
53798
53814
  time_zone?: string | undefined;
@@ -55191,52 +55207,52 @@ export type Routes = {
55191
55207
  supported_code_lengths?: (number[] | undefined) | undefined;
55192
55208
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
55193
55209
  offline_time_frame_options?: ({
55194
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
55210
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
55195
55211
  display_name: string;
55196
55212
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
55197
55213
  min_duration?: string | undefined;
55198
55214
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
55199
55215
  max_duration?: string | undefined;
55200
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55216
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55201
55217
  matching_start_end_time?: true | undefined;
55202
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55218
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55203
55219
  time_pairs?: {
55204
- /** Label for the check-in/check-out time pairing. */
55220
+ /** Label for the start/end time pairing. */
55205
55221
  display_name: string;
55206
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55207
- check_in_time: string;
55208
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
55209
- check_out_time: string;
55222
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55223
+ start_time: string;
55224
+ /** 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. */
55225
+ end_time: string;
55210
55226
  }[] | undefined;
55211
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55227
+ /** 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. */
55212
55228
  start_date_recurrence_rule?: string | undefined;
55213
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55229
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55214
55230
  end_date_recurrence_rule?: string | undefined;
55215
55231
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
55216
55232
  time_zone?: string | undefined;
55217
55233
  }[] | undefined) | undefined;
55218
55234
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
55219
55235
  online_time_frame_options?: ({
55220
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
55236
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
55221
55237
  display_name: string;
55222
55238
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
55223
55239
  min_duration?: string | undefined;
55224
55240
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
55225
55241
  max_duration?: string | undefined;
55226
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55242
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
55227
55243
  matching_start_end_time?: true | undefined;
55228
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55244
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
55229
55245
  time_pairs?: {
55230
- /** Label for the check-in/check-out time pairing. */
55246
+ /** Label for the start/end time pairing. */
55231
55247
  display_name: string;
55232
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55233
- check_in_time: string;
55234
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
55235
- check_out_time: string;
55248
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
55249
+ start_time: string;
55250
+ /** 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. */
55251
+ end_time: string;
55236
55252
  }[] | undefined;
55237
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55253
+ /** 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. */
55238
55254
  start_date_recurrence_rule?: string | undefined;
55239
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55255
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
55240
55256
  end_date_recurrence_rule?: string | undefined;
55241
55257
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
55242
55258
  time_zone?: string | undefined;
@@ -56685,52 +56701,52 @@ export type Routes = {
56685
56701
  supported_code_lengths?: (number[] | undefined) | undefined;
56686
56702
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
56687
56703
  offline_time_frame_options?: ({
56688
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
56704
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
56689
56705
  display_name: string;
56690
56706
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
56691
56707
  min_duration?: string | undefined;
56692
56708
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
56693
56709
  max_duration?: string | undefined;
56694
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56710
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56695
56711
  matching_start_end_time?: true | undefined;
56696
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56712
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56697
56713
  time_pairs?: {
56698
- /** Label for the check-in/check-out time pairing. */
56714
+ /** Label for the start/end time pairing. */
56699
56715
  display_name: string;
56700
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56701
- check_in_time: string;
56702
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
56703
- check_out_time: string;
56716
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56717
+ start_time: string;
56718
+ /** 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. */
56719
+ end_time: string;
56704
56720
  }[] | undefined;
56705
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56721
+ /** 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. */
56706
56722
  start_date_recurrence_rule?: string | undefined;
56707
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56723
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56708
56724
  end_date_recurrence_rule?: string | undefined;
56709
56725
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
56710
56726
  time_zone?: string | undefined;
56711
56727
  }[] | undefined) | undefined;
56712
56728
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
56713
56729
  online_time_frame_options?: ({
56714
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
56730
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
56715
56731
  display_name: string;
56716
56732
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
56717
56733
  min_duration?: string | undefined;
56718
56734
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
56719
56735
  max_duration?: string | undefined;
56720
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56736
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
56721
56737
  matching_start_end_time?: true | undefined;
56722
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56738
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
56723
56739
  time_pairs?: {
56724
- /** Label for the check-in/check-out time pairing. */
56740
+ /** Label for the start/end time pairing. */
56725
56741
  display_name: string;
56726
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56727
- check_in_time: string;
56728
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
56729
- check_out_time: string;
56742
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
56743
+ start_time: string;
56744
+ /** 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. */
56745
+ end_time: string;
56730
56746
  }[] | undefined;
56731
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56747
+ /** 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. */
56732
56748
  start_date_recurrence_rule?: string | undefined;
56733
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56749
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
56734
56750
  end_date_recurrence_rule?: string | undefined;
56735
56751
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
56736
56752
  time_zone?: string | undefined;
@@ -58128,52 +58144,52 @@ export type Routes = {
58128
58144
  supported_code_lengths?: (number[] | undefined) | undefined;
58129
58145
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
58130
58146
  offline_time_frame_options?: ({
58131
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
58147
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
58132
58148
  display_name: string;
58133
58149
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
58134
58150
  min_duration?: string | undefined;
58135
58151
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
58136
58152
  max_duration?: string | undefined;
58137
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58153
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58138
58154
  matching_start_end_time?: true | undefined;
58139
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58155
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58140
58156
  time_pairs?: {
58141
- /** Label for the check-in/check-out time pairing. */
58157
+ /** Label for the start/end time pairing. */
58142
58158
  display_name: string;
58143
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58144
- check_in_time: string;
58145
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
58146
- check_out_time: string;
58159
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58160
+ start_time: string;
58161
+ /** 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. */
58162
+ end_time: string;
58147
58163
  }[] | undefined;
58148
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58164
+ /** 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. */
58149
58165
  start_date_recurrence_rule?: string | undefined;
58150
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58166
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58151
58167
  end_date_recurrence_rule?: string | undefined;
58152
58168
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
58153
58169
  time_zone?: string | undefined;
58154
58170
  }[] | undefined) | undefined;
58155
58171
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
58156
58172
  online_time_frame_options?: ({
58157
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
58173
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
58158
58174
  display_name: string;
58159
58175
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
58160
58176
  min_duration?: string | undefined;
58161
58177
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
58162
58178
  max_duration?: string | undefined;
58163
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58179
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
58164
58180
  matching_start_end_time?: true | undefined;
58165
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58181
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
58166
58182
  time_pairs?: {
58167
- /** Label for the check-in/check-out time pairing. */
58183
+ /** Label for the start/end time pairing. */
58168
58184
  display_name: string;
58169
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58170
- check_in_time: string;
58171
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
58172
- check_out_time: string;
58185
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
58186
+ start_time: string;
58187
+ /** 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. */
58188
+ end_time: string;
58173
58189
  }[] | undefined;
58174
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58190
+ /** 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. */
58175
58191
  start_date_recurrence_rule?: string | undefined;
58176
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58192
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
58177
58193
  end_date_recurrence_rule?: string | undefined;
58178
58194
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
58179
58195
  time_zone?: string | undefined;
@@ -66348,52 +66364,52 @@ export type Routes = {
66348
66364
  supported_code_lengths?: (number[] | undefined) | undefined;
66349
66365
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
66350
66366
  offline_time_frame_options?: ({
66351
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
66367
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
66352
66368
  display_name: string;
66353
66369
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66354
66370
  min_duration?: string | undefined;
66355
66371
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66356
66372
  max_duration?: string | undefined;
66357
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66373
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66358
66374
  matching_start_end_time?: true | undefined;
66359
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66375
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66360
66376
  time_pairs?: {
66361
- /** Label for the check-in/check-out time pairing. */
66377
+ /** Label for the start/end time pairing. */
66362
66378
  display_name: string;
66363
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66364
- check_in_time: string;
66365
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
66366
- check_out_time: string;
66379
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66380
+ start_time: string;
66381
+ /** 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. */
66382
+ end_time: string;
66367
66383
  }[] | undefined;
66368
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66384
+ /** 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. */
66369
66385
  start_date_recurrence_rule?: string | undefined;
66370
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66386
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66371
66387
  end_date_recurrence_rule?: string | undefined;
66372
66388
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66373
66389
  time_zone?: string | undefined;
66374
66390
  }[] | undefined) | undefined;
66375
66391
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
66376
66392
  online_time_frame_options?: ({
66377
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
66393
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
66378
66394
  display_name: string;
66379
66395
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
66380
66396
  min_duration?: string | undefined;
66381
66397
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
66382
66398
  max_duration?: string | undefined;
66383
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66399
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
66384
66400
  matching_start_end_time?: true | undefined;
66385
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66401
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
66386
66402
  time_pairs?: {
66387
- /** Label for the check-in/check-out time pairing. */
66403
+ /** Label for the start/end time pairing. */
66388
66404
  display_name: string;
66389
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66390
- check_in_time: string;
66391
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
66392
- check_out_time: string;
66405
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
66406
+ start_time: string;
66407
+ /** 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. */
66408
+ end_time: string;
66393
66409
  }[] | undefined;
66394
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66410
+ /** 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. */
66395
66411
  start_date_recurrence_rule?: string | undefined;
66396
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66412
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
66397
66413
  end_date_recurrence_rule?: string | undefined;
66398
66414
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
66399
66415
  time_zone?: string | undefined;
@@ -67791,52 +67807,52 @@ export type Routes = {
67791
67807
  supported_code_lengths?: (number[] | undefined) | undefined;
67792
67808
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
67793
67809
  offline_time_frame_options?: ({
67794
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
67810
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
67795
67811
  display_name: string;
67796
67812
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
67797
67813
  min_duration?: string | undefined;
67798
67814
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
67799
67815
  max_duration?: string | undefined;
67800
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67816
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67801
67817
  matching_start_end_time?: true | undefined;
67802
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67818
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67803
67819
  time_pairs?: {
67804
- /** Label for the check-in/check-out time pairing. */
67820
+ /** Label for the start/end time pairing. */
67805
67821
  display_name: string;
67806
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67807
- check_in_time: string;
67808
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
67809
- check_out_time: string;
67822
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67823
+ start_time: string;
67824
+ /** 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. */
67825
+ end_time: string;
67810
67826
  }[] | undefined;
67811
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67827
+ /** 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. */
67812
67828
  start_date_recurrence_rule?: string | undefined;
67813
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67829
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67814
67830
  end_date_recurrence_rule?: string | undefined;
67815
67831
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
67816
67832
  time_zone?: string | undefined;
67817
67833
  }[] | undefined) | undefined;
67818
67834
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
67819
67835
  online_time_frame_options?: ({
67820
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
67836
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
67821
67837
  display_name: string;
67822
67838
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
67823
67839
  min_duration?: string | undefined;
67824
67840
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
67825
67841
  max_duration?: string | undefined;
67826
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67842
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
67827
67843
  matching_start_end_time?: true | undefined;
67828
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67844
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
67829
67845
  time_pairs?: {
67830
- /** Label for the check-in/check-out time pairing. */
67846
+ /** Label for the start/end time pairing. */
67831
67847
  display_name: string;
67832
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67833
- check_in_time: string;
67834
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
67835
- check_out_time: string;
67848
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
67849
+ start_time: string;
67850
+ /** 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. */
67851
+ end_time: string;
67836
67852
  }[] | undefined;
67837
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67853
+ /** 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. */
67838
67854
  start_date_recurrence_rule?: string | undefined;
67839
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67855
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
67840
67856
  end_date_recurrence_rule?: string | undefined;
67841
67857
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
67842
67858
  time_zone?: string | undefined;
@@ -79962,6 +79978,10 @@ export type Routes = {
79962
79978
  event_type: 'lock.locked';
79963
79979
  /** ID of the access code that was used to lock the device. */
79964
79980
  access_code_id?: string | undefined;
79981
+ /**
79982
+ Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
79983
+ */
79984
+ code?: string | undefined;
79965
79985
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
79966
79986
  access_code_is_managed?: boolean | undefined;
79967
79987
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
@@ -80002,6 +80022,10 @@ export type Routes = {
80002
80022
  event_type: 'lock.unlocked';
80003
80023
  /** ID of the access code that was used to unlock the affected device. */
80004
80024
  access_code_id?: string | undefined;
80025
+ /**
80026
+ Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
80027
+ */
80028
+ code?: string | undefined;
80005
80029
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
80006
80030
  access_code_is_managed?: boolean | undefined;
80007
80031
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */
@@ -83295,52 +83319,52 @@ export type Routes = {
83295
83319
  supported_code_lengths?: (number[] | undefined) | undefined;
83296
83320
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
83297
83321
  offline_time_frame_options?: ({
83298
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
83322
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
83299
83323
  display_name: string;
83300
83324
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
83301
83325
  min_duration?: string | undefined;
83302
83326
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
83303
83327
  max_duration?: string | undefined;
83304
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83328
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83305
83329
  matching_start_end_time?: true | undefined;
83306
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83330
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83307
83331
  time_pairs?: {
83308
- /** Label for the check-in/check-out time pairing. */
83332
+ /** Label for the start/end time pairing. */
83309
83333
  display_name: string;
83310
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83311
- check_in_time: string;
83312
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
83313
- check_out_time: string;
83334
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83335
+ start_time: string;
83336
+ /** 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. */
83337
+ end_time: string;
83314
83338
  }[] | undefined;
83315
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83339
+ /** 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. */
83316
83340
  start_date_recurrence_rule?: string | undefined;
83317
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83341
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83318
83342
  end_date_recurrence_rule?: string | undefined;
83319
83343
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
83320
83344
  time_zone?: string | undefined;
83321
83345
  }[] | undefined) | undefined;
83322
83346
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
83323
83347
  online_time_frame_options?: ({
83324
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
83348
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
83325
83349
  display_name: string;
83326
83350
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
83327
83351
  min_duration?: string | undefined;
83328
83352
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
83329
83353
  max_duration?: string | undefined;
83330
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83354
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
83331
83355
  matching_start_end_time?: true | undefined;
83332
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83356
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
83333
83357
  time_pairs?: {
83334
- /** Label for the check-in/check-out time pairing. */
83358
+ /** Label for the start/end time pairing. */
83335
83359
  display_name: string;
83336
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83337
- check_in_time: string;
83338
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
83339
- check_out_time: string;
83360
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
83361
+ start_time: string;
83362
+ /** 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. */
83363
+ end_time: string;
83340
83364
  }[] | undefined;
83341
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83365
+ /** 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. */
83342
83366
  start_date_recurrence_rule?: string | undefined;
83343
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83367
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
83344
83368
  end_date_recurrence_rule?: string | undefined;
83345
83369
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
83346
83370
  time_zone?: string | undefined;
@@ -90746,52 +90770,52 @@ export type Routes = {
90746
90770
  supported_code_lengths?: (number[] | undefined) | undefined;
90747
90771
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
90748
90772
  offline_time_frame_options?: ({
90749
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
90773
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
90750
90774
  display_name: string;
90751
90775
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
90752
90776
  min_duration?: string | undefined;
90753
90777
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
90754
90778
  max_duration?: string | undefined;
90755
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90779
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90756
90780
  matching_start_end_time?: true | undefined;
90757
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90781
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90758
90782
  time_pairs?: {
90759
- /** Label for the check-in/check-out time pairing. */
90783
+ /** Label for the start/end time pairing. */
90760
90784
  display_name: string;
90761
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90762
- check_in_time: string;
90763
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
90764
- check_out_time: string;
90785
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90786
+ start_time: string;
90787
+ /** 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. */
90788
+ end_time: string;
90765
90789
  }[] | undefined;
90766
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90790
+ /** 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. */
90767
90791
  start_date_recurrence_rule?: string | undefined;
90768
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90792
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90769
90793
  end_date_recurrence_rule?: string | undefined;
90770
90794
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
90771
90795
  time_zone?: string | undefined;
90772
90796
  }[] | undefined) | undefined;
90773
90797
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
90774
90798
  online_time_frame_options?: ({
90775
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
90799
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
90776
90800
  display_name: string;
90777
90801
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
90778
90802
  min_duration?: string | undefined;
90779
90803
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
90780
90804
  max_duration?: string | undefined;
90781
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90805
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
90782
90806
  matching_start_end_time?: true | undefined;
90783
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90807
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
90784
90808
  time_pairs?: {
90785
- /** Label for the check-in/check-out time pairing. */
90809
+ /** Label for the start/end time pairing. */
90786
90810
  display_name: string;
90787
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90788
- check_in_time: string;
90789
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
90790
- check_out_time: string;
90811
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
90812
+ start_time: string;
90813
+ /** 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. */
90814
+ end_time: string;
90791
90815
  }[] | undefined;
90792
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90816
+ /** 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. */
90793
90817
  start_date_recurrence_rule?: string | undefined;
90794
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90818
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
90795
90819
  end_date_recurrence_rule?: string | undefined;
90796
90820
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
90797
90821
  time_zone?: string | undefined;
@@ -95616,52 +95640,52 @@ export type Routes = {
95616
95640
  supported_code_lengths?: (number[] | undefined) | undefined;
95617
95641
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
95618
95642
  offline_time_frame_options?: ({
95619
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
95643
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
95620
95644
  display_name: string;
95621
95645
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
95622
95646
  min_duration?: string | undefined;
95623
95647
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
95624
95648
  max_duration?: string | undefined;
95625
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95649
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95626
95650
  matching_start_end_time?: true | undefined;
95627
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95651
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95628
95652
  time_pairs?: {
95629
- /** Label for the check-in/check-out time pairing. */
95653
+ /** Label for the start/end time pairing. */
95630
95654
  display_name: string;
95631
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95632
- check_in_time: string;
95633
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
95634
- check_out_time: string;
95655
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95656
+ start_time: string;
95657
+ /** 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. */
95658
+ end_time: string;
95635
95659
  }[] | undefined;
95636
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95660
+ /** 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. */
95637
95661
  start_date_recurrence_rule?: string | undefined;
95638
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95662
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95639
95663
  end_date_recurrence_rule?: string | undefined;
95640
95664
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
95641
95665
  time_zone?: string | undefined;
95642
95666
  }[] | undefined) | undefined;
95643
95667
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
95644
95668
  online_time_frame_options?: ({
95645
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
95669
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
95646
95670
  display_name: string;
95647
95671
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
95648
95672
  min_duration?: string | undefined;
95649
95673
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
95650
95674
  max_duration?: string | undefined;
95651
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95675
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
95652
95676
  matching_start_end_time?: true | undefined;
95653
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95677
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
95654
95678
  time_pairs?: {
95655
- /** Label for the check-in/check-out time pairing. */
95679
+ /** Label for the start/end time pairing. */
95656
95680
  display_name: string;
95657
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95658
- check_in_time: string;
95659
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
95660
- check_out_time: string;
95681
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
95682
+ start_time: string;
95683
+ /** 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. */
95684
+ end_time: string;
95661
95685
  }[] | undefined;
95662
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95686
+ /** 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. */
95663
95687
  start_date_recurrence_rule?: string | undefined;
95664
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95688
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
95665
95689
  end_date_recurrence_rule?: string | undefined;
95666
95690
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
95667
95691
  time_zone?: string | undefined;
@@ -97059,52 +97083,52 @@ export type Routes = {
97059
97083
  supported_code_lengths?: (number[] | undefined) | undefined;
97060
97084
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
97061
97085
  offline_time_frame_options?: ({
97062
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
97086
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
97063
97087
  display_name: string;
97064
97088
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
97065
97089
  min_duration?: string | undefined;
97066
97090
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
97067
97091
  max_duration?: string | undefined;
97068
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97092
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97069
97093
  matching_start_end_time?: true | undefined;
97070
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97094
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97071
97095
  time_pairs?: {
97072
- /** Label for the check-in/check-out time pairing. */
97096
+ /** Label for the start/end time pairing. */
97073
97097
  display_name: string;
97074
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97075
- check_in_time: string;
97076
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
97077
- check_out_time: string;
97098
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97099
+ start_time: string;
97100
+ /** 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. */
97101
+ end_time: string;
97078
97102
  }[] | undefined;
97079
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97103
+ /** 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. */
97080
97104
  start_date_recurrence_rule?: string | undefined;
97081
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97105
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97082
97106
  end_date_recurrence_rule?: string | undefined;
97083
97107
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
97084
97108
  time_zone?: string | undefined;
97085
97109
  }[] | undefined) | undefined;
97086
97110
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
97087
97111
  online_time_frame_options?: ({
97088
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
97112
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
97089
97113
  display_name: string;
97090
97114
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
97091
97115
  min_duration?: string | undefined;
97092
97116
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
97093
97117
  max_duration?: string | undefined;
97094
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97118
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
97095
97119
  matching_start_end_time?: true | undefined;
97096
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97120
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
97097
97121
  time_pairs?: {
97098
- /** Label for the check-in/check-out time pairing. */
97122
+ /** Label for the start/end time pairing. */
97099
97123
  display_name: string;
97100
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97101
- check_in_time: string;
97102
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
97103
- check_out_time: string;
97124
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
97125
+ start_time: string;
97126
+ /** 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. */
97127
+ end_time: string;
97104
97128
  }[] | undefined;
97105
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97129
+ /** 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. */
97106
97130
  start_date_recurrence_rule?: string | undefined;
97107
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97131
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
97108
97132
  end_date_recurrence_rule?: string | undefined;
97109
97133
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
97110
97134
  time_zone?: string | undefined;
@@ -106218,52 +106242,52 @@ export type Routes = {
106218
106242
  supported_code_lengths?: (number[] | undefined) | undefined;
106219
106243
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
106220
106244
  offline_time_frame_options?: ({
106221
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
106245
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
106222
106246
  display_name: string;
106223
106247
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
106224
106248
  min_duration?: string | undefined;
106225
106249
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
106226
106250
  max_duration?: string | undefined;
106227
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106251
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106228
106252
  matching_start_end_time?: true | undefined;
106229
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106253
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106230
106254
  time_pairs?: {
106231
- /** Label for the check-in/check-out time pairing. */
106255
+ /** Label for the start/end time pairing. */
106232
106256
  display_name: string;
106233
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106234
- check_in_time: string;
106235
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
106236
- check_out_time: string;
106257
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106258
+ start_time: string;
106259
+ /** 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. */
106260
+ end_time: string;
106237
106261
  }[] | undefined;
106238
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106262
+ /** 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. */
106239
106263
  start_date_recurrence_rule?: string | undefined;
106240
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106264
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106241
106265
  end_date_recurrence_rule?: string | undefined;
106242
106266
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
106243
106267
  time_zone?: string | undefined;
106244
106268
  }[] | undefined) | undefined;
106245
106269
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
106246
106270
  online_time_frame_options?: ({
106247
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
106271
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
106248
106272
  display_name: string;
106249
106273
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
106250
106274
  min_duration?: string | undefined;
106251
106275
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
106252
106276
  max_duration?: string | undefined;
106253
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106277
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
106254
106278
  matching_start_end_time?: true | undefined;
106255
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106279
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
106256
106280
  time_pairs?: {
106257
- /** Label for the check-in/check-out time pairing. */
106281
+ /** Label for the start/end time pairing. */
106258
106282
  display_name: string;
106259
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106260
- check_in_time: string;
106261
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
106262
- check_out_time: string;
106283
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
106284
+ start_time: string;
106285
+ /** 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. */
106286
+ end_time: string;
106263
106287
  }[] | undefined;
106264
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106288
+ /** 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. */
106265
106289
  start_date_recurrence_rule?: string | undefined;
106266
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106290
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
106267
106291
  end_date_recurrence_rule?: string | undefined;
106268
106292
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
106269
106293
  time_zone?: string | undefined;
@@ -107663,52 +107687,52 @@ export type Routes = {
107663
107687
  supported_code_lengths?: (number[] | undefined) | undefined;
107664
107688
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
107665
107689
  offline_time_frame_options?: ({
107666
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
107690
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
107667
107691
  display_name: string;
107668
107692
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
107669
107693
  min_duration?: string | undefined;
107670
107694
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
107671
107695
  max_duration?: string | undefined;
107672
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107696
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107673
107697
  matching_start_end_time?: true | undefined;
107674
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107698
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107675
107699
  time_pairs?: {
107676
- /** Label for the check-in/check-out time pairing. */
107700
+ /** Label for the start/end time pairing. */
107677
107701
  display_name: string;
107678
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107679
- check_in_time: string;
107680
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
107681
- check_out_time: string;
107702
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107703
+ start_time: string;
107704
+ /** 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. */
107705
+ end_time: string;
107682
107706
  }[] | undefined;
107683
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107707
+ /** 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. */
107684
107708
  start_date_recurrence_rule?: string | undefined;
107685
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107709
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107686
107710
  end_date_recurrence_rule?: string | undefined;
107687
107711
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
107688
107712
  time_zone?: string | undefined;
107689
107713
  }[] | undefined) | undefined;
107690
107714
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
107691
107715
  online_time_frame_options?: ({
107692
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
107716
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
107693
107717
  display_name: string;
107694
107718
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
107695
107719
  min_duration?: string | undefined;
107696
107720
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
107697
107721
  max_duration?: string | undefined;
107698
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107722
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
107699
107723
  matching_start_end_time?: true | undefined;
107700
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107724
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
107701
107725
  time_pairs?: {
107702
- /** Label for the check-in/check-out time pairing. */
107726
+ /** Label for the start/end time pairing. */
107703
107727
  display_name: string;
107704
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107705
- check_in_time: string;
107706
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
107707
- check_out_time: string;
107728
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
107729
+ start_time: string;
107730
+ /** 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. */
107731
+ end_time: string;
107708
107732
  }[] | undefined;
107709
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107733
+ /** 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. */
107710
107734
  start_date_recurrence_rule?: string | undefined;
107711
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107735
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
107712
107736
  end_date_recurrence_rule?: string | undefined;
107713
107737
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
107714
107738
  time_zone?: string | undefined;
@@ -110363,52 +110387,52 @@ export type Routes = {
110363
110387
  supported_code_lengths?: (number[] | undefined) | undefined;
110364
110388
  /** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
110365
110389
  offline_time_frame_options?: ({
110366
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
110390
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
110367
110391
  display_name: string;
110368
110392
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
110369
110393
  min_duration?: string | undefined;
110370
110394
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
110371
110395
  max_duration?: string | undefined;
110372
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110396
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110373
110397
  matching_start_end_time?: true | undefined;
110374
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110398
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110375
110399
  time_pairs?: {
110376
- /** Label for the check-in/check-out time pairing. */
110400
+ /** Label for the start/end time pairing. */
110377
110401
  display_name: string;
110378
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110379
- check_in_time: string;
110380
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
110381
- check_out_time: string;
110402
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110403
+ start_time: string;
110404
+ /** 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. */
110405
+ end_time: string;
110382
110406
  }[] | undefined;
110383
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110407
+ /** 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. */
110384
110408
  start_date_recurrence_rule?: string | undefined;
110385
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110409
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110386
110410
  end_date_recurrence_rule?: string | undefined;
110387
110411
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
110388
110412
  time_zone?: string | undefined;
110389
110413
  }[] | undefined) | undefined;
110390
110414
  /** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
110391
110415
  online_time_frame_options?: ({
110392
- /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed check-in times`). */
110416
+ /** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
110393
110417
  display_name: string;
110394
110418
  /** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
110395
110419
  min_duration?: string | undefined;
110396
110420
  /** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
110397
110421
  max_duration?: string | undefined;
110398
- /** When `true`, the check-in and check-out must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110422
+ /** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
110399
110423
  matching_start_end_time?: true | undefined;
110400
- /** Fixed check-in/check-out time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110424
+ /** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
110401
110425
  time_pairs?: {
110402
- /** Label for the check-in/check-out time pairing. */
110426
+ /** Label for the start/end time pairing. */
110403
110427
  display_name: string;
110404
- /** Check-in time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110405
- check_in_time: string;
110406
- /** Check-out time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. A `check_out_time` earlier on the clock than `check_in_time` means check-out falls on a later date. */
110407
- check_out_time: string;
110428
+ /** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
110429
+ start_time: string;
110430
+ /** 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. */
110431
+ end_time: string;
110408
110432
  }[] | undefined;
110409
- /** iCalendar recurrence rule (RRULE) that the check-in date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110433
+ /** 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. */
110410
110434
  start_date_recurrence_rule?: string | undefined;
110411
- /** iCalendar recurrence rule (RRULE) that the check-out date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110435
+ /** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
110412
110436
  end_date_recurrence_rule?: string | undefined;
110413
110437
  /** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
110414
110438
  time_zone?: string | undefined;
@@ -117520,6 +117544,10 @@ export type Routes = {
117520
117544
  event_type: 'lock.locked';
117521
117545
  /** ID of the access code that was used to lock the device. */
117522
117546
  access_code_id?: string | undefined;
117547
+ /**
117548
+ Code (PIN) that was used to lock the device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
117549
+ */
117550
+ code?: string | undefined;
117523
117551
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
117524
117552
  access_code_is_managed?: boolean | undefined;
117525
117553
  /** ID of the Seam action attempt that triggered this lock. Present only when the lock was initiated through Seam (via a `LOCK_DOOR` action attempt). */
@@ -117560,6 +117588,10 @@ export type Routes = {
117560
117588
  event_type: 'lock.unlocked';
117561
117589
  /** ID of the access code that was used to unlock the affected device. */
117562
117590
  access_code_id?: string | undefined;
117591
+ /**
117592
+ Code (PIN) that was used to unlock the affected device, if known. Taken from the matched managed or unmanaged access code, or from the code reported by the provider when no access code matched.
117593
+ */
117594
+ code?: string | undefined;
117563
117595
  /** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
117564
117596
  access_code_is_managed?: boolean | undefined;
117565
117597
  /** ID of the Seam action attempt that triggered this unlock. Present only when the unlock was initiated through Seam (via an `UNLOCK_DOOR` action attempt). */