@savvycal/appointments-core 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.cts +669 -568
  2. package/dist/index.d.ts +669 -568
  3. package/package.json +1 -1
package/dist/index.d.cts CHANGED
@@ -995,7 +995,7 @@ interface components {
995
995
  * @example {
996
996
  * "actor": null,
997
997
  * "end_at": {
998
- * "local": "2023-01-01T01:00:00",
998
+ * "local": "2023-01-01T01:00:00-05:00",
999
999
  * "object": "zoned_date_time",
1000
1000
  * "time_zone": "America/New_York",
1001
1001
  * "unix_ts": 1736464800,
@@ -1006,7 +1006,7 @@ interface components {
1006
1006
  * "occurred_at": "2023-01-01T03:00:00Z",
1007
1007
  * "source": "client_ui",
1008
1008
  * "start_at": {
1009
- * "local": "2023-01-01T00:00:00",
1009
+ * "local": "2023-01-01T00:00:00-05:00",
1010
1010
  * "object": "zoned_date_time",
1011
1011
  * "time_zone": "America/New_York",
1012
1012
  * "unix_ts": 1736461200,
@@ -1019,9 +1019,9 @@ interface components {
1019
1019
  actor: string | null;
1020
1020
  /**
1021
1021
  * ZonedDateTime
1022
- * @description An object describing a date/time in local time (naive) and in UTC.
1022
+ * @description An object describing a date/time in local time and in UTC.
1023
1023
  * @example {
1024
- * "local": "2025-03-01T10:00:00",
1024
+ * "local": "2025-03-01T10:00:00-05:00",
1025
1025
  * "object": "zoned_date_time",
1026
1026
  * "time_zone": "America/New_York",
1027
1027
  * "unix_ts": 1736461200,
@@ -1030,8 +1030,9 @@ interface components {
1030
1030
  */
1031
1031
  end_at: {
1032
1032
  /**
1033
- * @description The local date/time in ISO-8601 format (without time zone information).
1034
- * @example 2025-03-01T10:00:00
1033
+ * Format: date-time
1034
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
1035
+ * @example 2025-03-01T10:00:00-05:00
1035
1036
  */
1036
1037
  local: string;
1037
1038
  /**
@@ -1075,9 +1076,9 @@ interface components {
1075
1076
  source: "client_ui" | "dashboard" | "api";
1076
1077
  /**
1077
1078
  * ZonedDateTime
1078
- * @description An object describing a date/time in local time (naive) and in UTC.
1079
+ * @description An object describing a date/time in local time and in UTC.
1079
1080
  * @example {
1080
- * "local": "2025-03-01T10:00:00",
1081
+ * "local": "2025-03-01T10:00:00-05:00",
1081
1082
  * "object": "zoned_date_time",
1082
1083
  * "time_zone": "America/New_York",
1083
1084
  * "unix_ts": 1736461200,
@@ -1086,8 +1087,9 @@ interface components {
1086
1087
  */
1087
1088
  start_at: {
1088
1089
  /**
1089
- * @description The local date/time in ISO-8601 format (without time zone information).
1090
- * @example 2025-03-01T10:00:00
1090
+ * Format: date-time
1091
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
1092
+ * @example 2025-03-01T10:00:00-05:00
1091
1093
  */
1092
1094
  local: string;
1093
1095
  /**
@@ -1123,7 +1125,7 @@ interface components {
1123
1125
  * },
1124
1126
  * "confirmed_at": "2025-03-10T15:30:00Z",
1125
1127
  * "end_at": {
1126
- * "local": "2025-03-01T11:00:00",
1128
+ * "local": "2025-03-01T11:00:00-05:00",
1127
1129
  * "object": "zoned_date_time",
1128
1130
  * "time_zone": "America/New_York",
1129
1131
  * "unix_ts": 1736464800,
@@ -1136,7 +1138,7 @@ interface components {
1136
1138
  * "disabled_message": "Rescheduling is not available within 24 hours of your appointment"
1137
1139
  * },
1138
1140
  * "start_at": {
1139
- * "local": "2025-03-01T10:00:00",
1141
+ * "local": "2025-03-01T10:00:00-05:00",
1140
1142
  * "object": "zoned_date_time",
1141
1143
  * "time_zone": "America/New_York",
1142
1144
  * "unix_ts": 1736461200,
@@ -1160,9 +1162,9 @@ interface components {
1160
1162
  confirmed_at: string | null;
1161
1163
  /**
1162
1164
  * ZonedDateTime
1163
- * @description An object describing a date/time in local time (naive) and in UTC.
1165
+ * @description An object describing a date/time in local time and in UTC.
1164
1166
  * @example {
1165
- * "local": "2025-03-01T10:00:00",
1167
+ * "local": "2025-03-01T10:00:00-05:00",
1166
1168
  * "object": "zoned_date_time",
1167
1169
  * "time_zone": "America/New_York",
1168
1170
  * "unix_ts": 1736461200,
@@ -1171,8 +1173,9 @@ interface components {
1171
1173
  */
1172
1174
  end_at: {
1173
1175
  /**
1174
- * @description The local date/time in ISO-8601 format (without time zone information).
1175
- * @example 2025-03-01T10:00:00
1176
+ * Format: date-time
1177
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
1178
+ * @example 2025-03-01T10:00:00-05:00
1176
1179
  */
1177
1180
  local: string;
1178
1181
  /**
@@ -1213,9 +1216,9 @@ interface components {
1213
1216
  };
1214
1217
  /**
1215
1218
  * ZonedDateTime
1216
- * @description An object describing a date/time in local time (naive) and in UTC.
1219
+ * @description An object describing a date/time in local time and in UTC.
1217
1220
  * @example {
1218
- * "local": "2025-03-01T10:00:00",
1221
+ * "local": "2025-03-01T10:00:00-05:00",
1219
1222
  * "object": "zoned_date_time",
1220
1223
  * "time_zone": "America/New_York",
1221
1224
  * "unix_ts": 1736461200,
@@ -1224,8 +1227,9 @@ interface components {
1224
1227
  */
1225
1228
  start_at: {
1226
1229
  /**
1227
- * @description The local date/time in ISO-8601 format (without time zone information).
1228
- * @example 2025-03-01T10:00:00
1230
+ * Format: date-time
1231
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
1232
+ * @example 2025-03-01T10:00:00-05:00
1229
1233
  */
1230
1234
  local: string;
1231
1235
  /**
@@ -1521,7 +1525,7 @@ interface components {
1521
1525
  * {
1522
1526
  * "actor": null,
1523
1527
  * "end_at": {
1524
- * "local": "2023-01-01T01:00:00",
1528
+ * "local": "2023-01-01T01:00:00-05:00",
1525
1529
  * "object": "zoned_date_time",
1526
1530
  * "time_zone": "America/New_York",
1527
1531
  * "unix_ts": 1736464800,
@@ -1532,7 +1536,7 @@ interface components {
1532
1536
  * "occurred_at": "2023-01-01T03:00:00Z",
1533
1537
  * "source": "client_ui",
1534
1538
  * "start_at": {
1535
- * "local": "2023-01-01T00:00:00",
1539
+ * "local": "2023-01-01T00:00:00-05:00",
1536
1540
  * "object": "zoned_date_time",
1537
1541
  * "time_zone": "America/New_York",
1538
1542
  * "unix_ts": 1736461200,
@@ -1543,7 +1547,7 @@ interface components {
1543
1547
  * "confirmed_at": "2025-03-10T15:30:00Z",
1544
1548
  * "created_at": "2025-03-10T14:30:00Z",
1545
1549
  * "end_at": {
1546
- * "local": "2025-03-01T11:00:00",
1550
+ * "local": "2025-03-01T11:00:00-05:00",
1547
1551
  * "object": "zoned_date_time",
1548
1552
  * "time_zone": "America/New_York",
1549
1553
  * "unix_ts": 1736464800,
@@ -1574,14 +1578,14 @@ interface components {
1574
1578
  * "actor": null,
1575
1579
  * "initiated_by": "client",
1576
1580
  * "new_end_at": {
1577
- * "local": "2023-01-01T01:00:00",
1581
+ * "local": "2023-01-01T01:00:00-05:00",
1578
1582
  * "object": "zoned_date_time",
1579
1583
  * "time_zone": "America/New_York",
1580
1584
  * "unix_ts": 1736464800,
1581
1585
  * "utc": "2023-01-01T04:00:00Z"
1582
1586
  * },
1583
1587
  * "new_start_at": {
1584
- * "local": "2023-01-01T00:00:00",
1588
+ * "local": "2023-01-01T00:00:00-05:00",
1585
1589
  * "object": "zoned_date_time",
1586
1590
  * "time_zone": "America/New_York",
1587
1591
  * "unix_ts": 1736461200,
@@ -1590,14 +1594,14 @@ interface components {
1590
1594
  * "object": "reschedule_event",
1591
1595
  * "occurred_at": "2023-01-01T03:00:00Z",
1592
1596
  * "previous_end_at": {
1593
- * "local": "2023-01-01T01:00:00",
1597
+ * "local": "2023-01-01T01:00:00-05:00",
1594
1598
  * "object": "zoned_date_time",
1595
1599
  * "time_zone": "America/New_York",
1596
1600
  * "unix_ts": 1736464800,
1597
1601
  * "utc": "2023-01-01T04:00:00Z"
1598
1602
  * },
1599
1603
  * "previous_start_at": {
1600
- * "local": "2023-01-01T00:00:00",
1604
+ * "local": "2023-01-01T00:00:00-05:00",
1601
1605
  * "object": "zoned_date_time",
1602
1606
  * "time_zone": "America/New_York",
1603
1607
  * "unix_ts": 1736461200,
@@ -1660,7 +1664,7 @@ interface components {
1660
1664
  * "updated_at": "2025-02-17T17:49:19Z"
1661
1665
  * },
1662
1666
  * "start_at": {
1663
- * "local": "2025-03-01T10:00:00",
1667
+ * "local": "2025-03-01T10:00:00-05:00",
1664
1668
  * "object": "zoned_date_time",
1665
1669
  * "time_zone": "America/New_York",
1666
1670
  * "unix_ts": 1736461200,
@@ -1691,14 +1695,14 @@ interface components {
1691
1695
  * },
1692
1696
  * "previous_attributes": {
1693
1697
  * "end_at": {
1694
- * "local": "2025-03-01T11:00:00",
1698
+ * "local": "2025-03-01T11:00:00-05:00",
1695
1699
  * "object": "zoned_date_time",
1696
1700
  * "time_zone": "America/New_York",
1697
1701
  * "unix_ts": 1736464800,
1698
1702
  * "utc": "2025-03-01T04:00:00Z"
1699
1703
  * },
1700
1704
  * "start_at": {
1701
- * "local": "2025-03-01T10:00:00",
1705
+ * "local": "2025-03-01T10:00:00-05:00",
1702
1706
  * "object": "zoned_date_time",
1703
1707
  * "time_zone": "America/New_York",
1704
1708
  * "unix_ts": 1736461200,
@@ -1759,7 +1763,7 @@ interface components {
1759
1763
  * {
1760
1764
  * "actor": null,
1761
1765
  * "end_at": {
1762
- * "local": "2023-01-01T01:00:00",
1766
+ * "local": "2023-01-01T01:00:00-05:00",
1763
1767
  * "object": "zoned_date_time",
1764
1768
  * "time_zone": "America/New_York",
1765
1769
  * "unix_ts": 1736464800,
@@ -1770,7 +1774,7 @@ interface components {
1770
1774
  * "occurred_at": "2023-01-01T03:00:00Z",
1771
1775
  * "source": "client_ui",
1772
1776
  * "start_at": {
1773
- * "local": "2023-01-01T00:00:00",
1777
+ * "local": "2023-01-01T00:00:00-05:00",
1774
1778
  * "object": "zoned_date_time",
1775
1779
  * "time_zone": "America/New_York",
1776
1780
  * "unix_ts": 1736461200,
@@ -1781,7 +1785,7 @@ interface components {
1781
1785
  * "confirmed_at": "2025-03-10T15:30:00Z",
1782
1786
  * "created_at": "2025-03-10T14:30:00Z",
1783
1787
  * "end_at": {
1784
- * "local": "2025-03-01T11:00:00",
1788
+ * "local": "2025-03-01T11:00:00-05:00",
1785
1789
  * "object": "zoned_date_time",
1786
1790
  * "time_zone": "America/New_York",
1787
1791
  * "unix_ts": 1736464800,
@@ -1812,14 +1816,14 @@ interface components {
1812
1816
  * "actor": null,
1813
1817
  * "initiated_by": "client",
1814
1818
  * "new_end_at": {
1815
- * "local": "2023-01-01T01:00:00",
1819
+ * "local": "2023-01-01T01:00:00-05:00",
1816
1820
  * "object": "zoned_date_time",
1817
1821
  * "time_zone": "America/New_York",
1818
1822
  * "unix_ts": 1736464800,
1819
1823
  * "utc": "2023-01-01T04:00:00Z"
1820
1824
  * },
1821
1825
  * "new_start_at": {
1822
- * "local": "2023-01-01T00:00:00",
1826
+ * "local": "2023-01-01T00:00:00-05:00",
1823
1827
  * "object": "zoned_date_time",
1824
1828
  * "time_zone": "America/New_York",
1825
1829
  * "unix_ts": 1736461200,
@@ -1828,14 +1832,14 @@ interface components {
1828
1832
  * "object": "reschedule_event",
1829
1833
  * "occurred_at": "2023-01-01T03:00:00Z",
1830
1834
  * "previous_end_at": {
1831
- * "local": "2023-01-01T01:00:00",
1835
+ * "local": "2023-01-01T01:00:00-05:00",
1832
1836
  * "object": "zoned_date_time",
1833
1837
  * "time_zone": "America/New_York",
1834
1838
  * "unix_ts": 1736464800,
1835
1839
  * "utc": "2023-01-01T04:00:00Z"
1836
1840
  * },
1837
1841
  * "previous_start_at": {
1838
- * "local": "2023-01-01T00:00:00",
1842
+ * "local": "2023-01-01T00:00:00-05:00",
1839
1843
  * "object": "zoned_date_time",
1840
1844
  * "time_zone": "America/New_York",
1841
1845
  * "unix_ts": 1736461200,
@@ -1898,7 +1902,7 @@ interface components {
1898
1902
  * "updated_at": "2025-02-17T17:49:19Z"
1899
1903
  * },
1900
1904
  * "start_at": {
1901
- * "local": "2025-03-01T10:00:00",
1905
+ * "local": "2025-03-01T10:00:00-05:00",
1902
1906
  * "object": "zoned_date_time",
1903
1907
  * "time_zone": "America/New_York",
1904
1908
  * "unix_ts": 1736461200,
@@ -2087,9 +2091,9 @@ interface components {
2087
2091
  actor: string | null;
2088
2092
  /**
2089
2093
  * ZonedDateTime
2090
- * @description An object describing a date/time in local time (naive) and in UTC.
2094
+ * @description An object describing a date/time in local time and in UTC.
2091
2095
  * @example {
2092
- * "local": "2025-03-01T10:00:00",
2096
+ * "local": "2025-03-01T10:00:00-05:00",
2093
2097
  * "object": "zoned_date_time",
2094
2098
  * "time_zone": "America/New_York",
2095
2099
  * "unix_ts": 1736461200,
@@ -2098,8 +2102,9 @@ interface components {
2098
2102
  */
2099
2103
  end_at: {
2100
2104
  /**
2101
- * @description The local date/time in ISO-8601 format (without time zone information).
2102
- * @example 2025-03-01T10:00:00
2105
+ * Format: date-time
2106
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2107
+ * @example 2025-03-01T10:00:00-05:00
2103
2108
  */
2104
2109
  local: string;
2105
2110
  /**
@@ -2143,9 +2148,9 @@ interface components {
2143
2148
  source: "client_ui" | "dashboard" | "api";
2144
2149
  /**
2145
2150
  * ZonedDateTime
2146
- * @description An object describing a date/time in local time (naive) and in UTC.
2151
+ * @description An object describing a date/time in local time and in UTC.
2147
2152
  * @example {
2148
- * "local": "2025-03-01T10:00:00",
2153
+ * "local": "2025-03-01T10:00:00-05:00",
2149
2154
  * "object": "zoned_date_time",
2150
2155
  * "time_zone": "America/New_York",
2151
2156
  * "unix_ts": 1736461200,
@@ -2154,8 +2159,9 @@ interface components {
2154
2159
  */
2155
2160
  start_at: {
2156
2161
  /**
2157
- * @description The local date/time in ISO-8601 format (without time zone information).
2158
- * @example 2025-03-01T10:00:00
2162
+ * Format: date-time
2163
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2164
+ * @example 2025-03-01T10:00:00-05:00
2159
2165
  */
2160
2166
  local: string;
2161
2167
  /**
@@ -2193,9 +2199,9 @@ interface components {
2193
2199
  created_at: string;
2194
2200
  /**
2195
2201
  * ZonedDateTime
2196
- * @description An object describing a date/time in local time (naive) and in UTC.
2202
+ * @description An object describing a date/time in local time and in UTC.
2197
2203
  * @example {
2198
- * "local": "2025-03-01T10:00:00",
2204
+ * "local": "2025-03-01T10:00:00-05:00",
2199
2205
  * "object": "zoned_date_time",
2200
2206
  * "time_zone": "America/New_York",
2201
2207
  * "unix_ts": 1736461200,
@@ -2204,8 +2210,9 @@ interface components {
2204
2210
  */
2205
2211
  end_at: {
2206
2212
  /**
2207
- * @description The local date/time in ISO-8601 format (without time zone information).
2208
- * @example 2025-03-01T10:00:00
2213
+ * Format: date-time
2214
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2215
+ * @example 2025-03-01T10:00:00-05:00
2209
2216
  */
2210
2217
  local: string;
2211
2218
  /**
@@ -2303,9 +2310,9 @@ interface components {
2303
2310
  initiated_by: "user" | "client";
2304
2311
  /**
2305
2312
  * ZonedDateTime
2306
- * @description An object describing a date/time in local time (naive) and in UTC.
2313
+ * @description An object describing a date/time in local time and in UTC.
2307
2314
  * @example {
2308
- * "local": "2025-03-01T10:00:00",
2315
+ * "local": "2025-03-01T10:00:00-05:00",
2309
2316
  * "object": "zoned_date_time",
2310
2317
  * "time_zone": "America/New_York",
2311
2318
  * "unix_ts": 1736461200,
@@ -2314,8 +2321,9 @@ interface components {
2314
2321
  */
2315
2322
  new_end_at: {
2316
2323
  /**
2317
- * @description The local date/time in ISO-8601 format (without time zone information).
2318
- * @example 2025-03-01T10:00:00
2324
+ * Format: date-time
2325
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2326
+ * @example 2025-03-01T10:00:00-05:00
2319
2327
  */
2320
2328
  local: string;
2321
2329
  /**
@@ -2342,9 +2350,9 @@ interface components {
2342
2350
  };
2343
2351
  /**
2344
2352
  * ZonedDateTime
2345
- * @description An object describing a date/time in local time (naive) and in UTC.
2353
+ * @description An object describing a date/time in local time and in UTC.
2346
2354
  * @example {
2347
- * "local": "2025-03-01T10:00:00",
2355
+ * "local": "2025-03-01T10:00:00-05:00",
2348
2356
  * "object": "zoned_date_time",
2349
2357
  * "time_zone": "America/New_York",
2350
2358
  * "unix_ts": 1736461200,
@@ -2353,8 +2361,9 @@ interface components {
2353
2361
  */
2354
2362
  new_start_at: {
2355
2363
  /**
2356
- * @description The local date/time in ISO-8601 format (without time zone information).
2357
- * @example 2025-03-01T10:00:00
2364
+ * Format: date-time
2365
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2366
+ * @example 2025-03-01T10:00:00-05:00
2358
2367
  */
2359
2368
  local: string;
2360
2369
  /**
@@ -2388,9 +2397,9 @@ interface components {
2388
2397
  occurred_at: string;
2389
2398
  /**
2390
2399
  * ZonedDateTime
2391
- * @description An object describing a date/time in local time (naive) and in UTC.
2400
+ * @description An object describing a date/time in local time and in UTC.
2392
2401
  * @example {
2393
- * "local": "2025-03-01T10:00:00",
2402
+ * "local": "2025-03-01T10:00:00-05:00",
2394
2403
  * "object": "zoned_date_time",
2395
2404
  * "time_zone": "America/New_York",
2396
2405
  * "unix_ts": 1736461200,
@@ -2399,8 +2408,9 @@ interface components {
2399
2408
  */
2400
2409
  previous_end_at: {
2401
2410
  /**
2402
- * @description The local date/time in ISO-8601 format (without time zone information).
2403
- * @example 2025-03-01T10:00:00
2411
+ * Format: date-time
2412
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2413
+ * @example 2025-03-01T10:00:00-05:00
2404
2414
  */
2405
2415
  local: string;
2406
2416
  /**
@@ -2427,9 +2437,9 @@ interface components {
2427
2437
  };
2428
2438
  /**
2429
2439
  * ZonedDateTime
2430
- * @description An object describing a date/time in local time (naive) and in UTC.
2440
+ * @description An object describing a date/time in local time and in UTC.
2431
2441
  * @example {
2432
- * "local": "2025-03-01T10:00:00",
2442
+ * "local": "2025-03-01T10:00:00-05:00",
2433
2443
  * "object": "zoned_date_time",
2434
2444
  * "time_zone": "America/New_York",
2435
2445
  * "unix_ts": 1736461200,
@@ -2438,8 +2448,9 @@ interface components {
2438
2448
  */
2439
2449
  previous_start_at: {
2440
2450
  /**
2441
- * @description The local date/time in ISO-8601 format (without time zone information).
2442
- * @example 2025-03-01T10:00:00
2451
+ * Format: date-time
2452
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2453
+ * @example 2025-03-01T10:00:00-05:00
2443
2454
  */
2444
2455
  local: string;
2445
2456
  /**
@@ -2719,9 +2730,9 @@ interface components {
2719
2730
  };
2720
2731
  /**
2721
2732
  * ZonedDateTime
2722
- * @description An object describing a date/time in local time (naive) and in UTC.
2733
+ * @description An object describing a date/time in local time and in UTC.
2723
2734
  * @example {
2724
- * "local": "2025-03-01T10:00:00",
2735
+ * "local": "2025-03-01T10:00:00-05:00",
2725
2736
  * "object": "zoned_date_time",
2726
2737
  * "time_zone": "America/New_York",
2727
2738
  * "unix_ts": 1736461200,
@@ -2730,8 +2741,9 @@ interface components {
2730
2741
  */
2731
2742
  start_at: {
2732
2743
  /**
2733
- * @description The local date/time in ISO-8601 format (without time zone information).
2734
- * @example 2025-03-01T10:00:00
2744
+ * Format: date-time
2745
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2746
+ * @example 2025-03-01T10:00:00-05:00
2735
2747
  */
2736
2748
  local: string;
2737
2749
  /**
@@ -2787,9 +2799,9 @@ interface components {
2787
2799
  previous_attributes: {
2788
2800
  /**
2789
2801
  * ZonedDateTime
2790
- * @description An object describing a date/time in local time (naive) and in UTC.
2802
+ * @description An object describing a date/time in local time and in UTC.
2791
2803
  * @example {
2792
- * "local": "2025-03-01T10:00:00",
2804
+ * "local": "2025-03-01T10:00:00-05:00",
2793
2805
  * "object": "zoned_date_time",
2794
2806
  * "time_zone": "America/New_York",
2795
2807
  * "unix_ts": 1736461200,
@@ -2798,8 +2810,9 @@ interface components {
2798
2810
  */
2799
2811
  end_at: {
2800
2812
  /**
2801
- * @description The local date/time in ISO-8601 format (without time zone information).
2802
- * @example 2025-03-01T10:00:00
2813
+ * Format: date-time
2814
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2815
+ * @example 2025-03-01T10:00:00-05:00
2803
2816
  */
2804
2817
  local: string;
2805
2818
  /**
@@ -2826,9 +2839,9 @@ interface components {
2826
2839
  };
2827
2840
  /**
2828
2841
  * ZonedDateTime
2829
- * @description An object describing a date/time in local time (naive) and in UTC.
2842
+ * @description An object describing a date/time in local time and in UTC.
2830
2843
  * @example {
2831
- * "local": "2025-03-01T10:00:00",
2844
+ * "local": "2025-03-01T10:00:00-05:00",
2832
2845
  * "object": "zoned_date_time",
2833
2846
  * "time_zone": "America/New_York",
2834
2847
  * "unix_ts": 1736461200,
@@ -2837,8 +2850,9 @@ interface components {
2837
2850
  */
2838
2851
  start_at: {
2839
2852
  /**
2840
- * @description The local date/time in ISO-8601 format (without time zone information).
2841
- * @example 2025-03-01T10:00:00
2853
+ * Format: date-time
2854
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
2855
+ * @example 2025-03-01T10:00:00-05:00
2842
2856
  */
2843
2857
  local: string;
2844
2858
  /**
@@ -3465,14 +3479,14 @@ interface components {
3465
3479
  * "actor": null,
3466
3480
  * "initiated_by": "client",
3467
3481
  * "new_end_at": {
3468
- * "local": "2023-01-01T01:00:00",
3482
+ * "local": "2023-01-01T01:00:00-05:00",
3469
3483
  * "object": "zoned_date_time",
3470
3484
  * "time_zone": "America/New_York",
3471
3485
  * "unix_ts": 1736464800,
3472
3486
  * "utc": "2023-01-01T04:00:00Z"
3473
3487
  * },
3474
3488
  * "new_start_at": {
3475
- * "local": "2023-01-01T00:00:00",
3489
+ * "local": "2023-01-01T00:00:00-05:00",
3476
3490
  * "object": "zoned_date_time",
3477
3491
  * "time_zone": "America/New_York",
3478
3492
  * "unix_ts": 1736461200,
@@ -3481,14 +3495,14 @@ interface components {
3481
3495
  * "object": "reschedule_event",
3482
3496
  * "occurred_at": "2023-01-01T03:00:00Z",
3483
3497
  * "previous_end_at": {
3484
- * "local": "2023-01-01T01:00:00",
3498
+ * "local": "2023-01-01T01:00:00-05:00",
3485
3499
  * "object": "zoned_date_time",
3486
3500
  * "time_zone": "America/New_York",
3487
3501
  * "unix_ts": 1736464800,
3488
3502
  * "utc": "2023-01-01T04:00:00Z"
3489
3503
  * },
3490
3504
  * "previous_start_at": {
3491
- * "local": "2023-01-01T00:00:00",
3505
+ * "local": "2023-01-01T00:00:00-05:00",
3492
3506
  * "object": "zoned_date_time",
3493
3507
  * "time_zone": "America/New_York",
3494
3508
  * "unix_ts": 1736461200,
@@ -3503,9 +3517,9 @@ interface components {
3503
3517
  initiated_by: "user" | "client";
3504
3518
  /**
3505
3519
  * ZonedDateTime
3506
- * @description An object describing a date/time in local time (naive) and in UTC.
3520
+ * @description An object describing a date/time in local time and in UTC.
3507
3521
  * @example {
3508
- * "local": "2025-03-01T10:00:00",
3522
+ * "local": "2025-03-01T10:00:00-05:00",
3509
3523
  * "object": "zoned_date_time",
3510
3524
  * "time_zone": "America/New_York",
3511
3525
  * "unix_ts": 1736461200,
@@ -3514,8 +3528,9 @@ interface components {
3514
3528
  */
3515
3529
  new_end_at: {
3516
3530
  /**
3517
- * @description The local date/time in ISO-8601 format (without time zone information).
3518
- * @example 2025-03-01T10:00:00
3531
+ * Format: date-time
3532
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
3533
+ * @example 2025-03-01T10:00:00-05:00
3519
3534
  */
3520
3535
  local: string;
3521
3536
  /**
@@ -3542,9 +3557,9 @@ interface components {
3542
3557
  };
3543
3558
  /**
3544
3559
  * ZonedDateTime
3545
- * @description An object describing a date/time in local time (naive) and in UTC.
3560
+ * @description An object describing a date/time in local time and in UTC.
3546
3561
  * @example {
3547
- * "local": "2025-03-01T10:00:00",
3562
+ * "local": "2025-03-01T10:00:00-05:00",
3548
3563
  * "object": "zoned_date_time",
3549
3564
  * "time_zone": "America/New_York",
3550
3565
  * "unix_ts": 1736461200,
@@ -3553,8 +3568,9 @@ interface components {
3553
3568
  */
3554
3569
  new_start_at: {
3555
3570
  /**
3556
- * @description The local date/time in ISO-8601 format (without time zone information).
3557
- * @example 2025-03-01T10:00:00
3571
+ * Format: date-time
3572
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
3573
+ * @example 2025-03-01T10:00:00-05:00
3558
3574
  */
3559
3575
  local: string;
3560
3576
  /**
@@ -3588,9 +3604,9 @@ interface components {
3588
3604
  occurred_at: string;
3589
3605
  /**
3590
3606
  * ZonedDateTime
3591
- * @description An object describing a date/time in local time (naive) and in UTC.
3607
+ * @description An object describing a date/time in local time and in UTC.
3592
3608
  * @example {
3593
- * "local": "2025-03-01T10:00:00",
3609
+ * "local": "2025-03-01T10:00:00-05:00",
3594
3610
  * "object": "zoned_date_time",
3595
3611
  * "time_zone": "America/New_York",
3596
3612
  * "unix_ts": 1736461200,
@@ -3599,8 +3615,9 @@ interface components {
3599
3615
  */
3600
3616
  previous_end_at: {
3601
3617
  /**
3602
- * @description The local date/time in ISO-8601 format (without time zone information).
3603
- * @example 2025-03-01T10:00:00
3618
+ * Format: date-time
3619
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
3620
+ * @example 2025-03-01T10:00:00-05:00
3604
3621
  */
3605
3622
  local: string;
3606
3623
  /**
@@ -3627,9 +3644,9 @@ interface components {
3627
3644
  };
3628
3645
  /**
3629
3646
  * ZonedDateTime
3630
- * @description An object describing a date/time in local time (naive) and in UTC.
3647
+ * @description An object describing a date/time in local time and in UTC.
3631
3648
  * @example {
3632
- * "local": "2025-03-01T10:00:00",
3649
+ * "local": "2025-03-01T10:00:00-05:00",
3633
3650
  * "object": "zoned_date_time",
3634
3651
  * "time_zone": "America/New_York",
3635
3652
  * "unix_ts": 1736461200,
@@ -3638,8 +3655,9 @@ interface components {
3638
3655
  */
3639
3656
  previous_start_at: {
3640
3657
  /**
3641
- * @description The local date/time in ISO-8601 format (without time zone information).
3642
- * @example 2025-03-01T10:00:00
3658
+ * Format: date-time
3659
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
3660
+ * @example 2025-03-01T10:00:00-05:00
3643
3661
  */
3644
3662
  local: string;
3645
3663
  /**
@@ -5183,7 +5201,7 @@ interface components {
5183
5201
  * {
5184
5202
  * "actor": null,
5185
5203
  * "end_at": {
5186
- * "local": "2023-01-01T01:00:00",
5204
+ * "local": "2023-01-01T01:00:00-05:00",
5187
5205
  * "object": "zoned_date_time",
5188
5206
  * "time_zone": "America/New_York",
5189
5207
  * "unix_ts": 1736464800,
@@ -5194,7 +5212,7 @@ interface components {
5194
5212
  * "occurred_at": "2023-01-01T03:00:00Z",
5195
5213
  * "source": "client_ui",
5196
5214
  * "start_at": {
5197
- * "local": "2023-01-01T00:00:00",
5215
+ * "local": "2023-01-01T00:00:00-05:00",
5198
5216
  * "object": "zoned_date_time",
5199
5217
  * "time_zone": "America/New_York",
5200
5218
  * "unix_ts": 1736461200,
@@ -5205,7 +5223,7 @@ interface components {
5205
5223
  * "confirmed_at": "2025-03-10T15:30:00Z",
5206
5224
  * "created_at": "2025-03-10T14:30:00Z",
5207
5225
  * "end_at": {
5208
- * "local": "2025-03-01T11:00:00",
5226
+ * "local": "2025-03-01T11:00:00-05:00",
5209
5227
  * "object": "zoned_date_time",
5210
5228
  * "time_zone": "America/New_York",
5211
5229
  * "unix_ts": 1736464800,
@@ -5236,14 +5254,14 @@ interface components {
5236
5254
  * "actor": null,
5237
5255
  * "initiated_by": "client",
5238
5256
  * "new_end_at": {
5239
- * "local": "2023-01-01T01:00:00",
5257
+ * "local": "2023-01-01T01:00:00-05:00",
5240
5258
  * "object": "zoned_date_time",
5241
5259
  * "time_zone": "America/New_York",
5242
5260
  * "unix_ts": 1736464800,
5243
5261
  * "utc": "2023-01-01T04:00:00Z"
5244
5262
  * },
5245
5263
  * "new_start_at": {
5246
- * "local": "2023-01-01T00:00:00",
5264
+ * "local": "2023-01-01T00:00:00-05:00",
5247
5265
  * "object": "zoned_date_time",
5248
5266
  * "time_zone": "America/New_York",
5249
5267
  * "unix_ts": 1736461200,
@@ -5252,14 +5270,14 @@ interface components {
5252
5270
  * "object": "reschedule_event",
5253
5271
  * "occurred_at": "2023-01-01T03:00:00Z",
5254
5272
  * "previous_end_at": {
5255
- * "local": "2023-01-01T01:00:00",
5273
+ * "local": "2023-01-01T01:00:00-05:00",
5256
5274
  * "object": "zoned_date_time",
5257
5275
  * "time_zone": "America/New_York",
5258
5276
  * "unix_ts": 1736464800,
5259
5277
  * "utc": "2023-01-01T04:00:00Z"
5260
5278
  * },
5261
5279
  * "previous_start_at": {
5262
- * "local": "2023-01-01T00:00:00",
5280
+ * "local": "2023-01-01T00:00:00-05:00",
5263
5281
  * "object": "zoned_date_time",
5264
5282
  * "time_zone": "America/New_York",
5265
5283
  * "unix_ts": 1736461200,
@@ -5322,7 +5340,7 @@ interface components {
5322
5340
  * "updated_at": "2025-02-17T17:49:19Z"
5323
5341
  * },
5324
5342
  * "start_at": {
5325
- * "local": "2025-03-01T10:00:00",
5343
+ * "local": "2025-03-01T10:00:00-05:00",
5326
5344
  * "object": "zoned_date_time",
5327
5345
  * "time_zone": "America/New_York",
5328
5346
  * "unix_ts": 1736461200,
@@ -5405,7 +5423,7 @@ interface components {
5405
5423
  * {
5406
5424
  * "actor": null,
5407
5425
  * "end_at": {
5408
- * "local": "2023-01-01T01:00:00",
5426
+ * "local": "2023-01-01T01:00:00-05:00",
5409
5427
  * "object": "zoned_date_time",
5410
5428
  * "time_zone": "America/New_York",
5411
5429
  * "unix_ts": 1736464800,
@@ -5416,7 +5434,7 @@ interface components {
5416
5434
  * "occurred_at": "2023-01-01T03:00:00Z",
5417
5435
  * "source": "client_ui",
5418
5436
  * "start_at": {
5419
- * "local": "2023-01-01T00:00:00",
5437
+ * "local": "2023-01-01T00:00:00-05:00",
5420
5438
  * "object": "zoned_date_time",
5421
5439
  * "time_zone": "America/New_York",
5422
5440
  * "unix_ts": 1736461200,
@@ -5427,7 +5445,7 @@ interface components {
5427
5445
  * "confirmed_at": "2025-03-10T15:30:00Z",
5428
5446
  * "created_at": "2025-03-10T14:30:00Z",
5429
5447
  * "end_at": {
5430
- * "local": "2025-03-01T11:00:00",
5448
+ * "local": "2025-03-01T11:00:00-05:00",
5431
5449
  * "object": "zoned_date_time",
5432
5450
  * "time_zone": "America/New_York",
5433
5451
  * "unix_ts": 1736464800,
@@ -5458,14 +5476,14 @@ interface components {
5458
5476
  * "actor": null,
5459
5477
  * "initiated_by": "client",
5460
5478
  * "new_end_at": {
5461
- * "local": "2023-01-01T01:00:00",
5479
+ * "local": "2023-01-01T01:00:00-05:00",
5462
5480
  * "object": "zoned_date_time",
5463
5481
  * "time_zone": "America/New_York",
5464
5482
  * "unix_ts": 1736464800,
5465
5483
  * "utc": "2023-01-01T04:00:00Z"
5466
5484
  * },
5467
5485
  * "new_start_at": {
5468
- * "local": "2023-01-01T00:00:00",
5486
+ * "local": "2023-01-01T00:00:00-05:00",
5469
5487
  * "object": "zoned_date_time",
5470
5488
  * "time_zone": "America/New_York",
5471
5489
  * "unix_ts": 1736461200,
@@ -5474,14 +5492,14 @@ interface components {
5474
5492
  * "object": "reschedule_event",
5475
5493
  * "occurred_at": "2023-01-01T03:00:00Z",
5476
5494
  * "previous_end_at": {
5477
- * "local": "2023-01-01T01:00:00",
5495
+ * "local": "2023-01-01T01:00:00-05:00",
5478
5496
  * "object": "zoned_date_time",
5479
5497
  * "time_zone": "America/New_York",
5480
5498
  * "unix_ts": 1736464800,
5481
5499
  * "utc": "2023-01-01T04:00:00Z"
5482
5500
  * },
5483
5501
  * "previous_start_at": {
5484
- * "local": "2023-01-01T00:00:00",
5502
+ * "local": "2023-01-01T00:00:00-05:00",
5485
5503
  * "object": "zoned_date_time",
5486
5504
  * "time_zone": "America/New_York",
5487
5505
  * "unix_ts": 1736461200,
@@ -5544,7 +5562,7 @@ interface components {
5544
5562
  * "updated_at": "2025-02-17T17:49:19Z"
5545
5563
  * },
5546
5564
  * "start_at": {
5547
- * "local": "2025-03-01T10:00:00",
5565
+ * "local": "2025-03-01T10:00:00-05:00",
5548
5566
  * "object": "zoned_date_time",
5549
5567
  * "time_zone": "America/New_York",
5550
5568
  * "unix_ts": 1736461200,
@@ -5733,9 +5751,9 @@ interface components {
5733
5751
  actor: string | null;
5734
5752
  /**
5735
5753
  * ZonedDateTime
5736
- * @description An object describing a date/time in local time (naive) and in UTC.
5754
+ * @description An object describing a date/time in local time and in UTC.
5737
5755
  * @example {
5738
- * "local": "2025-03-01T10:00:00",
5756
+ * "local": "2025-03-01T10:00:00-05:00",
5739
5757
  * "object": "zoned_date_time",
5740
5758
  * "time_zone": "America/New_York",
5741
5759
  * "unix_ts": 1736461200,
@@ -5744,8 +5762,9 @@ interface components {
5744
5762
  */
5745
5763
  end_at: {
5746
5764
  /**
5747
- * @description The local date/time in ISO-8601 format (without time zone information).
5748
- * @example 2025-03-01T10:00:00
5765
+ * Format: date-time
5766
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
5767
+ * @example 2025-03-01T10:00:00-05:00
5749
5768
  */
5750
5769
  local: string;
5751
5770
  /**
@@ -5789,9 +5808,9 @@ interface components {
5789
5808
  source: "client_ui" | "dashboard" | "api";
5790
5809
  /**
5791
5810
  * ZonedDateTime
5792
- * @description An object describing a date/time in local time (naive) and in UTC.
5811
+ * @description An object describing a date/time in local time and in UTC.
5793
5812
  * @example {
5794
- * "local": "2025-03-01T10:00:00",
5813
+ * "local": "2025-03-01T10:00:00-05:00",
5795
5814
  * "object": "zoned_date_time",
5796
5815
  * "time_zone": "America/New_York",
5797
5816
  * "unix_ts": 1736461200,
@@ -5800,8 +5819,9 @@ interface components {
5800
5819
  */
5801
5820
  start_at: {
5802
5821
  /**
5803
- * @description The local date/time in ISO-8601 format (without time zone information).
5804
- * @example 2025-03-01T10:00:00
5822
+ * Format: date-time
5823
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
5824
+ * @example 2025-03-01T10:00:00-05:00
5805
5825
  */
5806
5826
  local: string;
5807
5827
  /**
@@ -5839,9 +5859,9 @@ interface components {
5839
5859
  created_at: string;
5840
5860
  /**
5841
5861
  * ZonedDateTime
5842
- * @description An object describing a date/time in local time (naive) and in UTC.
5862
+ * @description An object describing a date/time in local time and in UTC.
5843
5863
  * @example {
5844
- * "local": "2025-03-01T10:00:00",
5864
+ * "local": "2025-03-01T10:00:00-05:00",
5845
5865
  * "object": "zoned_date_time",
5846
5866
  * "time_zone": "America/New_York",
5847
5867
  * "unix_ts": 1736461200,
@@ -5850,8 +5870,9 @@ interface components {
5850
5870
  */
5851
5871
  end_at: {
5852
5872
  /**
5853
- * @description The local date/time in ISO-8601 format (without time zone information).
5854
- * @example 2025-03-01T10:00:00
5873
+ * Format: date-time
5874
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
5875
+ * @example 2025-03-01T10:00:00-05:00
5855
5876
  */
5856
5877
  local: string;
5857
5878
  /**
@@ -5949,9 +5970,9 @@ interface components {
5949
5970
  initiated_by: "user" | "client";
5950
5971
  /**
5951
5972
  * ZonedDateTime
5952
- * @description An object describing a date/time in local time (naive) and in UTC.
5973
+ * @description An object describing a date/time in local time and in UTC.
5953
5974
  * @example {
5954
- * "local": "2025-03-01T10:00:00",
5975
+ * "local": "2025-03-01T10:00:00-05:00",
5955
5976
  * "object": "zoned_date_time",
5956
5977
  * "time_zone": "America/New_York",
5957
5978
  * "unix_ts": 1736461200,
@@ -5960,8 +5981,9 @@ interface components {
5960
5981
  */
5961
5982
  new_end_at: {
5962
5983
  /**
5963
- * @description The local date/time in ISO-8601 format (without time zone information).
5964
- * @example 2025-03-01T10:00:00
5984
+ * Format: date-time
5985
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
5986
+ * @example 2025-03-01T10:00:00-05:00
5965
5987
  */
5966
5988
  local: string;
5967
5989
  /**
@@ -5988,9 +6010,9 @@ interface components {
5988
6010
  };
5989
6011
  /**
5990
6012
  * ZonedDateTime
5991
- * @description An object describing a date/time in local time (naive) and in UTC.
6013
+ * @description An object describing a date/time in local time and in UTC.
5992
6014
  * @example {
5993
- * "local": "2025-03-01T10:00:00",
6015
+ * "local": "2025-03-01T10:00:00-05:00",
5994
6016
  * "object": "zoned_date_time",
5995
6017
  * "time_zone": "America/New_York",
5996
6018
  * "unix_ts": 1736461200,
@@ -5999,8 +6021,9 @@ interface components {
5999
6021
  */
6000
6022
  new_start_at: {
6001
6023
  /**
6002
- * @description The local date/time in ISO-8601 format (without time zone information).
6003
- * @example 2025-03-01T10:00:00
6024
+ * Format: date-time
6025
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
6026
+ * @example 2025-03-01T10:00:00-05:00
6004
6027
  */
6005
6028
  local: string;
6006
6029
  /**
@@ -6034,9 +6057,9 @@ interface components {
6034
6057
  occurred_at: string;
6035
6058
  /**
6036
6059
  * ZonedDateTime
6037
- * @description An object describing a date/time in local time (naive) and in UTC.
6060
+ * @description An object describing a date/time in local time and in UTC.
6038
6061
  * @example {
6039
- * "local": "2025-03-01T10:00:00",
6062
+ * "local": "2025-03-01T10:00:00-05:00",
6040
6063
  * "object": "zoned_date_time",
6041
6064
  * "time_zone": "America/New_York",
6042
6065
  * "unix_ts": 1736461200,
@@ -6045,8 +6068,9 @@ interface components {
6045
6068
  */
6046
6069
  previous_end_at: {
6047
6070
  /**
6048
- * @description The local date/time in ISO-8601 format (without time zone information).
6049
- * @example 2025-03-01T10:00:00
6071
+ * Format: date-time
6072
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
6073
+ * @example 2025-03-01T10:00:00-05:00
6050
6074
  */
6051
6075
  local: string;
6052
6076
  /**
@@ -6073,9 +6097,9 @@ interface components {
6073
6097
  };
6074
6098
  /**
6075
6099
  * ZonedDateTime
6076
- * @description An object describing a date/time in local time (naive) and in UTC.
6100
+ * @description An object describing a date/time in local time and in UTC.
6077
6101
  * @example {
6078
- * "local": "2025-03-01T10:00:00",
6102
+ * "local": "2025-03-01T10:00:00-05:00",
6079
6103
  * "object": "zoned_date_time",
6080
6104
  * "time_zone": "America/New_York",
6081
6105
  * "unix_ts": 1736461200,
@@ -6084,8 +6108,9 @@ interface components {
6084
6108
  */
6085
6109
  previous_start_at: {
6086
6110
  /**
6087
- * @description The local date/time in ISO-8601 format (without time zone information).
6088
- * @example 2025-03-01T10:00:00
6111
+ * Format: date-time
6112
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
6113
+ * @example 2025-03-01T10:00:00-05:00
6089
6114
  */
6090
6115
  local: string;
6091
6116
  /**
@@ -6365,9 +6390,9 @@ interface components {
6365
6390
  };
6366
6391
  /**
6367
6392
  * ZonedDateTime
6368
- * @description An object describing a date/time in local time (naive) and in UTC.
6393
+ * @description An object describing a date/time in local time and in UTC.
6369
6394
  * @example {
6370
- * "local": "2025-03-01T10:00:00",
6395
+ * "local": "2025-03-01T10:00:00-05:00",
6371
6396
  * "object": "zoned_date_time",
6372
6397
  * "time_zone": "America/New_York",
6373
6398
  * "unix_ts": 1736461200,
@@ -6376,8 +6401,9 @@ interface components {
6376
6401
  */
6377
6402
  start_at: {
6378
6403
  /**
6379
- * @description The local date/time in ISO-8601 format (without time zone information).
6380
- * @example 2025-03-01T10:00:00
6404
+ * Format: date-time
6405
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
6406
+ * @example 2025-03-01T10:00:00-05:00
6381
6407
  */
6382
6408
  local: string;
6383
6409
  /**
@@ -6656,7 +6682,7 @@ interface components {
6656
6682
  * {
6657
6683
  * "actor": null,
6658
6684
  * "end_at": {
6659
- * "local": "2023-01-01T01:00:00",
6685
+ * "local": "2023-01-01T01:00:00-05:00",
6660
6686
  * "object": "zoned_date_time",
6661
6687
  * "time_zone": "America/New_York",
6662
6688
  * "unix_ts": 1736464800,
@@ -6667,7 +6693,7 @@ interface components {
6667
6693
  * "occurred_at": "2023-01-01T03:00:00Z",
6668
6694
  * "source": "client_ui",
6669
6695
  * "start_at": {
6670
- * "local": "2023-01-01T00:00:00",
6696
+ * "local": "2023-01-01T00:00:00-05:00",
6671
6697
  * "object": "zoned_date_time",
6672
6698
  * "time_zone": "America/New_York",
6673
6699
  * "unix_ts": 1736461200,
@@ -6678,7 +6704,7 @@ interface components {
6678
6704
  * "confirmed_at": "2025-03-10T15:30:00Z",
6679
6705
  * "created_at": "2025-03-10T14:30:00Z",
6680
6706
  * "end_at": {
6681
- * "local": "2025-03-01T11:00:00",
6707
+ * "local": "2025-03-01T11:00:00-05:00",
6682
6708
  * "object": "zoned_date_time",
6683
6709
  * "time_zone": "America/New_York",
6684
6710
  * "unix_ts": 1736464800,
@@ -6709,14 +6735,14 @@ interface components {
6709
6735
  * "actor": null,
6710
6736
  * "initiated_by": "client",
6711
6737
  * "new_end_at": {
6712
- * "local": "2023-01-01T01:00:00",
6738
+ * "local": "2023-01-01T01:00:00-05:00",
6713
6739
  * "object": "zoned_date_time",
6714
6740
  * "time_zone": "America/New_York",
6715
6741
  * "unix_ts": 1736464800,
6716
6742
  * "utc": "2023-01-01T04:00:00Z"
6717
6743
  * },
6718
6744
  * "new_start_at": {
6719
- * "local": "2023-01-01T00:00:00",
6745
+ * "local": "2023-01-01T00:00:00-05:00",
6720
6746
  * "object": "zoned_date_time",
6721
6747
  * "time_zone": "America/New_York",
6722
6748
  * "unix_ts": 1736461200,
@@ -6725,14 +6751,14 @@ interface components {
6725
6751
  * "object": "reschedule_event",
6726
6752
  * "occurred_at": "2023-01-01T03:00:00Z",
6727
6753
  * "previous_end_at": {
6728
- * "local": "2023-01-01T01:00:00",
6754
+ * "local": "2023-01-01T01:00:00-05:00",
6729
6755
  * "object": "zoned_date_time",
6730
6756
  * "time_zone": "America/New_York",
6731
6757
  * "unix_ts": 1736464800,
6732
6758
  * "utc": "2023-01-01T04:00:00Z"
6733
6759
  * },
6734
6760
  * "previous_start_at": {
6735
- * "local": "2023-01-01T00:00:00",
6761
+ * "local": "2023-01-01T00:00:00-05:00",
6736
6762
  * "object": "zoned_date_time",
6737
6763
  * "time_zone": "America/New_York",
6738
6764
  * "unix_ts": 1736461200,
@@ -6795,7 +6821,7 @@ interface components {
6795
6821
  * "updated_at": "2025-02-17T17:49:19Z"
6796
6822
  * },
6797
6823
  * "start_at": {
6798
- * "local": "2025-03-01T10:00:00",
6824
+ * "local": "2025-03-01T10:00:00-05:00",
6799
6825
  * "object": "zoned_date_time",
6800
6826
  * "time_zone": "America/New_York",
6801
6827
  * "unix_ts": 1736461200,
@@ -7018,7 +7044,7 @@ interface components {
7018
7044
  * {
7019
7045
  * "actor": null,
7020
7046
  * "end_at": {
7021
- * "local": "2023-01-01T01:00:00",
7047
+ * "local": "2023-01-01T01:00:00-05:00",
7022
7048
  * "object": "zoned_date_time",
7023
7049
  * "time_zone": "America/New_York",
7024
7050
  * "unix_ts": 1736464800,
@@ -7029,7 +7055,7 @@ interface components {
7029
7055
  * "occurred_at": "2023-01-01T03:00:00Z",
7030
7056
  * "source": "client_ui",
7031
7057
  * "start_at": {
7032
- * "local": "2023-01-01T00:00:00",
7058
+ * "local": "2023-01-01T00:00:00-05:00",
7033
7059
  * "object": "zoned_date_time",
7034
7060
  * "time_zone": "America/New_York",
7035
7061
  * "unix_ts": 1736461200,
@@ -7040,7 +7066,7 @@ interface components {
7040
7066
  * "confirmed_at": "2025-03-10T15:30:00Z",
7041
7067
  * "created_at": "2025-03-10T14:30:00Z",
7042
7068
  * "end_at": {
7043
- * "local": "2025-03-01T11:00:00",
7069
+ * "local": "2025-03-01T11:00:00-05:00",
7044
7070
  * "object": "zoned_date_time",
7045
7071
  * "time_zone": "America/New_York",
7046
7072
  * "unix_ts": 1736464800,
@@ -7071,14 +7097,14 @@ interface components {
7071
7097
  * "actor": null,
7072
7098
  * "initiated_by": "client",
7073
7099
  * "new_end_at": {
7074
- * "local": "2023-01-01T01:00:00",
7100
+ * "local": "2023-01-01T01:00:00-05:00",
7075
7101
  * "object": "zoned_date_time",
7076
7102
  * "time_zone": "America/New_York",
7077
7103
  * "unix_ts": 1736464800,
7078
7104
  * "utc": "2023-01-01T04:00:00Z"
7079
7105
  * },
7080
7106
  * "new_start_at": {
7081
- * "local": "2023-01-01T00:00:00",
7107
+ * "local": "2023-01-01T00:00:00-05:00",
7082
7108
  * "object": "zoned_date_time",
7083
7109
  * "time_zone": "America/New_York",
7084
7110
  * "unix_ts": 1736461200,
@@ -7087,14 +7113,14 @@ interface components {
7087
7113
  * "object": "reschedule_event",
7088
7114
  * "occurred_at": "2023-01-01T03:00:00Z",
7089
7115
  * "previous_end_at": {
7090
- * "local": "2023-01-01T01:00:00",
7116
+ * "local": "2023-01-01T01:00:00-05:00",
7091
7117
  * "object": "zoned_date_time",
7092
7118
  * "time_zone": "America/New_York",
7093
7119
  * "unix_ts": 1736464800,
7094
7120
  * "utc": "2023-01-01T04:00:00Z"
7095
7121
  * },
7096
7122
  * "previous_start_at": {
7097
- * "local": "2023-01-01T00:00:00",
7123
+ * "local": "2023-01-01T00:00:00-05:00",
7098
7124
  * "object": "zoned_date_time",
7099
7125
  * "time_zone": "America/New_York",
7100
7126
  * "unix_ts": 1736461200,
@@ -7157,7 +7183,7 @@ interface components {
7157
7183
  * "updated_at": "2025-02-17T17:49:19Z"
7158
7184
  * },
7159
7185
  * "start_at": {
7160
- * "local": "2025-03-01T10:00:00",
7186
+ * "local": "2025-03-01T10:00:00-05:00",
7161
7187
  * "object": "zoned_date_time",
7162
7188
  * "time_zone": "America/New_York",
7163
7189
  * "unix_ts": 1736461200,
@@ -7346,9 +7372,9 @@ interface components {
7346
7372
  actor: string | null;
7347
7373
  /**
7348
7374
  * ZonedDateTime
7349
- * @description An object describing a date/time in local time (naive) and in UTC.
7375
+ * @description An object describing a date/time in local time and in UTC.
7350
7376
  * @example {
7351
- * "local": "2025-03-01T10:00:00",
7377
+ * "local": "2025-03-01T10:00:00-05:00",
7352
7378
  * "object": "zoned_date_time",
7353
7379
  * "time_zone": "America/New_York",
7354
7380
  * "unix_ts": 1736461200,
@@ -7357,8 +7383,9 @@ interface components {
7357
7383
  */
7358
7384
  end_at: {
7359
7385
  /**
7360
- * @description The local date/time in ISO-8601 format (without time zone information).
7361
- * @example 2025-03-01T10:00:00
7386
+ * Format: date-time
7387
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7388
+ * @example 2025-03-01T10:00:00-05:00
7362
7389
  */
7363
7390
  local: string;
7364
7391
  /**
@@ -7402,9 +7429,9 @@ interface components {
7402
7429
  source: "client_ui" | "dashboard" | "api";
7403
7430
  /**
7404
7431
  * ZonedDateTime
7405
- * @description An object describing a date/time in local time (naive) and in UTC.
7432
+ * @description An object describing a date/time in local time and in UTC.
7406
7433
  * @example {
7407
- * "local": "2025-03-01T10:00:00",
7434
+ * "local": "2025-03-01T10:00:00-05:00",
7408
7435
  * "object": "zoned_date_time",
7409
7436
  * "time_zone": "America/New_York",
7410
7437
  * "unix_ts": 1736461200,
@@ -7413,8 +7440,9 @@ interface components {
7413
7440
  */
7414
7441
  start_at: {
7415
7442
  /**
7416
- * @description The local date/time in ISO-8601 format (without time zone information).
7417
- * @example 2025-03-01T10:00:00
7443
+ * Format: date-time
7444
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7445
+ * @example 2025-03-01T10:00:00-05:00
7418
7446
  */
7419
7447
  local: string;
7420
7448
  /**
@@ -7452,9 +7480,9 @@ interface components {
7452
7480
  created_at: string;
7453
7481
  /**
7454
7482
  * ZonedDateTime
7455
- * @description An object describing a date/time in local time (naive) and in UTC.
7483
+ * @description An object describing a date/time in local time and in UTC.
7456
7484
  * @example {
7457
- * "local": "2025-03-01T10:00:00",
7485
+ * "local": "2025-03-01T10:00:00-05:00",
7458
7486
  * "object": "zoned_date_time",
7459
7487
  * "time_zone": "America/New_York",
7460
7488
  * "unix_ts": 1736461200,
@@ -7463,8 +7491,9 @@ interface components {
7463
7491
  */
7464
7492
  end_at: {
7465
7493
  /**
7466
- * @description The local date/time in ISO-8601 format (without time zone information).
7467
- * @example 2025-03-01T10:00:00
7494
+ * Format: date-time
7495
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7496
+ * @example 2025-03-01T10:00:00-05:00
7468
7497
  */
7469
7498
  local: string;
7470
7499
  /**
@@ -7562,9 +7591,9 @@ interface components {
7562
7591
  initiated_by: "user" | "client";
7563
7592
  /**
7564
7593
  * ZonedDateTime
7565
- * @description An object describing a date/time in local time (naive) and in UTC.
7594
+ * @description An object describing a date/time in local time and in UTC.
7566
7595
  * @example {
7567
- * "local": "2025-03-01T10:00:00",
7596
+ * "local": "2025-03-01T10:00:00-05:00",
7568
7597
  * "object": "zoned_date_time",
7569
7598
  * "time_zone": "America/New_York",
7570
7599
  * "unix_ts": 1736461200,
@@ -7573,8 +7602,9 @@ interface components {
7573
7602
  */
7574
7603
  new_end_at: {
7575
7604
  /**
7576
- * @description The local date/time in ISO-8601 format (without time zone information).
7577
- * @example 2025-03-01T10:00:00
7605
+ * Format: date-time
7606
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7607
+ * @example 2025-03-01T10:00:00-05:00
7578
7608
  */
7579
7609
  local: string;
7580
7610
  /**
@@ -7601,9 +7631,9 @@ interface components {
7601
7631
  };
7602
7632
  /**
7603
7633
  * ZonedDateTime
7604
- * @description An object describing a date/time in local time (naive) and in UTC.
7634
+ * @description An object describing a date/time in local time and in UTC.
7605
7635
  * @example {
7606
- * "local": "2025-03-01T10:00:00",
7636
+ * "local": "2025-03-01T10:00:00-05:00",
7607
7637
  * "object": "zoned_date_time",
7608
7638
  * "time_zone": "America/New_York",
7609
7639
  * "unix_ts": 1736461200,
@@ -7612,8 +7642,9 @@ interface components {
7612
7642
  */
7613
7643
  new_start_at: {
7614
7644
  /**
7615
- * @description The local date/time in ISO-8601 format (without time zone information).
7616
- * @example 2025-03-01T10:00:00
7645
+ * Format: date-time
7646
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7647
+ * @example 2025-03-01T10:00:00-05:00
7617
7648
  */
7618
7649
  local: string;
7619
7650
  /**
@@ -7647,9 +7678,9 @@ interface components {
7647
7678
  occurred_at: string;
7648
7679
  /**
7649
7680
  * ZonedDateTime
7650
- * @description An object describing a date/time in local time (naive) and in UTC.
7681
+ * @description An object describing a date/time in local time and in UTC.
7651
7682
  * @example {
7652
- * "local": "2025-03-01T10:00:00",
7683
+ * "local": "2025-03-01T10:00:00-05:00",
7653
7684
  * "object": "zoned_date_time",
7654
7685
  * "time_zone": "America/New_York",
7655
7686
  * "unix_ts": 1736461200,
@@ -7658,8 +7689,9 @@ interface components {
7658
7689
  */
7659
7690
  previous_end_at: {
7660
7691
  /**
7661
- * @description The local date/time in ISO-8601 format (without time zone information).
7662
- * @example 2025-03-01T10:00:00
7692
+ * Format: date-time
7693
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7694
+ * @example 2025-03-01T10:00:00-05:00
7663
7695
  */
7664
7696
  local: string;
7665
7697
  /**
@@ -7686,9 +7718,9 @@ interface components {
7686
7718
  };
7687
7719
  /**
7688
7720
  * ZonedDateTime
7689
- * @description An object describing a date/time in local time (naive) and in UTC.
7721
+ * @description An object describing a date/time in local time and in UTC.
7690
7722
  * @example {
7691
- * "local": "2025-03-01T10:00:00",
7723
+ * "local": "2025-03-01T10:00:00-05:00",
7692
7724
  * "object": "zoned_date_time",
7693
7725
  * "time_zone": "America/New_York",
7694
7726
  * "unix_ts": 1736461200,
@@ -7697,8 +7729,9 @@ interface components {
7697
7729
  */
7698
7730
  previous_start_at: {
7699
7731
  /**
7700
- * @description The local date/time in ISO-8601 format (without time zone information).
7701
- * @example 2025-03-01T10:00:00
7732
+ * Format: date-time
7733
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
7734
+ * @example 2025-03-01T10:00:00-05:00
7702
7735
  */
7703
7736
  local: string;
7704
7737
  /**
@@ -7978,9 +8011,9 @@ interface components {
7978
8011
  };
7979
8012
  /**
7980
8013
  * ZonedDateTime
7981
- * @description An object describing a date/time in local time (naive) and in UTC.
8014
+ * @description An object describing a date/time in local time and in UTC.
7982
8015
  * @example {
7983
- * "local": "2025-03-01T10:00:00",
8016
+ * "local": "2025-03-01T10:00:00-05:00",
7984
8017
  * "object": "zoned_date_time",
7985
8018
  * "time_zone": "America/New_York",
7986
8019
  * "unix_ts": 1736461200,
@@ -7989,8 +8022,9 @@ interface components {
7989
8022
  */
7990
8023
  start_at: {
7991
8024
  /**
7992
- * @description The local date/time in ISO-8601 format (without time zone information).
7993
- * @example 2025-03-01T10:00:00
8025
+ * Format: date-time
8026
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8027
+ * @example 2025-03-01T10:00:00-05:00
7994
8028
  */
7995
8029
  local: string;
7996
8030
  /**
@@ -8099,7 +8133,7 @@ interface components {
8099
8133
  * {
8100
8134
  * "actor": null,
8101
8135
  * "end_at": {
8102
- * "local": "2023-01-01T01:00:00",
8136
+ * "local": "2023-01-01T01:00:00-05:00",
8103
8137
  * "object": "zoned_date_time",
8104
8138
  * "time_zone": "America/New_York",
8105
8139
  * "unix_ts": 1736464800,
@@ -8110,7 +8144,7 @@ interface components {
8110
8144
  * "occurred_at": "2023-01-01T03:00:00Z",
8111
8145
  * "source": "client_ui",
8112
8146
  * "start_at": {
8113
- * "local": "2023-01-01T00:00:00",
8147
+ * "local": "2023-01-01T00:00:00-05:00",
8114
8148
  * "object": "zoned_date_time",
8115
8149
  * "time_zone": "America/New_York",
8116
8150
  * "unix_ts": 1736461200,
@@ -8121,7 +8155,7 @@ interface components {
8121
8155
  * "confirmed_at": "2025-03-10T15:30:00Z",
8122
8156
  * "created_at": "2025-03-10T14:30:00Z",
8123
8157
  * "end_at": {
8124
- * "local": "2025-03-01T11:00:00",
8158
+ * "local": "2025-03-01T11:00:00-05:00",
8125
8159
  * "object": "zoned_date_time",
8126
8160
  * "time_zone": "America/New_York",
8127
8161
  * "unix_ts": 1736464800,
@@ -8152,14 +8186,14 @@ interface components {
8152
8186
  * "actor": null,
8153
8187
  * "initiated_by": "client",
8154
8188
  * "new_end_at": {
8155
- * "local": "2023-01-01T01:00:00",
8189
+ * "local": "2023-01-01T01:00:00-05:00",
8156
8190
  * "object": "zoned_date_time",
8157
8191
  * "time_zone": "America/New_York",
8158
8192
  * "unix_ts": 1736464800,
8159
8193
  * "utc": "2023-01-01T04:00:00Z"
8160
8194
  * },
8161
8195
  * "new_start_at": {
8162
- * "local": "2023-01-01T00:00:00",
8196
+ * "local": "2023-01-01T00:00:00-05:00",
8163
8197
  * "object": "zoned_date_time",
8164
8198
  * "time_zone": "America/New_York",
8165
8199
  * "unix_ts": 1736461200,
@@ -8168,14 +8202,14 @@ interface components {
8168
8202
  * "object": "reschedule_event",
8169
8203
  * "occurred_at": "2023-01-01T03:00:00Z",
8170
8204
  * "previous_end_at": {
8171
- * "local": "2023-01-01T01:00:00",
8205
+ * "local": "2023-01-01T01:00:00-05:00",
8172
8206
  * "object": "zoned_date_time",
8173
8207
  * "time_zone": "America/New_York",
8174
8208
  * "unix_ts": 1736464800,
8175
8209
  * "utc": "2023-01-01T04:00:00Z"
8176
8210
  * },
8177
8211
  * "previous_start_at": {
8178
- * "local": "2023-01-01T00:00:00",
8212
+ * "local": "2023-01-01T00:00:00-05:00",
8179
8213
  * "object": "zoned_date_time",
8180
8214
  * "time_zone": "America/New_York",
8181
8215
  * "unix_ts": 1736461200,
@@ -8238,7 +8272,7 @@ interface components {
8238
8272
  * "updated_at": "2025-02-17T17:49:19Z"
8239
8273
  * },
8240
8274
  * "start_at": {
8241
- * "local": "2025-03-01T10:00:00",
8275
+ * "local": "2025-03-01T10:00:00-05:00",
8242
8276
  * "object": "zoned_date_time",
8243
8277
  * "time_zone": "America/New_York",
8244
8278
  * "unix_ts": 1736461200,
@@ -8427,9 +8461,9 @@ interface components {
8427
8461
  actor: string | null;
8428
8462
  /**
8429
8463
  * ZonedDateTime
8430
- * @description An object describing a date/time in local time (naive) and in UTC.
8464
+ * @description An object describing a date/time in local time and in UTC.
8431
8465
  * @example {
8432
- * "local": "2025-03-01T10:00:00",
8466
+ * "local": "2025-03-01T10:00:00-05:00",
8433
8467
  * "object": "zoned_date_time",
8434
8468
  * "time_zone": "America/New_York",
8435
8469
  * "unix_ts": 1736461200,
@@ -8438,8 +8472,9 @@ interface components {
8438
8472
  */
8439
8473
  end_at: {
8440
8474
  /**
8441
- * @description The local date/time in ISO-8601 format (without time zone information).
8442
- * @example 2025-03-01T10:00:00
8475
+ * Format: date-time
8476
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8477
+ * @example 2025-03-01T10:00:00-05:00
8443
8478
  */
8444
8479
  local: string;
8445
8480
  /**
@@ -8483,9 +8518,9 @@ interface components {
8483
8518
  source: "client_ui" | "dashboard" | "api";
8484
8519
  /**
8485
8520
  * ZonedDateTime
8486
- * @description An object describing a date/time in local time (naive) and in UTC.
8521
+ * @description An object describing a date/time in local time and in UTC.
8487
8522
  * @example {
8488
- * "local": "2025-03-01T10:00:00",
8523
+ * "local": "2025-03-01T10:00:00-05:00",
8489
8524
  * "object": "zoned_date_time",
8490
8525
  * "time_zone": "America/New_York",
8491
8526
  * "unix_ts": 1736461200,
@@ -8494,8 +8529,9 @@ interface components {
8494
8529
  */
8495
8530
  start_at: {
8496
8531
  /**
8497
- * @description The local date/time in ISO-8601 format (without time zone information).
8498
- * @example 2025-03-01T10:00:00
8532
+ * Format: date-time
8533
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8534
+ * @example 2025-03-01T10:00:00-05:00
8499
8535
  */
8500
8536
  local: string;
8501
8537
  /**
@@ -8533,9 +8569,9 @@ interface components {
8533
8569
  created_at: string;
8534
8570
  /**
8535
8571
  * ZonedDateTime
8536
- * @description An object describing a date/time in local time (naive) and in UTC.
8572
+ * @description An object describing a date/time in local time and in UTC.
8537
8573
  * @example {
8538
- * "local": "2025-03-01T10:00:00",
8574
+ * "local": "2025-03-01T10:00:00-05:00",
8539
8575
  * "object": "zoned_date_time",
8540
8576
  * "time_zone": "America/New_York",
8541
8577
  * "unix_ts": 1736461200,
@@ -8544,8 +8580,9 @@ interface components {
8544
8580
  */
8545
8581
  end_at: {
8546
8582
  /**
8547
- * @description The local date/time in ISO-8601 format (without time zone information).
8548
- * @example 2025-03-01T10:00:00
8583
+ * Format: date-time
8584
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8585
+ * @example 2025-03-01T10:00:00-05:00
8549
8586
  */
8550
8587
  local: string;
8551
8588
  /**
@@ -8643,9 +8680,9 @@ interface components {
8643
8680
  initiated_by: "user" | "client";
8644
8681
  /**
8645
8682
  * ZonedDateTime
8646
- * @description An object describing a date/time in local time (naive) and in UTC.
8683
+ * @description An object describing a date/time in local time and in UTC.
8647
8684
  * @example {
8648
- * "local": "2025-03-01T10:00:00",
8685
+ * "local": "2025-03-01T10:00:00-05:00",
8649
8686
  * "object": "zoned_date_time",
8650
8687
  * "time_zone": "America/New_York",
8651
8688
  * "unix_ts": 1736461200,
@@ -8654,8 +8691,9 @@ interface components {
8654
8691
  */
8655
8692
  new_end_at: {
8656
8693
  /**
8657
- * @description The local date/time in ISO-8601 format (without time zone information).
8658
- * @example 2025-03-01T10:00:00
8694
+ * Format: date-time
8695
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8696
+ * @example 2025-03-01T10:00:00-05:00
8659
8697
  */
8660
8698
  local: string;
8661
8699
  /**
@@ -8682,9 +8720,9 @@ interface components {
8682
8720
  };
8683
8721
  /**
8684
8722
  * ZonedDateTime
8685
- * @description An object describing a date/time in local time (naive) and in UTC.
8723
+ * @description An object describing a date/time in local time and in UTC.
8686
8724
  * @example {
8687
- * "local": "2025-03-01T10:00:00",
8725
+ * "local": "2025-03-01T10:00:00-05:00",
8688
8726
  * "object": "zoned_date_time",
8689
8727
  * "time_zone": "America/New_York",
8690
8728
  * "unix_ts": 1736461200,
@@ -8693,8 +8731,9 @@ interface components {
8693
8731
  */
8694
8732
  new_start_at: {
8695
8733
  /**
8696
- * @description The local date/time in ISO-8601 format (without time zone information).
8697
- * @example 2025-03-01T10:00:00
8734
+ * Format: date-time
8735
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8736
+ * @example 2025-03-01T10:00:00-05:00
8698
8737
  */
8699
8738
  local: string;
8700
8739
  /**
@@ -8728,9 +8767,9 @@ interface components {
8728
8767
  occurred_at: string;
8729
8768
  /**
8730
8769
  * ZonedDateTime
8731
- * @description An object describing a date/time in local time (naive) and in UTC.
8770
+ * @description An object describing a date/time in local time and in UTC.
8732
8771
  * @example {
8733
- * "local": "2025-03-01T10:00:00",
8772
+ * "local": "2025-03-01T10:00:00-05:00",
8734
8773
  * "object": "zoned_date_time",
8735
8774
  * "time_zone": "America/New_York",
8736
8775
  * "unix_ts": 1736461200,
@@ -8739,8 +8778,9 @@ interface components {
8739
8778
  */
8740
8779
  previous_end_at: {
8741
8780
  /**
8742
- * @description The local date/time in ISO-8601 format (without time zone information).
8743
- * @example 2025-03-01T10:00:00
8781
+ * Format: date-time
8782
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8783
+ * @example 2025-03-01T10:00:00-05:00
8744
8784
  */
8745
8785
  local: string;
8746
8786
  /**
@@ -8767,9 +8807,9 @@ interface components {
8767
8807
  };
8768
8808
  /**
8769
8809
  * ZonedDateTime
8770
- * @description An object describing a date/time in local time (naive) and in UTC.
8810
+ * @description An object describing a date/time in local time and in UTC.
8771
8811
  * @example {
8772
- * "local": "2025-03-01T10:00:00",
8812
+ * "local": "2025-03-01T10:00:00-05:00",
8773
8813
  * "object": "zoned_date_time",
8774
8814
  * "time_zone": "America/New_York",
8775
8815
  * "unix_ts": 1736461200,
@@ -8778,8 +8818,9 @@ interface components {
8778
8818
  */
8779
8819
  previous_start_at: {
8780
8820
  /**
8781
- * @description The local date/time in ISO-8601 format (without time zone information).
8782
- * @example 2025-03-01T10:00:00
8821
+ * Format: date-time
8822
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
8823
+ * @example 2025-03-01T10:00:00-05:00
8783
8824
  */
8784
8825
  local: string;
8785
8826
  /**
@@ -9059,9 +9100,9 @@ interface components {
9059
9100
  };
9060
9101
  /**
9061
9102
  * ZonedDateTime
9062
- * @description An object describing a date/time in local time (naive) and in UTC.
9103
+ * @description An object describing a date/time in local time and in UTC.
9063
9104
  * @example {
9064
- * "local": "2025-03-01T10:00:00",
9105
+ * "local": "2025-03-01T10:00:00-05:00",
9065
9106
  * "object": "zoned_date_time",
9066
9107
  * "time_zone": "America/New_York",
9067
9108
  * "unix_ts": 1736461200,
@@ -9070,8 +9111,9 @@ interface components {
9070
9111
  */
9071
9112
  start_at: {
9072
9113
  /**
9073
- * @description The local date/time in ISO-8601 format (without time zone information).
9074
- * @example 2025-03-01T10:00:00
9114
+ * Format: date-time
9115
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9116
+ * @example 2025-03-01T10:00:00-05:00
9075
9117
  */
9076
9118
  local: string;
9077
9119
  /**
@@ -9127,9 +9169,9 @@ interface components {
9127
9169
  previous_attributes: {
9128
9170
  /**
9129
9171
  * ZonedDateTime
9130
- * @description An object describing a date/time in local time (naive) and in UTC.
9172
+ * @description An object describing a date/time in local time and in UTC.
9131
9173
  * @example {
9132
- * "local": "2025-03-01T10:00:00",
9174
+ * "local": "2025-03-01T10:00:00-05:00",
9133
9175
  * "object": "zoned_date_time",
9134
9176
  * "time_zone": "America/New_York",
9135
9177
  * "unix_ts": 1736461200,
@@ -9138,8 +9180,9 @@ interface components {
9138
9180
  */
9139
9181
  end_at: {
9140
9182
  /**
9141
- * @description The local date/time in ISO-8601 format (without time zone information).
9142
- * @example 2025-03-01T10:00:00
9183
+ * Format: date-time
9184
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9185
+ * @example 2025-03-01T10:00:00-05:00
9143
9186
  */
9144
9187
  local: string;
9145
9188
  /**
@@ -9166,9 +9209,9 @@ interface components {
9166
9209
  };
9167
9210
  /**
9168
9211
  * ZonedDateTime
9169
- * @description An object describing a date/time in local time (naive) and in UTC.
9212
+ * @description An object describing a date/time in local time and in UTC.
9170
9213
  * @example {
9171
- * "local": "2025-03-01T10:00:00",
9214
+ * "local": "2025-03-01T10:00:00-05:00",
9172
9215
  * "object": "zoned_date_time",
9173
9216
  * "time_zone": "America/New_York",
9174
9217
  * "unix_ts": 1736461200,
@@ -9177,8 +9220,9 @@ interface components {
9177
9220
  */
9178
9221
  start_at: {
9179
9222
  /**
9180
- * @description The local date/time in ISO-8601 format (without time zone information).
9181
- * @example 2025-03-01T10:00:00
9223
+ * Format: date-time
9224
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9225
+ * @example 2025-03-01T10:00:00-05:00
9182
9226
  */
9183
9227
  local: string;
9184
9228
  /**
@@ -9260,7 +9304,7 @@ interface components {
9260
9304
  * {
9261
9305
  * "actor": null,
9262
9306
  * "end_at": {
9263
- * "local": "2023-01-01T01:00:00",
9307
+ * "local": "2023-01-01T01:00:00-05:00",
9264
9308
  * "object": "zoned_date_time",
9265
9309
  * "time_zone": "America/New_York",
9266
9310
  * "unix_ts": 1736464800,
@@ -9271,7 +9315,7 @@ interface components {
9271
9315
  * "occurred_at": "2023-01-01T03:00:00Z",
9272
9316
  * "source": "client_ui",
9273
9317
  * "start_at": {
9274
- * "local": "2023-01-01T00:00:00",
9318
+ * "local": "2023-01-01T00:00:00-05:00",
9275
9319
  * "object": "zoned_date_time",
9276
9320
  * "time_zone": "America/New_York",
9277
9321
  * "unix_ts": 1736461200,
@@ -9282,7 +9326,7 @@ interface components {
9282
9326
  * "confirmed_at": "2025-03-10T15:30:00Z",
9283
9327
  * "created_at": "2025-03-10T14:30:00Z",
9284
9328
  * "end_at": {
9285
- * "local": "2025-03-01T11:00:00",
9329
+ * "local": "2025-03-01T11:00:00-05:00",
9286
9330
  * "object": "zoned_date_time",
9287
9331
  * "time_zone": "America/New_York",
9288
9332
  * "unix_ts": 1736464800,
@@ -9313,14 +9357,14 @@ interface components {
9313
9357
  * "actor": null,
9314
9358
  * "initiated_by": "client",
9315
9359
  * "new_end_at": {
9316
- * "local": "2023-01-01T01:00:00",
9360
+ * "local": "2023-01-01T01:00:00-05:00",
9317
9361
  * "object": "zoned_date_time",
9318
9362
  * "time_zone": "America/New_York",
9319
9363
  * "unix_ts": 1736464800,
9320
9364
  * "utc": "2023-01-01T04:00:00Z"
9321
9365
  * },
9322
9366
  * "new_start_at": {
9323
- * "local": "2023-01-01T00:00:00",
9367
+ * "local": "2023-01-01T00:00:00-05:00",
9324
9368
  * "object": "zoned_date_time",
9325
9369
  * "time_zone": "America/New_York",
9326
9370
  * "unix_ts": 1736461200,
@@ -9329,14 +9373,14 @@ interface components {
9329
9373
  * "object": "reschedule_event",
9330
9374
  * "occurred_at": "2023-01-01T03:00:00Z",
9331
9375
  * "previous_end_at": {
9332
- * "local": "2023-01-01T01:00:00",
9376
+ * "local": "2023-01-01T01:00:00-05:00",
9333
9377
  * "object": "zoned_date_time",
9334
9378
  * "time_zone": "America/New_York",
9335
9379
  * "unix_ts": 1736464800,
9336
9380
  * "utc": "2023-01-01T04:00:00Z"
9337
9381
  * },
9338
9382
  * "previous_start_at": {
9339
- * "local": "2023-01-01T00:00:00",
9383
+ * "local": "2023-01-01T00:00:00-05:00",
9340
9384
  * "object": "zoned_date_time",
9341
9385
  * "time_zone": "America/New_York",
9342
9386
  * "unix_ts": 1736461200,
@@ -9399,7 +9443,7 @@ interface components {
9399
9443
  * "updated_at": "2025-02-17T17:49:19Z"
9400
9444
  * },
9401
9445
  * "start_at": {
9402
- * "local": "2025-03-01T10:00:00",
9446
+ * "local": "2025-03-01T10:00:00-05:00",
9403
9447
  * "object": "zoned_date_time",
9404
9448
  * "time_zone": "America/New_York",
9405
9449
  * "unix_ts": 1736461200,
@@ -9588,9 +9632,9 @@ interface components {
9588
9632
  actor: string | null;
9589
9633
  /**
9590
9634
  * ZonedDateTime
9591
- * @description An object describing a date/time in local time (naive) and in UTC.
9635
+ * @description An object describing a date/time in local time and in UTC.
9592
9636
  * @example {
9593
- * "local": "2025-03-01T10:00:00",
9637
+ * "local": "2025-03-01T10:00:00-05:00",
9594
9638
  * "object": "zoned_date_time",
9595
9639
  * "time_zone": "America/New_York",
9596
9640
  * "unix_ts": 1736461200,
@@ -9599,8 +9643,9 @@ interface components {
9599
9643
  */
9600
9644
  end_at: {
9601
9645
  /**
9602
- * @description The local date/time in ISO-8601 format (without time zone information).
9603
- * @example 2025-03-01T10:00:00
9646
+ * Format: date-time
9647
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9648
+ * @example 2025-03-01T10:00:00-05:00
9604
9649
  */
9605
9650
  local: string;
9606
9651
  /**
@@ -9644,9 +9689,9 @@ interface components {
9644
9689
  source: "client_ui" | "dashboard" | "api";
9645
9690
  /**
9646
9691
  * ZonedDateTime
9647
- * @description An object describing a date/time in local time (naive) and in UTC.
9692
+ * @description An object describing a date/time in local time and in UTC.
9648
9693
  * @example {
9649
- * "local": "2025-03-01T10:00:00",
9694
+ * "local": "2025-03-01T10:00:00-05:00",
9650
9695
  * "object": "zoned_date_time",
9651
9696
  * "time_zone": "America/New_York",
9652
9697
  * "unix_ts": 1736461200,
@@ -9655,8 +9700,9 @@ interface components {
9655
9700
  */
9656
9701
  start_at: {
9657
9702
  /**
9658
- * @description The local date/time in ISO-8601 format (without time zone information).
9659
- * @example 2025-03-01T10:00:00
9703
+ * Format: date-time
9704
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9705
+ * @example 2025-03-01T10:00:00-05:00
9660
9706
  */
9661
9707
  local: string;
9662
9708
  /**
@@ -9694,9 +9740,9 @@ interface components {
9694
9740
  created_at: string;
9695
9741
  /**
9696
9742
  * ZonedDateTime
9697
- * @description An object describing a date/time in local time (naive) and in UTC.
9743
+ * @description An object describing a date/time in local time and in UTC.
9698
9744
  * @example {
9699
- * "local": "2025-03-01T10:00:00",
9745
+ * "local": "2025-03-01T10:00:00-05:00",
9700
9746
  * "object": "zoned_date_time",
9701
9747
  * "time_zone": "America/New_York",
9702
9748
  * "unix_ts": 1736461200,
@@ -9705,8 +9751,9 @@ interface components {
9705
9751
  */
9706
9752
  end_at: {
9707
9753
  /**
9708
- * @description The local date/time in ISO-8601 format (without time zone information).
9709
- * @example 2025-03-01T10:00:00
9754
+ * Format: date-time
9755
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9756
+ * @example 2025-03-01T10:00:00-05:00
9710
9757
  */
9711
9758
  local: string;
9712
9759
  /**
@@ -9804,9 +9851,9 @@ interface components {
9804
9851
  initiated_by: "user" | "client";
9805
9852
  /**
9806
9853
  * ZonedDateTime
9807
- * @description An object describing a date/time in local time (naive) and in UTC.
9854
+ * @description An object describing a date/time in local time and in UTC.
9808
9855
  * @example {
9809
- * "local": "2025-03-01T10:00:00",
9856
+ * "local": "2025-03-01T10:00:00-05:00",
9810
9857
  * "object": "zoned_date_time",
9811
9858
  * "time_zone": "America/New_York",
9812
9859
  * "unix_ts": 1736461200,
@@ -9815,8 +9862,9 @@ interface components {
9815
9862
  */
9816
9863
  new_end_at: {
9817
9864
  /**
9818
- * @description The local date/time in ISO-8601 format (without time zone information).
9819
- * @example 2025-03-01T10:00:00
9865
+ * Format: date-time
9866
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9867
+ * @example 2025-03-01T10:00:00-05:00
9820
9868
  */
9821
9869
  local: string;
9822
9870
  /**
@@ -9843,9 +9891,9 @@ interface components {
9843
9891
  };
9844
9892
  /**
9845
9893
  * ZonedDateTime
9846
- * @description An object describing a date/time in local time (naive) and in UTC.
9894
+ * @description An object describing a date/time in local time and in UTC.
9847
9895
  * @example {
9848
- * "local": "2025-03-01T10:00:00",
9896
+ * "local": "2025-03-01T10:00:00-05:00",
9849
9897
  * "object": "zoned_date_time",
9850
9898
  * "time_zone": "America/New_York",
9851
9899
  * "unix_ts": 1736461200,
@@ -9854,8 +9902,9 @@ interface components {
9854
9902
  */
9855
9903
  new_start_at: {
9856
9904
  /**
9857
- * @description The local date/time in ISO-8601 format (without time zone information).
9858
- * @example 2025-03-01T10:00:00
9905
+ * Format: date-time
9906
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9907
+ * @example 2025-03-01T10:00:00-05:00
9859
9908
  */
9860
9909
  local: string;
9861
9910
  /**
@@ -9889,9 +9938,9 @@ interface components {
9889
9938
  occurred_at: string;
9890
9939
  /**
9891
9940
  * ZonedDateTime
9892
- * @description An object describing a date/time in local time (naive) and in UTC.
9941
+ * @description An object describing a date/time in local time and in UTC.
9893
9942
  * @example {
9894
- * "local": "2025-03-01T10:00:00",
9943
+ * "local": "2025-03-01T10:00:00-05:00",
9895
9944
  * "object": "zoned_date_time",
9896
9945
  * "time_zone": "America/New_York",
9897
9946
  * "unix_ts": 1736461200,
@@ -9900,8 +9949,9 @@ interface components {
9900
9949
  */
9901
9950
  previous_end_at: {
9902
9951
  /**
9903
- * @description The local date/time in ISO-8601 format (without time zone information).
9904
- * @example 2025-03-01T10:00:00
9952
+ * Format: date-time
9953
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9954
+ * @example 2025-03-01T10:00:00-05:00
9905
9955
  */
9906
9956
  local: string;
9907
9957
  /**
@@ -9928,9 +9978,9 @@ interface components {
9928
9978
  };
9929
9979
  /**
9930
9980
  * ZonedDateTime
9931
- * @description An object describing a date/time in local time (naive) and in UTC.
9981
+ * @description An object describing a date/time in local time and in UTC.
9932
9982
  * @example {
9933
- * "local": "2025-03-01T10:00:00",
9983
+ * "local": "2025-03-01T10:00:00-05:00",
9934
9984
  * "object": "zoned_date_time",
9935
9985
  * "time_zone": "America/New_York",
9936
9986
  * "unix_ts": 1736461200,
@@ -9939,8 +9989,9 @@ interface components {
9939
9989
  */
9940
9990
  previous_start_at: {
9941
9991
  /**
9942
- * @description The local date/time in ISO-8601 format (without time zone information).
9943
- * @example 2025-03-01T10:00:00
9992
+ * Format: date-time
9993
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
9994
+ * @example 2025-03-01T10:00:00-05:00
9944
9995
  */
9945
9996
  local: string;
9946
9997
  /**
@@ -10220,9 +10271,9 @@ interface components {
10220
10271
  };
10221
10272
  /**
10222
10273
  * ZonedDateTime
10223
- * @description An object describing a date/time in local time (naive) and in UTC.
10274
+ * @description An object describing a date/time in local time and in UTC.
10224
10275
  * @example {
10225
- * "local": "2025-03-01T10:00:00",
10276
+ * "local": "2025-03-01T10:00:00-05:00",
10226
10277
  * "object": "zoned_date_time",
10227
10278
  * "time_zone": "America/New_York",
10228
10279
  * "unix_ts": 1736461200,
@@ -10231,8 +10282,9 @@ interface components {
10231
10282
  */
10232
10283
  start_at: {
10233
10284
  /**
10234
- * @description The local date/time in ISO-8601 format (without time zone information).
10235
- * @example 2025-03-01T10:00:00
10285
+ * Format: date-time
10286
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
10287
+ * @example 2025-03-01T10:00:00-05:00
10236
10288
  */
10237
10289
  local: string;
10238
10290
  /**
@@ -10341,7 +10393,7 @@ interface components {
10341
10393
  * {
10342
10394
  * "actor": null,
10343
10395
  * "end_at": {
10344
- * "local": "2023-01-01T01:00:00",
10396
+ * "local": "2023-01-01T01:00:00-05:00",
10345
10397
  * "object": "zoned_date_time",
10346
10398
  * "time_zone": "America/New_York",
10347
10399
  * "unix_ts": 1736464800,
@@ -10352,7 +10404,7 @@ interface components {
10352
10404
  * "occurred_at": "2023-01-01T03:00:00Z",
10353
10405
  * "source": "client_ui",
10354
10406
  * "start_at": {
10355
- * "local": "2023-01-01T00:00:00",
10407
+ * "local": "2023-01-01T00:00:00-05:00",
10356
10408
  * "object": "zoned_date_time",
10357
10409
  * "time_zone": "America/New_York",
10358
10410
  * "unix_ts": 1736461200,
@@ -10363,7 +10415,7 @@ interface components {
10363
10415
  * "confirmed_at": "2025-03-10T15:30:00Z",
10364
10416
  * "created_at": "2025-03-10T14:30:00Z",
10365
10417
  * "end_at": {
10366
- * "local": "2025-03-01T11:00:00",
10418
+ * "local": "2025-03-01T11:00:00-05:00",
10367
10419
  * "object": "zoned_date_time",
10368
10420
  * "time_zone": "America/New_York",
10369
10421
  * "unix_ts": 1736464800,
@@ -10394,14 +10446,14 @@ interface components {
10394
10446
  * "actor": null,
10395
10447
  * "initiated_by": "client",
10396
10448
  * "new_end_at": {
10397
- * "local": "2023-01-01T01:00:00",
10449
+ * "local": "2023-01-01T01:00:00-05:00",
10398
10450
  * "object": "zoned_date_time",
10399
10451
  * "time_zone": "America/New_York",
10400
10452
  * "unix_ts": 1736464800,
10401
10453
  * "utc": "2023-01-01T04:00:00Z"
10402
10454
  * },
10403
10455
  * "new_start_at": {
10404
- * "local": "2023-01-01T00:00:00",
10456
+ * "local": "2023-01-01T00:00:00-05:00",
10405
10457
  * "object": "zoned_date_time",
10406
10458
  * "time_zone": "America/New_York",
10407
10459
  * "unix_ts": 1736461200,
@@ -10410,14 +10462,14 @@ interface components {
10410
10462
  * "object": "reschedule_event",
10411
10463
  * "occurred_at": "2023-01-01T03:00:00Z",
10412
10464
  * "previous_end_at": {
10413
- * "local": "2023-01-01T01:00:00",
10465
+ * "local": "2023-01-01T01:00:00-05:00",
10414
10466
  * "object": "zoned_date_time",
10415
10467
  * "time_zone": "America/New_York",
10416
10468
  * "unix_ts": 1736464800,
10417
10469
  * "utc": "2023-01-01T04:00:00Z"
10418
10470
  * },
10419
10471
  * "previous_start_at": {
10420
- * "local": "2023-01-01T00:00:00",
10472
+ * "local": "2023-01-01T00:00:00-05:00",
10421
10473
  * "object": "zoned_date_time",
10422
10474
  * "time_zone": "America/New_York",
10423
10475
  * "unix_ts": 1736461200,
@@ -10480,7 +10532,7 @@ interface components {
10480
10532
  * "updated_at": "2025-02-17T17:49:19Z"
10481
10533
  * },
10482
10534
  * "start_at": {
10483
- * "local": "2025-03-01T10:00:00",
10535
+ * "local": "2025-03-01T10:00:00-05:00",
10484
10536
  * "object": "zoned_date_time",
10485
10537
  * "time_zone": "America/New_York",
10486
10538
  * "unix_ts": 1736461200,
@@ -10669,9 +10721,9 @@ interface components {
10669
10721
  actor: string | null;
10670
10722
  /**
10671
10723
  * ZonedDateTime
10672
- * @description An object describing a date/time in local time (naive) and in UTC.
10724
+ * @description An object describing a date/time in local time and in UTC.
10673
10725
  * @example {
10674
- * "local": "2025-03-01T10:00:00",
10726
+ * "local": "2025-03-01T10:00:00-05:00",
10675
10727
  * "object": "zoned_date_time",
10676
10728
  * "time_zone": "America/New_York",
10677
10729
  * "unix_ts": 1736461200,
@@ -10680,8 +10732,9 @@ interface components {
10680
10732
  */
10681
10733
  end_at: {
10682
10734
  /**
10683
- * @description The local date/time in ISO-8601 format (without time zone information).
10684
- * @example 2025-03-01T10:00:00
10735
+ * Format: date-time
10736
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
10737
+ * @example 2025-03-01T10:00:00-05:00
10685
10738
  */
10686
10739
  local: string;
10687
10740
  /**
@@ -10725,9 +10778,9 @@ interface components {
10725
10778
  source: "client_ui" | "dashboard" | "api";
10726
10779
  /**
10727
10780
  * ZonedDateTime
10728
- * @description An object describing a date/time in local time (naive) and in UTC.
10781
+ * @description An object describing a date/time in local time and in UTC.
10729
10782
  * @example {
10730
- * "local": "2025-03-01T10:00:00",
10783
+ * "local": "2025-03-01T10:00:00-05:00",
10731
10784
  * "object": "zoned_date_time",
10732
10785
  * "time_zone": "America/New_York",
10733
10786
  * "unix_ts": 1736461200,
@@ -10736,8 +10789,9 @@ interface components {
10736
10789
  */
10737
10790
  start_at: {
10738
10791
  /**
10739
- * @description The local date/time in ISO-8601 format (without time zone information).
10740
- * @example 2025-03-01T10:00:00
10792
+ * Format: date-time
10793
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
10794
+ * @example 2025-03-01T10:00:00-05:00
10741
10795
  */
10742
10796
  local: string;
10743
10797
  /**
@@ -10775,9 +10829,9 @@ interface components {
10775
10829
  created_at: string;
10776
10830
  /**
10777
10831
  * ZonedDateTime
10778
- * @description An object describing a date/time in local time (naive) and in UTC.
10832
+ * @description An object describing a date/time in local time and in UTC.
10779
10833
  * @example {
10780
- * "local": "2025-03-01T10:00:00",
10834
+ * "local": "2025-03-01T10:00:00-05:00",
10781
10835
  * "object": "zoned_date_time",
10782
10836
  * "time_zone": "America/New_York",
10783
10837
  * "unix_ts": 1736461200,
@@ -10786,8 +10840,9 @@ interface components {
10786
10840
  */
10787
10841
  end_at: {
10788
10842
  /**
10789
- * @description The local date/time in ISO-8601 format (without time zone information).
10790
- * @example 2025-03-01T10:00:00
10843
+ * Format: date-time
10844
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
10845
+ * @example 2025-03-01T10:00:00-05:00
10791
10846
  */
10792
10847
  local: string;
10793
10848
  /**
@@ -10885,9 +10940,9 @@ interface components {
10885
10940
  initiated_by: "user" | "client";
10886
10941
  /**
10887
10942
  * ZonedDateTime
10888
- * @description An object describing a date/time in local time (naive) and in UTC.
10943
+ * @description An object describing a date/time in local time and in UTC.
10889
10944
  * @example {
10890
- * "local": "2025-03-01T10:00:00",
10945
+ * "local": "2025-03-01T10:00:00-05:00",
10891
10946
  * "object": "zoned_date_time",
10892
10947
  * "time_zone": "America/New_York",
10893
10948
  * "unix_ts": 1736461200,
@@ -10896,8 +10951,9 @@ interface components {
10896
10951
  */
10897
10952
  new_end_at: {
10898
10953
  /**
10899
- * @description The local date/time in ISO-8601 format (without time zone information).
10900
- * @example 2025-03-01T10:00:00
10954
+ * Format: date-time
10955
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
10956
+ * @example 2025-03-01T10:00:00-05:00
10901
10957
  */
10902
10958
  local: string;
10903
10959
  /**
@@ -10924,9 +10980,9 @@ interface components {
10924
10980
  };
10925
10981
  /**
10926
10982
  * ZonedDateTime
10927
- * @description An object describing a date/time in local time (naive) and in UTC.
10983
+ * @description An object describing a date/time in local time and in UTC.
10928
10984
  * @example {
10929
- * "local": "2025-03-01T10:00:00",
10985
+ * "local": "2025-03-01T10:00:00-05:00",
10930
10986
  * "object": "zoned_date_time",
10931
10987
  * "time_zone": "America/New_York",
10932
10988
  * "unix_ts": 1736461200,
@@ -10935,8 +10991,9 @@ interface components {
10935
10991
  */
10936
10992
  new_start_at: {
10937
10993
  /**
10938
- * @description The local date/time in ISO-8601 format (without time zone information).
10939
- * @example 2025-03-01T10:00:00
10994
+ * Format: date-time
10995
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
10996
+ * @example 2025-03-01T10:00:00-05:00
10940
10997
  */
10941
10998
  local: string;
10942
10999
  /**
@@ -10970,9 +11027,9 @@ interface components {
10970
11027
  occurred_at: string;
10971
11028
  /**
10972
11029
  * ZonedDateTime
10973
- * @description An object describing a date/time in local time (naive) and in UTC.
11030
+ * @description An object describing a date/time in local time and in UTC.
10974
11031
  * @example {
10975
- * "local": "2025-03-01T10:00:00",
11032
+ * "local": "2025-03-01T10:00:00-05:00",
10976
11033
  * "object": "zoned_date_time",
10977
11034
  * "time_zone": "America/New_York",
10978
11035
  * "unix_ts": 1736461200,
@@ -10981,8 +11038,9 @@ interface components {
10981
11038
  */
10982
11039
  previous_end_at: {
10983
11040
  /**
10984
- * @description The local date/time in ISO-8601 format (without time zone information).
10985
- * @example 2025-03-01T10:00:00
11041
+ * Format: date-time
11042
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
11043
+ * @example 2025-03-01T10:00:00-05:00
10986
11044
  */
10987
11045
  local: string;
10988
11046
  /**
@@ -11009,9 +11067,9 @@ interface components {
11009
11067
  };
11010
11068
  /**
11011
11069
  * ZonedDateTime
11012
- * @description An object describing a date/time in local time (naive) and in UTC.
11070
+ * @description An object describing a date/time in local time and in UTC.
11013
11071
  * @example {
11014
- * "local": "2025-03-01T10:00:00",
11072
+ * "local": "2025-03-01T10:00:00-05:00",
11015
11073
  * "object": "zoned_date_time",
11016
11074
  * "time_zone": "America/New_York",
11017
11075
  * "unix_ts": 1736461200,
@@ -11020,8 +11078,9 @@ interface components {
11020
11078
  */
11021
11079
  previous_start_at: {
11022
11080
  /**
11023
- * @description The local date/time in ISO-8601 format (without time zone information).
11024
- * @example 2025-03-01T10:00:00
11081
+ * Format: date-time
11082
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
11083
+ * @example 2025-03-01T10:00:00-05:00
11025
11084
  */
11026
11085
  local: string;
11027
11086
  /**
@@ -11301,9 +11360,9 @@ interface components {
11301
11360
  };
11302
11361
  /**
11303
11362
  * ZonedDateTime
11304
- * @description An object describing a date/time in local time (naive) and in UTC.
11363
+ * @description An object describing a date/time in local time and in UTC.
11305
11364
  * @example {
11306
- * "local": "2025-03-01T10:00:00",
11365
+ * "local": "2025-03-01T10:00:00-05:00",
11307
11366
  * "object": "zoned_date_time",
11308
11367
  * "time_zone": "America/New_York",
11309
11368
  * "unix_ts": 1736461200,
@@ -11312,8 +11371,9 @@ interface components {
11312
11371
  */
11313
11372
  start_at: {
11314
11373
  /**
11315
- * @description The local date/time in ISO-8601 format (without time zone information).
11316
- * @example 2025-03-01T10:00:00
11374
+ * Format: date-time
11375
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
11376
+ * @example 2025-03-01T10:00:00-05:00
11317
11377
  */
11318
11378
  local: string;
11319
11379
  /**
@@ -11422,7 +11482,7 @@ interface components {
11422
11482
  * {
11423
11483
  * "actor": null,
11424
11484
  * "end_at": {
11425
- * "local": "2023-01-01T01:00:00",
11485
+ * "local": "2023-01-01T01:00:00-05:00",
11426
11486
  * "object": "zoned_date_time",
11427
11487
  * "time_zone": "America/New_York",
11428
11488
  * "unix_ts": 1736464800,
@@ -11433,7 +11493,7 @@ interface components {
11433
11493
  * "occurred_at": "2023-01-01T03:00:00Z",
11434
11494
  * "source": "client_ui",
11435
11495
  * "start_at": {
11436
- * "local": "2023-01-01T00:00:00",
11496
+ * "local": "2023-01-01T00:00:00-05:00",
11437
11497
  * "object": "zoned_date_time",
11438
11498
  * "time_zone": "America/New_York",
11439
11499
  * "unix_ts": 1736461200,
@@ -11444,7 +11504,7 @@ interface components {
11444
11504
  * "confirmed_at": "2025-03-10T15:30:00Z",
11445
11505
  * "created_at": "2025-03-10T14:30:00Z",
11446
11506
  * "end_at": {
11447
- * "local": "2025-03-01T11:00:00",
11507
+ * "local": "2025-03-01T11:00:00-05:00",
11448
11508
  * "object": "zoned_date_time",
11449
11509
  * "time_zone": "America/New_York",
11450
11510
  * "unix_ts": 1736464800,
@@ -11475,14 +11535,14 @@ interface components {
11475
11535
  * "actor": null,
11476
11536
  * "initiated_by": "client",
11477
11537
  * "new_end_at": {
11478
- * "local": "2023-01-01T01:00:00",
11538
+ * "local": "2023-01-01T01:00:00-05:00",
11479
11539
  * "object": "zoned_date_time",
11480
11540
  * "time_zone": "America/New_York",
11481
11541
  * "unix_ts": 1736464800,
11482
11542
  * "utc": "2023-01-01T04:00:00Z"
11483
11543
  * },
11484
11544
  * "new_start_at": {
11485
- * "local": "2023-01-01T00:00:00",
11545
+ * "local": "2023-01-01T00:00:00-05:00",
11486
11546
  * "object": "zoned_date_time",
11487
11547
  * "time_zone": "America/New_York",
11488
11548
  * "unix_ts": 1736461200,
@@ -11491,14 +11551,14 @@ interface components {
11491
11551
  * "object": "reschedule_event",
11492
11552
  * "occurred_at": "2023-01-01T03:00:00Z",
11493
11553
  * "previous_end_at": {
11494
- * "local": "2023-01-01T01:00:00",
11554
+ * "local": "2023-01-01T01:00:00-05:00",
11495
11555
  * "object": "zoned_date_time",
11496
11556
  * "time_zone": "America/New_York",
11497
11557
  * "unix_ts": 1736464800,
11498
11558
  * "utc": "2023-01-01T04:00:00Z"
11499
11559
  * },
11500
11560
  * "previous_start_at": {
11501
- * "local": "2023-01-01T00:00:00",
11561
+ * "local": "2023-01-01T00:00:00-05:00",
11502
11562
  * "object": "zoned_date_time",
11503
11563
  * "time_zone": "America/New_York",
11504
11564
  * "unix_ts": 1736461200,
@@ -11561,7 +11621,7 @@ interface components {
11561
11621
  * "updated_at": "2025-02-17T17:49:19Z"
11562
11622
  * },
11563
11623
  * "start_at": {
11564
- * "local": "2025-03-01T10:00:00",
11624
+ * "local": "2025-03-01T10:00:00-05:00",
11565
11625
  * "object": "zoned_date_time",
11566
11626
  * "time_zone": "America/New_York",
11567
11627
  * "unix_ts": 1736461200,
@@ -11750,9 +11810,9 @@ interface components {
11750
11810
  actor: string | null;
11751
11811
  /**
11752
11812
  * ZonedDateTime
11753
- * @description An object describing a date/time in local time (naive) and in UTC.
11813
+ * @description An object describing a date/time in local time and in UTC.
11754
11814
  * @example {
11755
- * "local": "2025-03-01T10:00:00",
11815
+ * "local": "2025-03-01T10:00:00-05:00",
11756
11816
  * "object": "zoned_date_time",
11757
11817
  * "time_zone": "America/New_York",
11758
11818
  * "unix_ts": 1736461200,
@@ -11761,8 +11821,9 @@ interface components {
11761
11821
  */
11762
11822
  end_at: {
11763
11823
  /**
11764
- * @description The local date/time in ISO-8601 format (without time zone information).
11765
- * @example 2025-03-01T10:00:00
11824
+ * Format: date-time
11825
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
11826
+ * @example 2025-03-01T10:00:00-05:00
11766
11827
  */
11767
11828
  local: string;
11768
11829
  /**
@@ -11806,9 +11867,9 @@ interface components {
11806
11867
  source: "client_ui" | "dashboard" | "api";
11807
11868
  /**
11808
11869
  * ZonedDateTime
11809
- * @description An object describing a date/time in local time (naive) and in UTC.
11870
+ * @description An object describing a date/time in local time and in UTC.
11810
11871
  * @example {
11811
- * "local": "2025-03-01T10:00:00",
11872
+ * "local": "2025-03-01T10:00:00-05:00",
11812
11873
  * "object": "zoned_date_time",
11813
11874
  * "time_zone": "America/New_York",
11814
11875
  * "unix_ts": 1736461200,
@@ -11817,8 +11878,9 @@ interface components {
11817
11878
  */
11818
11879
  start_at: {
11819
11880
  /**
11820
- * @description The local date/time in ISO-8601 format (without time zone information).
11821
- * @example 2025-03-01T10:00:00
11881
+ * Format: date-time
11882
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
11883
+ * @example 2025-03-01T10:00:00-05:00
11822
11884
  */
11823
11885
  local: string;
11824
11886
  /**
@@ -11856,9 +11918,9 @@ interface components {
11856
11918
  created_at: string;
11857
11919
  /**
11858
11920
  * ZonedDateTime
11859
- * @description An object describing a date/time in local time (naive) and in UTC.
11921
+ * @description An object describing a date/time in local time and in UTC.
11860
11922
  * @example {
11861
- * "local": "2025-03-01T10:00:00",
11923
+ * "local": "2025-03-01T10:00:00-05:00",
11862
11924
  * "object": "zoned_date_time",
11863
11925
  * "time_zone": "America/New_York",
11864
11926
  * "unix_ts": 1736461200,
@@ -11867,8 +11929,9 @@ interface components {
11867
11929
  */
11868
11930
  end_at: {
11869
11931
  /**
11870
- * @description The local date/time in ISO-8601 format (without time zone information).
11871
- * @example 2025-03-01T10:00:00
11932
+ * Format: date-time
11933
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
11934
+ * @example 2025-03-01T10:00:00-05:00
11872
11935
  */
11873
11936
  local: string;
11874
11937
  /**
@@ -11966,9 +12029,9 @@ interface components {
11966
12029
  initiated_by: "user" | "client";
11967
12030
  /**
11968
12031
  * ZonedDateTime
11969
- * @description An object describing a date/time in local time (naive) and in UTC.
12032
+ * @description An object describing a date/time in local time and in UTC.
11970
12033
  * @example {
11971
- * "local": "2025-03-01T10:00:00",
12034
+ * "local": "2025-03-01T10:00:00-05:00",
11972
12035
  * "object": "zoned_date_time",
11973
12036
  * "time_zone": "America/New_York",
11974
12037
  * "unix_ts": 1736461200,
@@ -11977,8 +12040,9 @@ interface components {
11977
12040
  */
11978
12041
  new_end_at: {
11979
12042
  /**
11980
- * @description The local date/time in ISO-8601 format (without time zone information).
11981
- * @example 2025-03-01T10:00:00
12043
+ * Format: date-time
12044
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
12045
+ * @example 2025-03-01T10:00:00-05:00
11982
12046
  */
11983
12047
  local: string;
11984
12048
  /**
@@ -12005,9 +12069,9 @@ interface components {
12005
12069
  };
12006
12070
  /**
12007
12071
  * ZonedDateTime
12008
- * @description An object describing a date/time in local time (naive) and in UTC.
12072
+ * @description An object describing a date/time in local time and in UTC.
12009
12073
  * @example {
12010
- * "local": "2025-03-01T10:00:00",
12074
+ * "local": "2025-03-01T10:00:00-05:00",
12011
12075
  * "object": "zoned_date_time",
12012
12076
  * "time_zone": "America/New_York",
12013
12077
  * "unix_ts": 1736461200,
@@ -12016,8 +12080,9 @@ interface components {
12016
12080
  */
12017
12081
  new_start_at: {
12018
12082
  /**
12019
- * @description The local date/time in ISO-8601 format (without time zone information).
12020
- * @example 2025-03-01T10:00:00
12083
+ * Format: date-time
12084
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
12085
+ * @example 2025-03-01T10:00:00-05:00
12021
12086
  */
12022
12087
  local: string;
12023
12088
  /**
@@ -12051,9 +12116,9 @@ interface components {
12051
12116
  occurred_at: string;
12052
12117
  /**
12053
12118
  * ZonedDateTime
12054
- * @description An object describing a date/time in local time (naive) and in UTC.
12119
+ * @description An object describing a date/time in local time and in UTC.
12055
12120
  * @example {
12056
- * "local": "2025-03-01T10:00:00",
12121
+ * "local": "2025-03-01T10:00:00-05:00",
12057
12122
  * "object": "zoned_date_time",
12058
12123
  * "time_zone": "America/New_York",
12059
12124
  * "unix_ts": 1736461200,
@@ -12062,8 +12127,9 @@ interface components {
12062
12127
  */
12063
12128
  previous_end_at: {
12064
12129
  /**
12065
- * @description The local date/time in ISO-8601 format (without time zone information).
12066
- * @example 2025-03-01T10:00:00
12130
+ * Format: date-time
12131
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
12132
+ * @example 2025-03-01T10:00:00-05:00
12067
12133
  */
12068
12134
  local: string;
12069
12135
  /**
@@ -12090,9 +12156,9 @@ interface components {
12090
12156
  };
12091
12157
  /**
12092
12158
  * ZonedDateTime
12093
- * @description An object describing a date/time in local time (naive) and in UTC.
12159
+ * @description An object describing a date/time in local time and in UTC.
12094
12160
  * @example {
12095
- * "local": "2025-03-01T10:00:00",
12161
+ * "local": "2025-03-01T10:00:00-05:00",
12096
12162
  * "object": "zoned_date_time",
12097
12163
  * "time_zone": "America/New_York",
12098
12164
  * "unix_ts": 1736461200,
@@ -12101,8 +12167,9 @@ interface components {
12101
12167
  */
12102
12168
  previous_start_at: {
12103
12169
  /**
12104
- * @description The local date/time in ISO-8601 format (without time zone information).
12105
- * @example 2025-03-01T10:00:00
12170
+ * Format: date-time
12171
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
12172
+ * @example 2025-03-01T10:00:00-05:00
12106
12173
  */
12107
12174
  local: string;
12108
12175
  /**
@@ -12382,9 +12449,9 @@ interface components {
12382
12449
  };
12383
12450
  /**
12384
12451
  * ZonedDateTime
12385
- * @description An object describing a date/time in local time (naive) and in UTC.
12452
+ * @description An object describing a date/time in local time and in UTC.
12386
12453
  * @example {
12387
- * "local": "2025-03-01T10:00:00",
12454
+ * "local": "2025-03-01T10:00:00-05:00",
12388
12455
  * "object": "zoned_date_time",
12389
12456
  * "time_zone": "America/New_York",
12390
12457
  * "unix_ts": 1736461200,
@@ -12393,8 +12460,9 @@ interface components {
12393
12460
  */
12394
12461
  start_at: {
12395
12462
  /**
12396
- * @description The local date/time in ISO-8601 format (without time zone information).
12397
- * @example 2025-03-01T10:00:00
12463
+ * Format: date-time
12464
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
12465
+ * @example 2025-03-01T10:00:00-05:00
12398
12466
  */
12399
12467
  local: string;
12400
12468
  /**
@@ -14780,7 +14848,7 @@ interface components {
14780
14848
  * {
14781
14849
  * "actor": null,
14782
14850
  * "end_at": {
14783
- * "local": "2023-01-01T01:00:00",
14851
+ * "local": "2023-01-01T01:00:00-05:00",
14784
14852
  * "object": "zoned_date_time",
14785
14853
  * "time_zone": "America/New_York",
14786
14854
  * "unix_ts": 1736464800,
@@ -14791,7 +14859,7 @@ interface components {
14791
14859
  * "occurred_at": "2023-01-01T03:00:00Z",
14792
14860
  * "source": "client_ui",
14793
14861
  * "start_at": {
14794
- * "local": "2023-01-01T00:00:00",
14862
+ * "local": "2023-01-01T00:00:00-05:00",
14795
14863
  * "object": "zoned_date_time",
14796
14864
  * "time_zone": "America/New_York",
14797
14865
  * "unix_ts": 1736461200,
@@ -14802,7 +14870,7 @@ interface components {
14802
14870
  * "confirmed_at": "2025-03-10T15:30:00Z",
14803
14871
  * "created_at": "2025-03-10T14:30:00Z",
14804
14872
  * "end_at": {
14805
- * "local": "2025-03-01T11:00:00",
14873
+ * "local": "2025-03-01T11:00:00-05:00",
14806
14874
  * "object": "zoned_date_time",
14807
14875
  * "time_zone": "America/New_York",
14808
14876
  * "unix_ts": 1736464800,
@@ -14833,14 +14901,14 @@ interface components {
14833
14901
  * "actor": null,
14834
14902
  * "initiated_by": "client",
14835
14903
  * "new_end_at": {
14836
- * "local": "2023-01-01T01:00:00",
14904
+ * "local": "2023-01-01T01:00:00-05:00",
14837
14905
  * "object": "zoned_date_time",
14838
14906
  * "time_zone": "America/New_York",
14839
14907
  * "unix_ts": 1736464800,
14840
14908
  * "utc": "2023-01-01T04:00:00Z"
14841
14909
  * },
14842
14910
  * "new_start_at": {
14843
- * "local": "2023-01-01T00:00:00",
14911
+ * "local": "2023-01-01T00:00:00-05:00",
14844
14912
  * "object": "zoned_date_time",
14845
14913
  * "time_zone": "America/New_York",
14846
14914
  * "unix_ts": 1736461200,
@@ -14849,14 +14917,14 @@ interface components {
14849
14917
  * "object": "reschedule_event",
14850
14918
  * "occurred_at": "2023-01-01T03:00:00Z",
14851
14919
  * "previous_end_at": {
14852
- * "local": "2023-01-01T01:00:00",
14920
+ * "local": "2023-01-01T01:00:00-05:00",
14853
14921
  * "object": "zoned_date_time",
14854
14922
  * "time_zone": "America/New_York",
14855
14923
  * "unix_ts": 1736464800,
14856
14924
  * "utc": "2023-01-01T04:00:00Z"
14857
14925
  * },
14858
14926
  * "previous_start_at": {
14859
- * "local": "2023-01-01T00:00:00",
14927
+ * "local": "2023-01-01T00:00:00-05:00",
14860
14928
  * "object": "zoned_date_time",
14861
14929
  * "time_zone": "America/New_York",
14862
14930
  * "unix_ts": 1736461200,
@@ -14919,7 +14987,7 @@ interface components {
14919
14987
  * "updated_at": "2025-02-17T17:49:19Z"
14920
14988
  * },
14921
14989
  * "start_at": {
14922
- * "local": "2025-03-01T10:00:00",
14990
+ * "local": "2025-03-01T10:00:00-05:00",
14923
14991
  * "object": "zoned_date_time",
14924
14992
  * "time_zone": "America/New_York",
14925
14993
  * "unix_ts": 1736461200,
@@ -15399,7 +15467,7 @@ interface components {
15399
15467
  * {
15400
15468
  * "actor": null,
15401
15469
  * "end_at": {
15402
- * "local": "2023-01-01T01:00:00",
15470
+ * "local": "2023-01-01T01:00:00-05:00",
15403
15471
  * "object": "zoned_date_time",
15404
15472
  * "time_zone": "America/New_York",
15405
15473
  * "unix_ts": 1736464800,
@@ -15410,7 +15478,7 @@ interface components {
15410
15478
  * "occurred_at": "2023-01-01T03:00:00Z",
15411
15479
  * "source": "client_ui",
15412
15480
  * "start_at": {
15413
- * "local": "2023-01-01T00:00:00",
15481
+ * "local": "2023-01-01T00:00:00-05:00",
15414
15482
  * "object": "zoned_date_time",
15415
15483
  * "time_zone": "America/New_York",
15416
15484
  * "unix_ts": 1736461200,
@@ -15421,7 +15489,7 @@ interface components {
15421
15489
  * "confirmed_at": "2025-03-10T15:30:00Z",
15422
15490
  * "created_at": "2025-03-10T14:30:00Z",
15423
15491
  * "end_at": {
15424
- * "local": "2025-03-01T11:00:00",
15492
+ * "local": "2025-03-01T11:00:00-05:00",
15425
15493
  * "object": "zoned_date_time",
15426
15494
  * "time_zone": "America/New_York",
15427
15495
  * "unix_ts": 1736464800,
@@ -15452,14 +15520,14 @@ interface components {
15452
15520
  * "actor": null,
15453
15521
  * "initiated_by": "client",
15454
15522
  * "new_end_at": {
15455
- * "local": "2023-01-01T01:00:00",
15523
+ * "local": "2023-01-01T01:00:00-05:00",
15456
15524
  * "object": "zoned_date_time",
15457
15525
  * "time_zone": "America/New_York",
15458
15526
  * "unix_ts": 1736464800,
15459
15527
  * "utc": "2023-01-01T04:00:00Z"
15460
15528
  * },
15461
15529
  * "new_start_at": {
15462
- * "local": "2023-01-01T00:00:00",
15530
+ * "local": "2023-01-01T00:00:00-05:00",
15463
15531
  * "object": "zoned_date_time",
15464
15532
  * "time_zone": "America/New_York",
15465
15533
  * "unix_ts": 1736461200,
@@ -15468,14 +15536,14 @@ interface components {
15468
15536
  * "object": "reschedule_event",
15469
15537
  * "occurred_at": "2023-01-01T03:00:00Z",
15470
15538
  * "previous_end_at": {
15471
- * "local": "2023-01-01T01:00:00",
15539
+ * "local": "2023-01-01T01:00:00-05:00",
15472
15540
  * "object": "zoned_date_time",
15473
15541
  * "time_zone": "America/New_York",
15474
15542
  * "unix_ts": 1736464800,
15475
15543
  * "utc": "2023-01-01T04:00:00Z"
15476
15544
  * },
15477
15545
  * "previous_start_at": {
15478
- * "local": "2023-01-01T00:00:00",
15546
+ * "local": "2023-01-01T00:00:00-05:00",
15479
15547
  * "object": "zoned_date_time",
15480
15548
  * "time_zone": "America/New_York",
15481
15549
  * "unix_ts": 1736461200,
@@ -15538,7 +15606,7 @@ interface components {
15538
15606
  * "updated_at": "2025-02-17T17:49:19Z"
15539
15607
  * },
15540
15608
  * "start_at": {
15541
- * "local": "2025-03-01T10:00:00",
15609
+ * "local": "2025-03-01T10:00:00-05:00",
15542
15610
  * "object": "zoned_date_time",
15543
15611
  * "time_zone": "America/New_York",
15544
15612
  * "unix_ts": 1736461200,
@@ -17542,7 +17610,7 @@ interface components {
17542
17610
  * {
17543
17611
  * "actor": null,
17544
17612
  * "end_at": {
17545
- * "local": "2023-01-01T01:00:00",
17613
+ * "local": "2023-01-01T01:00:00-05:00",
17546
17614
  * "object": "zoned_date_time",
17547
17615
  * "time_zone": "America/New_York",
17548
17616
  * "unix_ts": 1736464800,
@@ -17553,7 +17621,7 @@ interface components {
17553
17621
  * "occurred_at": "2023-01-01T03:00:00Z",
17554
17622
  * "source": "client_ui",
17555
17623
  * "start_at": {
17556
- * "local": "2023-01-01T00:00:00",
17624
+ * "local": "2023-01-01T00:00:00-05:00",
17557
17625
  * "object": "zoned_date_time",
17558
17626
  * "time_zone": "America/New_York",
17559
17627
  * "unix_ts": 1736461200,
@@ -17564,7 +17632,7 @@ interface components {
17564
17632
  * "confirmed_at": "2025-03-10T15:30:00Z",
17565
17633
  * "created_at": "2025-03-10T14:30:00Z",
17566
17634
  * "end_at": {
17567
- * "local": "2025-03-01T11:00:00",
17635
+ * "local": "2025-03-01T11:00:00-05:00",
17568
17636
  * "object": "zoned_date_time",
17569
17637
  * "time_zone": "America/New_York",
17570
17638
  * "unix_ts": 1736464800,
@@ -17595,14 +17663,14 @@ interface components {
17595
17663
  * "actor": null,
17596
17664
  * "initiated_by": "client",
17597
17665
  * "new_end_at": {
17598
- * "local": "2023-01-01T01:00:00",
17666
+ * "local": "2023-01-01T01:00:00-05:00",
17599
17667
  * "object": "zoned_date_time",
17600
17668
  * "time_zone": "America/New_York",
17601
17669
  * "unix_ts": 1736464800,
17602
17670
  * "utc": "2023-01-01T04:00:00Z"
17603
17671
  * },
17604
17672
  * "new_start_at": {
17605
- * "local": "2023-01-01T00:00:00",
17673
+ * "local": "2023-01-01T00:00:00-05:00",
17606
17674
  * "object": "zoned_date_time",
17607
17675
  * "time_zone": "America/New_York",
17608
17676
  * "unix_ts": 1736461200,
@@ -17611,14 +17679,14 @@ interface components {
17611
17679
  * "object": "reschedule_event",
17612
17680
  * "occurred_at": "2023-01-01T03:00:00Z",
17613
17681
  * "previous_end_at": {
17614
- * "local": "2023-01-01T01:00:00",
17682
+ * "local": "2023-01-01T01:00:00-05:00",
17615
17683
  * "object": "zoned_date_time",
17616
17684
  * "time_zone": "America/New_York",
17617
17685
  * "unix_ts": 1736464800,
17618
17686
  * "utc": "2023-01-01T04:00:00Z"
17619
17687
  * },
17620
17688
  * "previous_start_at": {
17621
- * "local": "2023-01-01T00:00:00",
17689
+ * "local": "2023-01-01T00:00:00-05:00",
17622
17690
  * "object": "zoned_date_time",
17623
17691
  * "time_zone": "America/New_York",
17624
17692
  * "unix_ts": 1736461200,
@@ -17681,7 +17749,7 @@ interface components {
17681
17749
  * "updated_at": "2025-02-17T17:49:19Z"
17682
17750
  * },
17683
17751
  * "start_at": {
17684
- * "local": "2025-03-01T10:00:00",
17752
+ * "local": "2025-03-01T10:00:00-05:00",
17685
17753
  * "object": "zoned_date_time",
17686
17754
  * "time_zone": "America/New_York",
17687
17755
  * "unix_ts": 1736461200,
@@ -17764,7 +17832,7 @@ interface components {
17764
17832
  * {
17765
17833
  * "actor": null,
17766
17834
  * "end_at": {
17767
- * "local": "2023-01-01T01:00:00",
17835
+ * "local": "2023-01-01T01:00:00-05:00",
17768
17836
  * "object": "zoned_date_time",
17769
17837
  * "time_zone": "America/New_York",
17770
17838
  * "unix_ts": 1736464800,
@@ -17775,7 +17843,7 @@ interface components {
17775
17843
  * "occurred_at": "2023-01-01T03:00:00Z",
17776
17844
  * "source": "client_ui",
17777
17845
  * "start_at": {
17778
- * "local": "2023-01-01T00:00:00",
17846
+ * "local": "2023-01-01T00:00:00-05:00",
17779
17847
  * "object": "zoned_date_time",
17780
17848
  * "time_zone": "America/New_York",
17781
17849
  * "unix_ts": 1736461200,
@@ -17786,7 +17854,7 @@ interface components {
17786
17854
  * "confirmed_at": "2025-03-10T15:30:00Z",
17787
17855
  * "created_at": "2025-03-10T14:30:00Z",
17788
17856
  * "end_at": {
17789
- * "local": "2025-03-01T11:00:00",
17857
+ * "local": "2025-03-01T11:00:00-05:00",
17790
17858
  * "object": "zoned_date_time",
17791
17859
  * "time_zone": "America/New_York",
17792
17860
  * "unix_ts": 1736464800,
@@ -17817,14 +17885,14 @@ interface components {
17817
17885
  * "actor": null,
17818
17886
  * "initiated_by": "client",
17819
17887
  * "new_end_at": {
17820
- * "local": "2023-01-01T01:00:00",
17888
+ * "local": "2023-01-01T01:00:00-05:00",
17821
17889
  * "object": "zoned_date_time",
17822
17890
  * "time_zone": "America/New_York",
17823
17891
  * "unix_ts": 1736464800,
17824
17892
  * "utc": "2023-01-01T04:00:00Z"
17825
17893
  * },
17826
17894
  * "new_start_at": {
17827
- * "local": "2023-01-01T00:00:00",
17895
+ * "local": "2023-01-01T00:00:00-05:00",
17828
17896
  * "object": "zoned_date_time",
17829
17897
  * "time_zone": "America/New_York",
17830
17898
  * "unix_ts": 1736461200,
@@ -17833,14 +17901,14 @@ interface components {
17833
17901
  * "object": "reschedule_event",
17834
17902
  * "occurred_at": "2023-01-01T03:00:00Z",
17835
17903
  * "previous_end_at": {
17836
- * "local": "2023-01-01T01:00:00",
17904
+ * "local": "2023-01-01T01:00:00-05:00",
17837
17905
  * "object": "zoned_date_time",
17838
17906
  * "time_zone": "America/New_York",
17839
17907
  * "unix_ts": 1736464800,
17840
17908
  * "utc": "2023-01-01T04:00:00Z"
17841
17909
  * },
17842
17910
  * "previous_start_at": {
17843
- * "local": "2023-01-01T00:00:00",
17911
+ * "local": "2023-01-01T00:00:00-05:00",
17844
17912
  * "object": "zoned_date_time",
17845
17913
  * "time_zone": "America/New_York",
17846
17914
  * "unix_ts": 1736461200,
@@ -17903,7 +17971,7 @@ interface components {
17903
17971
  * "updated_at": "2025-02-17T17:49:19Z"
17904
17972
  * },
17905
17973
  * "start_at": {
17906
- * "local": "2025-03-01T10:00:00",
17974
+ * "local": "2025-03-01T10:00:00-05:00",
17907
17975
  * "object": "zoned_date_time",
17908
17976
  * "time_zone": "America/New_York",
17909
17977
  * "unix_ts": 1736461200,
@@ -18092,9 +18160,9 @@ interface components {
18092
18160
  actor: string | null;
18093
18161
  /**
18094
18162
  * ZonedDateTime
18095
- * @description An object describing a date/time in local time (naive) and in UTC.
18163
+ * @description An object describing a date/time in local time and in UTC.
18096
18164
  * @example {
18097
- * "local": "2025-03-01T10:00:00",
18165
+ * "local": "2025-03-01T10:00:00-05:00",
18098
18166
  * "object": "zoned_date_time",
18099
18167
  * "time_zone": "America/New_York",
18100
18168
  * "unix_ts": 1736461200,
@@ -18103,8 +18171,9 @@ interface components {
18103
18171
  */
18104
18172
  end_at: {
18105
18173
  /**
18106
- * @description The local date/time in ISO-8601 format (without time zone information).
18107
- * @example 2025-03-01T10:00:00
18174
+ * Format: date-time
18175
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18176
+ * @example 2025-03-01T10:00:00-05:00
18108
18177
  */
18109
18178
  local: string;
18110
18179
  /**
@@ -18148,9 +18217,9 @@ interface components {
18148
18217
  source: "client_ui" | "dashboard" | "api";
18149
18218
  /**
18150
18219
  * ZonedDateTime
18151
- * @description An object describing a date/time in local time (naive) and in UTC.
18220
+ * @description An object describing a date/time in local time and in UTC.
18152
18221
  * @example {
18153
- * "local": "2025-03-01T10:00:00",
18222
+ * "local": "2025-03-01T10:00:00-05:00",
18154
18223
  * "object": "zoned_date_time",
18155
18224
  * "time_zone": "America/New_York",
18156
18225
  * "unix_ts": 1736461200,
@@ -18159,8 +18228,9 @@ interface components {
18159
18228
  */
18160
18229
  start_at: {
18161
18230
  /**
18162
- * @description The local date/time in ISO-8601 format (without time zone information).
18163
- * @example 2025-03-01T10:00:00
18231
+ * Format: date-time
18232
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18233
+ * @example 2025-03-01T10:00:00-05:00
18164
18234
  */
18165
18235
  local: string;
18166
18236
  /**
@@ -18198,9 +18268,9 @@ interface components {
18198
18268
  created_at: string;
18199
18269
  /**
18200
18270
  * ZonedDateTime
18201
- * @description An object describing a date/time in local time (naive) and in UTC.
18271
+ * @description An object describing a date/time in local time and in UTC.
18202
18272
  * @example {
18203
- * "local": "2025-03-01T10:00:00",
18273
+ * "local": "2025-03-01T10:00:00-05:00",
18204
18274
  * "object": "zoned_date_time",
18205
18275
  * "time_zone": "America/New_York",
18206
18276
  * "unix_ts": 1736461200,
@@ -18209,8 +18279,9 @@ interface components {
18209
18279
  */
18210
18280
  end_at: {
18211
18281
  /**
18212
- * @description The local date/time in ISO-8601 format (without time zone information).
18213
- * @example 2025-03-01T10:00:00
18282
+ * Format: date-time
18283
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18284
+ * @example 2025-03-01T10:00:00-05:00
18214
18285
  */
18215
18286
  local: string;
18216
18287
  /**
@@ -18308,9 +18379,9 @@ interface components {
18308
18379
  initiated_by: "user" | "client";
18309
18380
  /**
18310
18381
  * ZonedDateTime
18311
- * @description An object describing a date/time in local time (naive) and in UTC.
18382
+ * @description An object describing a date/time in local time and in UTC.
18312
18383
  * @example {
18313
- * "local": "2025-03-01T10:00:00",
18384
+ * "local": "2025-03-01T10:00:00-05:00",
18314
18385
  * "object": "zoned_date_time",
18315
18386
  * "time_zone": "America/New_York",
18316
18387
  * "unix_ts": 1736461200,
@@ -18319,8 +18390,9 @@ interface components {
18319
18390
  */
18320
18391
  new_end_at: {
18321
18392
  /**
18322
- * @description The local date/time in ISO-8601 format (without time zone information).
18323
- * @example 2025-03-01T10:00:00
18393
+ * Format: date-time
18394
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18395
+ * @example 2025-03-01T10:00:00-05:00
18324
18396
  */
18325
18397
  local: string;
18326
18398
  /**
@@ -18347,9 +18419,9 @@ interface components {
18347
18419
  };
18348
18420
  /**
18349
18421
  * ZonedDateTime
18350
- * @description An object describing a date/time in local time (naive) and in UTC.
18422
+ * @description An object describing a date/time in local time and in UTC.
18351
18423
  * @example {
18352
- * "local": "2025-03-01T10:00:00",
18424
+ * "local": "2025-03-01T10:00:00-05:00",
18353
18425
  * "object": "zoned_date_time",
18354
18426
  * "time_zone": "America/New_York",
18355
18427
  * "unix_ts": 1736461200,
@@ -18358,8 +18430,9 @@ interface components {
18358
18430
  */
18359
18431
  new_start_at: {
18360
18432
  /**
18361
- * @description The local date/time in ISO-8601 format (without time zone information).
18362
- * @example 2025-03-01T10:00:00
18433
+ * Format: date-time
18434
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18435
+ * @example 2025-03-01T10:00:00-05:00
18363
18436
  */
18364
18437
  local: string;
18365
18438
  /**
@@ -18393,9 +18466,9 @@ interface components {
18393
18466
  occurred_at: string;
18394
18467
  /**
18395
18468
  * ZonedDateTime
18396
- * @description An object describing a date/time in local time (naive) and in UTC.
18469
+ * @description An object describing a date/time in local time and in UTC.
18397
18470
  * @example {
18398
- * "local": "2025-03-01T10:00:00",
18471
+ * "local": "2025-03-01T10:00:00-05:00",
18399
18472
  * "object": "zoned_date_time",
18400
18473
  * "time_zone": "America/New_York",
18401
18474
  * "unix_ts": 1736461200,
@@ -18404,8 +18477,9 @@ interface components {
18404
18477
  */
18405
18478
  previous_end_at: {
18406
18479
  /**
18407
- * @description The local date/time in ISO-8601 format (without time zone information).
18408
- * @example 2025-03-01T10:00:00
18480
+ * Format: date-time
18481
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18482
+ * @example 2025-03-01T10:00:00-05:00
18409
18483
  */
18410
18484
  local: string;
18411
18485
  /**
@@ -18432,9 +18506,9 @@ interface components {
18432
18506
  };
18433
18507
  /**
18434
18508
  * ZonedDateTime
18435
- * @description An object describing a date/time in local time (naive) and in UTC.
18509
+ * @description An object describing a date/time in local time and in UTC.
18436
18510
  * @example {
18437
- * "local": "2025-03-01T10:00:00",
18511
+ * "local": "2025-03-01T10:00:00-05:00",
18438
18512
  * "object": "zoned_date_time",
18439
18513
  * "time_zone": "America/New_York",
18440
18514
  * "unix_ts": 1736461200,
@@ -18443,8 +18517,9 @@ interface components {
18443
18517
  */
18444
18518
  previous_start_at: {
18445
18519
  /**
18446
- * @description The local date/time in ISO-8601 format (without time zone information).
18447
- * @example 2025-03-01T10:00:00
18520
+ * Format: date-time
18521
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18522
+ * @example 2025-03-01T10:00:00-05:00
18448
18523
  */
18449
18524
  local: string;
18450
18525
  /**
@@ -18724,9 +18799,9 @@ interface components {
18724
18799
  };
18725
18800
  /**
18726
18801
  * ZonedDateTime
18727
- * @description An object describing a date/time in local time (naive) and in UTC.
18802
+ * @description An object describing a date/time in local time and in UTC.
18728
18803
  * @example {
18729
- * "local": "2025-03-01T10:00:00",
18804
+ * "local": "2025-03-01T10:00:00-05:00",
18730
18805
  * "object": "zoned_date_time",
18731
18806
  * "time_zone": "America/New_York",
18732
18807
  * "unix_ts": 1736461200,
@@ -18735,8 +18810,9 @@ interface components {
18735
18810
  */
18736
18811
  start_at: {
18737
18812
  /**
18738
- * @description The local date/time in ISO-8601 format (without time zone information).
18739
- * @example 2025-03-01T10:00:00
18813
+ * Format: date-time
18814
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
18815
+ * @example 2025-03-01T10:00:00-05:00
18740
18816
  */
18741
18817
  local: string;
18742
18818
  /**
@@ -19626,7 +19702,7 @@ interface components {
19626
19702
  * {
19627
19703
  * "actor": null,
19628
19704
  * "end_at": {
19629
- * "local": "2023-01-01T01:00:00",
19705
+ * "local": "2023-01-01T01:00:00-05:00",
19630
19706
  * "object": "zoned_date_time",
19631
19707
  * "time_zone": "America/New_York",
19632
19708
  * "unix_ts": 1736464800,
@@ -19637,7 +19713,7 @@ interface components {
19637
19713
  * "occurred_at": "2023-01-01T03:00:00Z",
19638
19714
  * "source": "client_ui",
19639
19715
  * "start_at": {
19640
- * "local": "2023-01-01T00:00:00",
19716
+ * "local": "2023-01-01T00:00:00-05:00",
19641
19717
  * "object": "zoned_date_time",
19642
19718
  * "time_zone": "America/New_York",
19643
19719
  * "unix_ts": 1736461200,
@@ -19648,7 +19724,7 @@ interface components {
19648
19724
  * "confirmed_at": "2025-03-10T15:30:00Z",
19649
19725
  * "created_at": "2025-03-10T14:30:00Z",
19650
19726
  * "end_at": {
19651
- * "local": "2025-03-01T11:00:00",
19727
+ * "local": "2025-03-01T11:00:00-05:00",
19652
19728
  * "object": "zoned_date_time",
19653
19729
  * "time_zone": "America/New_York",
19654
19730
  * "unix_ts": 1736464800,
@@ -19679,14 +19755,14 @@ interface components {
19679
19755
  * "actor": null,
19680
19756
  * "initiated_by": "client",
19681
19757
  * "new_end_at": {
19682
- * "local": "2023-01-01T01:00:00",
19758
+ * "local": "2023-01-01T01:00:00-05:00",
19683
19759
  * "object": "zoned_date_time",
19684
19760
  * "time_zone": "America/New_York",
19685
19761
  * "unix_ts": 1736464800,
19686
19762
  * "utc": "2023-01-01T04:00:00Z"
19687
19763
  * },
19688
19764
  * "new_start_at": {
19689
- * "local": "2023-01-01T00:00:00",
19765
+ * "local": "2023-01-01T00:00:00-05:00",
19690
19766
  * "object": "zoned_date_time",
19691
19767
  * "time_zone": "America/New_York",
19692
19768
  * "unix_ts": 1736461200,
@@ -19695,14 +19771,14 @@ interface components {
19695
19771
  * "object": "reschedule_event",
19696
19772
  * "occurred_at": "2023-01-01T03:00:00Z",
19697
19773
  * "previous_end_at": {
19698
- * "local": "2023-01-01T01:00:00",
19774
+ * "local": "2023-01-01T01:00:00-05:00",
19699
19775
  * "object": "zoned_date_time",
19700
19776
  * "time_zone": "America/New_York",
19701
19777
  * "unix_ts": 1736464800,
19702
19778
  * "utc": "2023-01-01T04:00:00Z"
19703
19779
  * },
19704
19780
  * "previous_start_at": {
19705
- * "local": "2023-01-01T00:00:00",
19781
+ * "local": "2023-01-01T00:00:00-05:00",
19706
19782
  * "object": "zoned_date_time",
19707
19783
  * "time_zone": "America/New_York",
19708
19784
  * "unix_ts": 1736461200,
@@ -19765,7 +19841,7 @@ interface components {
19765
19841
  * "updated_at": "2025-02-17T17:49:19Z"
19766
19842
  * },
19767
19843
  * "start_at": {
19768
- * "local": "2025-03-01T10:00:00",
19844
+ * "local": "2025-03-01T10:00:00-05:00",
19769
19845
  * "object": "zoned_date_time",
19770
19846
  * "time_zone": "America/New_York",
19771
19847
  * "unix_ts": 1736461200,
@@ -19848,7 +19924,7 @@ interface components {
19848
19924
  * {
19849
19925
  * "actor": null,
19850
19926
  * "end_at": {
19851
- * "local": "2023-01-01T01:00:00",
19927
+ * "local": "2023-01-01T01:00:00-05:00",
19852
19928
  * "object": "zoned_date_time",
19853
19929
  * "time_zone": "America/New_York",
19854
19930
  * "unix_ts": 1736464800,
@@ -19859,7 +19935,7 @@ interface components {
19859
19935
  * "occurred_at": "2023-01-01T03:00:00Z",
19860
19936
  * "source": "client_ui",
19861
19937
  * "start_at": {
19862
- * "local": "2023-01-01T00:00:00",
19938
+ * "local": "2023-01-01T00:00:00-05:00",
19863
19939
  * "object": "zoned_date_time",
19864
19940
  * "time_zone": "America/New_York",
19865
19941
  * "unix_ts": 1736461200,
@@ -19870,7 +19946,7 @@ interface components {
19870
19946
  * "confirmed_at": "2025-03-10T15:30:00Z",
19871
19947
  * "created_at": "2025-03-10T14:30:00Z",
19872
19948
  * "end_at": {
19873
- * "local": "2025-03-01T11:00:00",
19949
+ * "local": "2025-03-01T11:00:00-05:00",
19874
19950
  * "object": "zoned_date_time",
19875
19951
  * "time_zone": "America/New_York",
19876
19952
  * "unix_ts": 1736464800,
@@ -19901,14 +19977,14 @@ interface components {
19901
19977
  * "actor": null,
19902
19978
  * "initiated_by": "client",
19903
19979
  * "new_end_at": {
19904
- * "local": "2023-01-01T01:00:00",
19980
+ * "local": "2023-01-01T01:00:00-05:00",
19905
19981
  * "object": "zoned_date_time",
19906
19982
  * "time_zone": "America/New_York",
19907
19983
  * "unix_ts": 1736464800,
19908
19984
  * "utc": "2023-01-01T04:00:00Z"
19909
19985
  * },
19910
19986
  * "new_start_at": {
19911
- * "local": "2023-01-01T00:00:00",
19987
+ * "local": "2023-01-01T00:00:00-05:00",
19912
19988
  * "object": "zoned_date_time",
19913
19989
  * "time_zone": "America/New_York",
19914
19990
  * "unix_ts": 1736461200,
@@ -19917,14 +19993,14 @@ interface components {
19917
19993
  * "object": "reschedule_event",
19918
19994
  * "occurred_at": "2023-01-01T03:00:00Z",
19919
19995
  * "previous_end_at": {
19920
- * "local": "2023-01-01T01:00:00",
19996
+ * "local": "2023-01-01T01:00:00-05:00",
19921
19997
  * "object": "zoned_date_time",
19922
19998
  * "time_zone": "America/New_York",
19923
19999
  * "unix_ts": 1736464800,
19924
20000
  * "utc": "2023-01-01T04:00:00Z"
19925
20001
  * },
19926
20002
  * "previous_start_at": {
19927
- * "local": "2023-01-01T00:00:00",
20003
+ * "local": "2023-01-01T00:00:00-05:00",
19928
20004
  * "object": "zoned_date_time",
19929
20005
  * "time_zone": "America/New_York",
19930
20006
  * "unix_ts": 1736461200,
@@ -19987,7 +20063,7 @@ interface components {
19987
20063
  * "updated_at": "2025-02-17T17:49:19Z"
19988
20064
  * },
19989
20065
  * "start_at": {
19990
- * "local": "2025-03-01T10:00:00",
20066
+ * "local": "2025-03-01T10:00:00-05:00",
19991
20067
  * "object": "zoned_date_time",
19992
20068
  * "time_zone": "America/New_York",
19993
20069
  * "unix_ts": 1736461200,
@@ -20176,9 +20252,9 @@ interface components {
20176
20252
  actor: string | null;
20177
20253
  /**
20178
20254
  * ZonedDateTime
20179
- * @description An object describing a date/time in local time (naive) and in UTC.
20255
+ * @description An object describing a date/time in local time and in UTC.
20180
20256
  * @example {
20181
- * "local": "2025-03-01T10:00:00",
20257
+ * "local": "2025-03-01T10:00:00-05:00",
20182
20258
  * "object": "zoned_date_time",
20183
20259
  * "time_zone": "America/New_York",
20184
20260
  * "unix_ts": 1736461200,
@@ -20187,8 +20263,9 @@ interface components {
20187
20263
  */
20188
20264
  end_at: {
20189
20265
  /**
20190
- * @description The local date/time in ISO-8601 format (without time zone information).
20191
- * @example 2025-03-01T10:00:00
20266
+ * Format: date-time
20267
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20268
+ * @example 2025-03-01T10:00:00-05:00
20192
20269
  */
20193
20270
  local: string;
20194
20271
  /**
@@ -20232,9 +20309,9 @@ interface components {
20232
20309
  source: "client_ui" | "dashboard" | "api";
20233
20310
  /**
20234
20311
  * ZonedDateTime
20235
- * @description An object describing a date/time in local time (naive) and in UTC.
20312
+ * @description An object describing a date/time in local time and in UTC.
20236
20313
  * @example {
20237
- * "local": "2025-03-01T10:00:00",
20314
+ * "local": "2025-03-01T10:00:00-05:00",
20238
20315
  * "object": "zoned_date_time",
20239
20316
  * "time_zone": "America/New_York",
20240
20317
  * "unix_ts": 1736461200,
@@ -20243,8 +20320,9 @@ interface components {
20243
20320
  */
20244
20321
  start_at: {
20245
20322
  /**
20246
- * @description The local date/time in ISO-8601 format (without time zone information).
20247
- * @example 2025-03-01T10:00:00
20323
+ * Format: date-time
20324
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20325
+ * @example 2025-03-01T10:00:00-05:00
20248
20326
  */
20249
20327
  local: string;
20250
20328
  /**
@@ -20282,9 +20360,9 @@ interface components {
20282
20360
  created_at: string;
20283
20361
  /**
20284
20362
  * ZonedDateTime
20285
- * @description An object describing a date/time in local time (naive) and in UTC.
20363
+ * @description An object describing a date/time in local time and in UTC.
20286
20364
  * @example {
20287
- * "local": "2025-03-01T10:00:00",
20365
+ * "local": "2025-03-01T10:00:00-05:00",
20288
20366
  * "object": "zoned_date_time",
20289
20367
  * "time_zone": "America/New_York",
20290
20368
  * "unix_ts": 1736461200,
@@ -20293,8 +20371,9 @@ interface components {
20293
20371
  */
20294
20372
  end_at: {
20295
20373
  /**
20296
- * @description The local date/time in ISO-8601 format (without time zone information).
20297
- * @example 2025-03-01T10:00:00
20374
+ * Format: date-time
20375
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20376
+ * @example 2025-03-01T10:00:00-05:00
20298
20377
  */
20299
20378
  local: string;
20300
20379
  /**
@@ -20392,9 +20471,9 @@ interface components {
20392
20471
  initiated_by: "user" | "client";
20393
20472
  /**
20394
20473
  * ZonedDateTime
20395
- * @description An object describing a date/time in local time (naive) and in UTC.
20474
+ * @description An object describing a date/time in local time and in UTC.
20396
20475
  * @example {
20397
- * "local": "2025-03-01T10:00:00",
20476
+ * "local": "2025-03-01T10:00:00-05:00",
20398
20477
  * "object": "zoned_date_time",
20399
20478
  * "time_zone": "America/New_York",
20400
20479
  * "unix_ts": 1736461200,
@@ -20403,8 +20482,9 @@ interface components {
20403
20482
  */
20404
20483
  new_end_at: {
20405
20484
  /**
20406
- * @description The local date/time in ISO-8601 format (without time zone information).
20407
- * @example 2025-03-01T10:00:00
20485
+ * Format: date-time
20486
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20487
+ * @example 2025-03-01T10:00:00-05:00
20408
20488
  */
20409
20489
  local: string;
20410
20490
  /**
@@ -20431,9 +20511,9 @@ interface components {
20431
20511
  };
20432
20512
  /**
20433
20513
  * ZonedDateTime
20434
- * @description An object describing a date/time in local time (naive) and in UTC.
20514
+ * @description An object describing a date/time in local time and in UTC.
20435
20515
  * @example {
20436
- * "local": "2025-03-01T10:00:00",
20516
+ * "local": "2025-03-01T10:00:00-05:00",
20437
20517
  * "object": "zoned_date_time",
20438
20518
  * "time_zone": "America/New_York",
20439
20519
  * "unix_ts": 1736461200,
@@ -20442,8 +20522,9 @@ interface components {
20442
20522
  */
20443
20523
  new_start_at: {
20444
20524
  /**
20445
- * @description The local date/time in ISO-8601 format (without time zone information).
20446
- * @example 2025-03-01T10:00:00
20525
+ * Format: date-time
20526
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20527
+ * @example 2025-03-01T10:00:00-05:00
20447
20528
  */
20448
20529
  local: string;
20449
20530
  /**
@@ -20477,9 +20558,9 @@ interface components {
20477
20558
  occurred_at: string;
20478
20559
  /**
20479
20560
  * ZonedDateTime
20480
- * @description An object describing a date/time in local time (naive) and in UTC.
20561
+ * @description An object describing a date/time in local time and in UTC.
20481
20562
  * @example {
20482
- * "local": "2025-03-01T10:00:00",
20563
+ * "local": "2025-03-01T10:00:00-05:00",
20483
20564
  * "object": "zoned_date_time",
20484
20565
  * "time_zone": "America/New_York",
20485
20566
  * "unix_ts": 1736461200,
@@ -20488,8 +20569,9 @@ interface components {
20488
20569
  */
20489
20570
  previous_end_at: {
20490
20571
  /**
20491
- * @description The local date/time in ISO-8601 format (without time zone information).
20492
- * @example 2025-03-01T10:00:00
20572
+ * Format: date-time
20573
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20574
+ * @example 2025-03-01T10:00:00-05:00
20493
20575
  */
20494
20576
  local: string;
20495
20577
  /**
@@ -20516,9 +20598,9 @@ interface components {
20516
20598
  };
20517
20599
  /**
20518
20600
  * ZonedDateTime
20519
- * @description An object describing a date/time in local time (naive) and in UTC.
20601
+ * @description An object describing a date/time in local time and in UTC.
20520
20602
  * @example {
20521
- * "local": "2025-03-01T10:00:00",
20603
+ * "local": "2025-03-01T10:00:00-05:00",
20522
20604
  * "object": "zoned_date_time",
20523
20605
  * "time_zone": "America/New_York",
20524
20606
  * "unix_ts": 1736461200,
@@ -20527,8 +20609,9 @@ interface components {
20527
20609
  */
20528
20610
  previous_start_at: {
20529
20611
  /**
20530
- * @description The local date/time in ISO-8601 format (without time zone information).
20531
- * @example 2025-03-01T10:00:00
20612
+ * Format: date-time
20613
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20614
+ * @example 2025-03-01T10:00:00-05:00
20532
20615
  */
20533
20616
  local: string;
20534
20617
  /**
@@ -20808,9 +20891,9 @@ interface components {
20808
20891
  };
20809
20892
  /**
20810
20893
  * ZonedDateTime
20811
- * @description An object describing a date/time in local time (naive) and in UTC.
20894
+ * @description An object describing a date/time in local time and in UTC.
20812
20895
  * @example {
20813
- * "local": "2025-03-01T10:00:00",
20896
+ * "local": "2025-03-01T10:00:00-05:00",
20814
20897
  * "object": "zoned_date_time",
20815
20898
  * "time_zone": "America/New_York",
20816
20899
  * "unix_ts": 1736461200,
@@ -20819,8 +20902,9 @@ interface components {
20819
20902
  */
20820
20903
  start_at: {
20821
20904
  /**
20822
- * @description The local date/time in ISO-8601 format (without time zone information).
20823
- * @example 2025-03-01T10:00:00
20905
+ * Format: date-time
20906
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
20907
+ * @example 2025-03-01T10:00:00-05:00
20824
20908
  */
20825
20909
  local: string;
20826
20910
  /**
@@ -21179,7 +21263,7 @@ interface components {
21179
21263
  * {
21180
21264
  * "actor": null,
21181
21265
  * "end_at": {
21182
- * "local": "2023-01-01T01:00:00",
21266
+ * "local": "2023-01-01T01:00:00-05:00",
21183
21267
  * "object": "zoned_date_time",
21184
21268
  * "time_zone": "America/New_York",
21185
21269
  * "unix_ts": 1736464800,
@@ -21190,7 +21274,7 @@ interface components {
21190
21274
  * "occurred_at": "2023-01-01T03:00:00Z",
21191
21275
  * "source": "client_ui",
21192
21276
  * "start_at": {
21193
- * "local": "2023-01-01T00:00:00",
21277
+ * "local": "2023-01-01T00:00:00-05:00",
21194
21278
  * "object": "zoned_date_time",
21195
21279
  * "time_zone": "America/New_York",
21196
21280
  * "unix_ts": 1736461200,
@@ -21201,7 +21285,7 @@ interface components {
21201
21285
  * "confirmed_at": "2025-03-10T15:30:00Z",
21202
21286
  * "created_at": "2025-03-10T14:30:00Z",
21203
21287
  * "end_at": {
21204
- * "local": "2025-03-01T11:00:00",
21288
+ * "local": "2025-03-01T11:00:00-05:00",
21205
21289
  * "object": "zoned_date_time",
21206
21290
  * "time_zone": "America/New_York",
21207
21291
  * "unix_ts": 1736464800,
@@ -21232,14 +21316,14 @@ interface components {
21232
21316
  * "actor": null,
21233
21317
  * "initiated_by": "client",
21234
21318
  * "new_end_at": {
21235
- * "local": "2023-01-01T01:00:00",
21319
+ * "local": "2023-01-01T01:00:00-05:00",
21236
21320
  * "object": "zoned_date_time",
21237
21321
  * "time_zone": "America/New_York",
21238
21322
  * "unix_ts": 1736464800,
21239
21323
  * "utc": "2023-01-01T04:00:00Z"
21240
21324
  * },
21241
21325
  * "new_start_at": {
21242
- * "local": "2023-01-01T00:00:00",
21326
+ * "local": "2023-01-01T00:00:00-05:00",
21243
21327
  * "object": "zoned_date_time",
21244
21328
  * "time_zone": "America/New_York",
21245
21329
  * "unix_ts": 1736461200,
@@ -21248,14 +21332,14 @@ interface components {
21248
21332
  * "object": "reschedule_event",
21249
21333
  * "occurred_at": "2023-01-01T03:00:00Z",
21250
21334
  * "previous_end_at": {
21251
- * "local": "2023-01-01T01:00:00",
21335
+ * "local": "2023-01-01T01:00:00-05:00",
21252
21336
  * "object": "zoned_date_time",
21253
21337
  * "time_zone": "America/New_York",
21254
21338
  * "unix_ts": 1736464800,
21255
21339
  * "utc": "2023-01-01T04:00:00Z"
21256
21340
  * },
21257
21341
  * "previous_start_at": {
21258
- * "local": "2023-01-01T00:00:00",
21342
+ * "local": "2023-01-01T00:00:00-05:00",
21259
21343
  * "object": "zoned_date_time",
21260
21344
  * "time_zone": "America/New_York",
21261
21345
  * "unix_ts": 1736461200,
@@ -21318,7 +21402,7 @@ interface components {
21318
21402
  * "updated_at": "2025-02-17T17:49:19Z"
21319
21403
  * },
21320
21404
  * "start_at": {
21321
- * "local": "2025-03-01T10:00:00",
21405
+ * "local": "2025-03-01T10:00:00-05:00",
21322
21406
  * "object": "zoned_date_time",
21323
21407
  * "time_zone": "America/New_York",
21324
21408
  * "unix_ts": 1736461200,
@@ -21507,9 +21591,9 @@ interface components {
21507
21591
  actor: string | null;
21508
21592
  /**
21509
21593
  * ZonedDateTime
21510
- * @description An object describing a date/time in local time (naive) and in UTC.
21594
+ * @description An object describing a date/time in local time and in UTC.
21511
21595
  * @example {
21512
- * "local": "2025-03-01T10:00:00",
21596
+ * "local": "2025-03-01T10:00:00-05:00",
21513
21597
  * "object": "zoned_date_time",
21514
21598
  * "time_zone": "America/New_York",
21515
21599
  * "unix_ts": 1736461200,
@@ -21518,8 +21602,9 @@ interface components {
21518
21602
  */
21519
21603
  end_at: {
21520
21604
  /**
21521
- * @description The local date/time in ISO-8601 format (without time zone information).
21522
- * @example 2025-03-01T10:00:00
21605
+ * Format: date-time
21606
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21607
+ * @example 2025-03-01T10:00:00-05:00
21523
21608
  */
21524
21609
  local: string;
21525
21610
  /**
@@ -21563,9 +21648,9 @@ interface components {
21563
21648
  source: "client_ui" | "dashboard" | "api";
21564
21649
  /**
21565
21650
  * ZonedDateTime
21566
- * @description An object describing a date/time in local time (naive) and in UTC.
21651
+ * @description An object describing a date/time in local time and in UTC.
21567
21652
  * @example {
21568
- * "local": "2025-03-01T10:00:00",
21653
+ * "local": "2025-03-01T10:00:00-05:00",
21569
21654
  * "object": "zoned_date_time",
21570
21655
  * "time_zone": "America/New_York",
21571
21656
  * "unix_ts": 1736461200,
@@ -21574,8 +21659,9 @@ interface components {
21574
21659
  */
21575
21660
  start_at: {
21576
21661
  /**
21577
- * @description The local date/time in ISO-8601 format (without time zone information).
21578
- * @example 2025-03-01T10:00:00
21662
+ * Format: date-time
21663
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21664
+ * @example 2025-03-01T10:00:00-05:00
21579
21665
  */
21580
21666
  local: string;
21581
21667
  /**
@@ -21613,9 +21699,9 @@ interface components {
21613
21699
  created_at: string;
21614
21700
  /**
21615
21701
  * ZonedDateTime
21616
- * @description An object describing a date/time in local time (naive) and in UTC.
21702
+ * @description An object describing a date/time in local time and in UTC.
21617
21703
  * @example {
21618
- * "local": "2025-03-01T10:00:00",
21704
+ * "local": "2025-03-01T10:00:00-05:00",
21619
21705
  * "object": "zoned_date_time",
21620
21706
  * "time_zone": "America/New_York",
21621
21707
  * "unix_ts": 1736461200,
@@ -21624,8 +21710,9 @@ interface components {
21624
21710
  */
21625
21711
  end_at: {
21626
21712
  /**
21627
- * @description The local date/time in ISO-8601 format (without time zone information).
21628
- * @example 2025-03-01T10:00:00
21713
+ * Format: date-time
21714
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21715
+ * @example 2025-03-01T10:00:00-05:00
21629
21716
  */
21630
21717
  local: string;
21631
21718
  /**
@@ -21723,9 +21810,9 @@ interface components {
21723
21810
  initiated_by: "user" | "client";
21724
21811
  /**
21725
21812
  * ZonedDateTime
21726
- * @description An object describing a date/time in local time (naive) and in UTC.
21813
+ * @description An object describing a date/time in local time and in UTC.
21727
21814
  * @example {
21728
- * "local": "2025-03-01T10:00:00",
21815
+ * "local": "2025-03-01T10:00:00-05:00",
21729
21816
  * "object": "zoned_date_time",
21730
21817
  * "time_zone": "America/New_York",
21731
21818
  * "unix_ts": 1736461200,
@@ -21734,8 +21821,9 @@ interface components {
21734
21821
  */
21735
21822
  new_end_at: {
21736
21823
  /**
21737
- * @description The local date/time in ISO-8601 format (without time zone information).
21738
- * @example 2025-03-01T10:00:00
21824
+ * Format: date-time
21825
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21826
+ * @example 2025-03-01T10:00:00-05:00
21739
21827
  */
21740
21828
  local: string;
21741
21829
  /**
@@ -21762,9 +21850,9 @@ interface components {
21762
21850
  };
21763
21851
  /**
21764
21852
  * ZonedDateTime
21765
- * @description An object describing a date/time in local time (naive) and in UTC.
21853
+ * @description An object describing a date/time in local time and in UTC.
21766
21854
  * @example {
21767
- * "local": "2025-03-01T10:00:00",
21855
+ * "local": "2025-03-01T10:00:00-05:00",
21768
21856
  * "object": "zoned_date_time",
21769
21857
  * "time_zone": "America/New_York",
21770
21858
  * "unix_ts": 1736461200,
@@ -21773,8 +21861,9 @@ interface components {
21773
21861
  */
21774
21862
  new_start_at: {
21775
21863
  /**
21776
- * @description The local date/time in ISO-8601 format (without time zone information).
21777
- * @example 2025-03-01T10:00:00
21864
+ * Format: date-time
21865
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21866
+ * @example 2025-03-01T10:00:00-05:00
21778
21867
  */
21779
21868
  local: string;
21780
21869
  /**
@@ -21808,9 +21897,9 @@ interface components {
21808
21897
  occurred_at: string;
21809
21898
  /**
21810
21899
  * ZonedDateTime
21811
- * @description An object describing a date/time in local time (naive) and in UTC.
21900
+ * @description An object describing a date/time in local time and in UTC.
21812
21901
  * @example {
21813
- * "local": "2025-03-01T10:00:00",
21902
+ * "local": "2025-03-01T10:00:00-05:00",
21814
21903
  * "object": "zoned_date_time",
21815
21904
  * "time_zone": "America/New_York",
21816
21905
  * "unix_ts": 1736461200,
@@ -21819,8 +21908,9 @@ interface components {
21819
21908
  */
21820
21909
  previous_end_at: {
21821
21910
  /**
21822
- * @description The local date/time in ISO-8601 format (without time zone information).
21823
- * @example 2025-03-01T10:00:00
21911
+ * Format: date-time
21912
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21913
+ * @example 2025-03-01T10:00:00-05:00
21824
21914
  */
21825
21915
  local: string;
21826
21916
  /**
@@ -21847,9 +21937,9 @@ interface components {
21847
21937
  };
21848
21938
  /**
21849
21939
  * ZonedDateTime
21850
- * @description An object describing a date/time in local time (naive) and in UTC.
21940
+ * @description An object describing a date/time in local time and in UTC.
21851
21941
  * @example {
21852
- * "local": "2025-03-01T10:00:00",
21942
+ * "local": "2025-03-01T10:00:00-05:00",
21853
21943
  * "object": "zoned_date_time",
21854
21944
  * "time_zone": "America/New_York",
21855
21945
  * "unix_ts": 1736461200,
@@ -21858,8 +21948,9 @@ interface components {
21858
21948
  */
21859
21949
  previous_start_at: {
21860
21950
  /**
21861
- * @description The local date/time in ISO-8601 format (without time zone information).
21862
- * @example 2025-03-01T10:00:00
21951
+ * Format: date-time
21952
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
21953
+ * @example 2025-03-01T10:00:00-05:00
21863
21954
  */
21864
21955
  local: string;
21865
21956
  /**
@@ -22139,9 +22230,9 @@ interface components {
22139
22230
  };
22140
22231
  /**
22141
22232
  * ZonedDateTime
22142
- * @description An object describing a date/time in local time (naive) and in UTC.
22233
+ * @description An object describing a date/time in local time and in UTC.
22143
22234
  * @example {
22144
- * "local": "2025-03-01T10:00:00",
22235
+ * "local": "2025-03-01T10:00:00-05:00",
22145
22236
  * "object": "zoned_date_time",
22146
22237
  * "time_zone": "America/New_York",
22147
22238
  * "unix_ts": 1736461200,
@@ -22150,8 +22241,9 @@ interface components {
22150
22241
  */
22151
22242
  start_at: {
22152
22243
  /**
22153
- * @description The local date/time in ISO-8601 format (without time zone information).
22154
- * @example 2025-03-01T10:00:00
22244
+ * Format: date-time
22245
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
22246
+ * @example 2025-03-01T10:00:00-05:00
22155
22247
  */
22156
22248
  local: string;
22157
22249
  /**
@@ -22284,7 +22376,7 @@ interface components {
22284
22376
  * },
22285
22377
  * "confirmed_at": "2025-03-10T15:30:00Z",
22286
22378
  * "end_at": {
22287
- * "local": "2025-03-01T11:00:00",
22379
+ * "local": "2025-03-01T11:00:00-05:00",
22288
22380
  * "object": "zoned_date_time",
22289
22381
  * "time_zone": "America/New_York",
22290
22382
  * "unix_ts": 1736464800,
@@ -22297,7 +22389,7 @@ interface components {
22297
22389
  * "disabled_message": "Rescheduling is not available within 24 hours of your appointment"
22298
22390
  * },
22299
22391
  * "start_at": {
22300
- * "local": "2025-03-01T10:00:00",
22392
+ * "local": "2025-03-01T10:00:00-05:00",
22301
22393
  * "object": "zoned_date_time",
22302
22394
  * "time_zone": "America/New_York",
22303
22395
  * "unix_ts": 1736461200,
@@ -23111,7 +23203,7 @@ interface components {
23111
23203
  * {
23112
23204
  * "actor": null,
23113
23205
  * "end_at": {
23114
- * "local": "2023-01-01T01:00:00",
23206
+ * "local": "2023-01-01T01:00:00-05:00",
23115
23207
  * "object": "zoned_date_time",
23116
23208
  * "time_zone": "America/New_York",
23117
23209
  * "unix_ts": 1736464800,
@@ -23122,7 +23214,7 @@ interface components {
23122
23214
  * "occurred_at": "2023-01-01T03:00:00Z",
23123
23215
  * "source": "client_ui",
23124
23216
  * "start_at": {
23125
- * "local": "2023-01-01T00:00:00",
23217
+ * "local": "2023-01-01T00:00:00-05:00",
23126
23218
  * "object": "zoned_date_time",
23127
23219
  * "time_zone": "America/New_York",
23128
23220
  * "unix_ts": 1736461200,
@@ -23133,7 +23225,7 @@ interface components {
23133
23225
  * "confirmed_at": "2025-03-10T15:30:00Z",
23134
23226
  * "created_at": "2025-03-10T14:30:00Z",
23135
23227
  * "end_at": {
23136
- * "local": "2025-03-01T11:00:00",
23228
+ * "local": "2025-03-01T11:00:00-05:00",
23137
23229
  * "object": "zoned_date_time",
23138
23230
  * "time_zone": "America/New_York",
23139
23231
  * "unix_ts": 1736464800,
@@ -23164,14 +23256,14 @@ interface components {
23164
23256
  * "actor": null,
23165
23257
  * "initiated_by": "client",
23166
23258
  * "new_end_at": {
23167
- * "local": "2023-01-01T01:00:00",
23259
+ * "local": "2023-01-01T01:00:00-05:00",
23168
23260
  * "object": "zoned_date_time",
23169
23261
  * "time_zone": "America/New_York",
23170
23262
  * "unix_ts": 1736464800,
23171
23263
  * "utc": "2023-01-01T04:00:00Z"
23172
23264
  * },
23173
23265
  * "new_start_at": {
23174
- * "local": "2023-01-01T00:00:00",
23266
+ * "local": "2023-01-01T00:00:00-05:00",
23175
23267
  * "object": "zoned_date_time",
23176
23268
  * "time_zone": "America/New_York",
23177
23269
  * "unix_ts": 1736461200,
@@ -23180,14 +23272,14 @@ interface components {
23180
23272
  * "object": "reschedule_event",
23181
23273
  * "occurred_at": "2023-01-01T03:00:00Z",
23182
23274
  * "previous_end_at": {
23183
- * "local": "2023-01-01T01:00:00",
23275
+ * "local": "2023-01-01T01:00:00-05:00",
23184
23276
  * "object": "zoned_date_time",
23185
23277
  * "time_zone": "America/New_York",
23186
23278
  * "unix_ts": 1736464800,
23187
23279
  * "utc": "2023-01-01T04:00:00Z"
23188
23280
  * },
23189
23281
  * "previous_start_at": {
23190
- * "local": "2023-01-01T00:00:00",
23282
+ * "local": "2023-01-01T00:00:00-05:00",
23191
23283
  * "object": "zoned_date_time",
23192
23284
  * "time_zone": "America/New_York",
23193
23285
  * "unix_ts": 1736461200,
@@ -23250,7 +23342,7 @@ interface components {
23250
23342
  * "updated_at": "2025-02-17T17:49:19Z"
23251
23343
  * },
23252
23344
  * "start_at": {
23253
- * "local": "2025-03-01T10:00:00",
23345
+ * "local": "2025-03-01T10:00:00-05:00",
23254
23346
  * "object": "zoned_date_time",
23255
23347
  * "time_zone": "America/New_York",
23256
23348
  * "unix_ts": 1736461200,
@@ -23333,7 +23425,7 @@ interface components {
23333
23425
  * {
23334
23426
  * "actor": null,
23335
23427
  * "end_at": {
23336
- * "local": "2023-01-01T01:00:00",
23428
+ * "local": "2023-01-01T01:00:00-05:00",
23337
23429
  * "object": "zoned_date_time",
23338
23430
  * "time_zone": "America/New_York",
23339
23431
  * "unix_ts": 1736464800,
@@ -23344,7 +23436,7 @@ interface components {
23344
23436
  * "occurred_at": "2023-01-01T03:00:00Z",
23345
23437
  * "source": "client_ui",
23346
23438
  * "start_at": {
23347
- * "local": "2023-01-01T00:00:00",
23439
+ * "local": "2023-01-01T00:00:00-05:00",
23348
23440
  * "object": "zoned_date_time",
23349
23441
  * "time_zone": "America/New_York",
23350
23442
  * "unix_ts": 1736461200,
@@ -23355,7 +23447,7 @@ interface components {
23355
23447
  * "confirmed_at": "2025-03-10T15:30:00Z",
23356
23448
  * "created_at": "2025-03-10T14:30:00Z",
23357
23449
  * "end_at": {
23358
- * "local": "2025-03-01T11:00:00",
23450
+ * "local": "2025-03-01T11:00:00-05:00",
23359
23451
  * "object": "zoned_date_time",
23360
23452
  * "time_zone": "America/New_York",
23361
23453
  * "unix_ts": 1736464800,
@@ -23386,14 +23478,14 @@ interface components {
23386
23478
  * "actor": null,
23387
23479
  * "initiated_by": "client",
23388
23480
  * "new_end_at": {
23389
- * "local": "2023-01-01T01:00:00",
23481
+ * "local": "2023-01-01T01:00:00-05:00",
23390
23482
  * "object": "zoned_date_time",
23391
23483
  * "time_zone": "America/New_York",
23392
23484
  * "unix_ts": 1736464800,
23393
23485
  * "utc": "2023-01-01T04:00:00Z"
23394
23486
  * },
23395
23487
  * "new_start_at": {
23396
- * "local": "2023-01-01T00:00:00",
23488
+ * "local": "2023-01-01T00:00:00-05:00",
23397
23489
  * "object": "zoned_date_time",
23398
23490
  * "time_zone": "America/New_York",
23399
23491
  * "unix_ts": 1736461200,
@@ -23402,14 +23494,14 @@ interface components {
23402
23494
  * "object": "reschedule_event",
23403
23495
  * "occurred_at": "2023-01-01T03:00:00Z",
23404
23496
  * "previous_end_at": {
23405
- * "local": "2023-01-01T01:00:00",
23497
+ * "local": "2023-01-01T01:00:00-05:00",
23406
23498
  * "object": "zoned_date_time",
23407
23499
  * "time_zone": "America/New_York",
23408
23500
  * "unix_ts": 1736464800,
23409
23501
  * "utc": "2023-01-01T04:00:00Z"
23410
23502
  * },
23411
23503
  * "previous_start_at": {
23412
- * "local": "2023-01-01T00:00:00",
23504
+ * "local": "2023-01-01T00:00:00-05:00",
23413
23505
  * "object": "zoned_date_time",
23414
23506
  * "time_zone": "America/New_York",
23415
23507
  * "unix_ts": 1736461200,
@@ -23472,7 +23564,7 @@ interface components {
23472
23564
  * "updated_at": "2025-02-17T17:49:19Z"
23473
23565
  * },
23474
23566
  * "start_at": {
23475
- * "local": "2025-03-01T10:00:00",
23567
+ * "local": "2025-03-01T10:00:00-05:00",
23476
23568
  * "object": "zoned_date_time",
23477
23569
  * "time_zone": "America/New_York",
23478
23570
  * "unix_ts": 1736461200,
@@ -23661,9 +23753,9 @@ interface components {
23661
23753
  actor: string | null;
23662
23754
  /**
23663
23755
  * ZonedDateTime
23664
- * @description An object describing a date/time in local time (naive) and in UTC.
23756
+ * @description An object describing a date/time in local time and in UTC.
23665
23757
  * @example {
23666
- * "local": "2025-03-01T10:00:00",
23758
+ * "local": "2025-03-01T10:00:00-05:00",
23667
23759
  * "object": "zoned_date_time",
23668
23760
  * "time_zone": "America/New_York",
23669
23761
  * "unix_ts": 1736461200,
@@ -23672,8 +23764,9 @@ interface components {
23672
23764
  */
23673
23765
  end_at: {
23674
23766
  /**
23675
- * @description The local date/time in ISO-8601 format (without time zone information).
23676
- * @example 2025-03-01T10:00:00
23767
+ * Format: date-time
23768
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
23769
+ * @example 2025-03-01T10:00:00-05:00
23677
23770
  */
23678
23771
  local: string;
23679
23772
  /**
@@ -23717,9 +23810,9 @@ interface components {
23717
23810
  source: "client_ui" | "dashboard" | "api";
23718
23811
  /**
23719
23812
  * ZonedDateTime
23720
- * @description An object describing a date/time in local time (naive) and in UTC.
23813
+ * @description An object describing a date/time in local time and in UTC.
23721
23814
  * @example {
23722
- * "local": "2025-03-01T10:00:00",
23815
+ * "local": "2025-03-01T10:00:00-05:00",
23723
23816
  * "object": "zoned_date_time",
23724
23817
  * "time_zone": "America/New_York",
23725
23818
  * "unix_ts": 1736461200,
@@ -23728,8 +23821,9 @@ interface components {
23728
23821
  */
23729
23822
  start_at: {
23730
23823
  /**
23731
- * @description The local date/time in ISO-8601 format (without time zone information).
23732
- * @example 2025-03-01T10:00:00
23824
+ * Format: date-time
23825
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
23826
+ * @example 2025-03-01T10:00:00-05:00
23733
23827
  */
23734
23828
  local: string;
23735
23829
  /**
@@ -23767,9 +23861,9 @@ interface components {
23767
23861
  created_at: string;
23768
23862
  /**
23769
23863
  * ZonedDateTime
23770
- * @description An object describing a date/time in local time (naive) and in UTC.
23864
+ * @description An object describing a date/time in local time and in UTC.
23771
23865
  * @example {
23772
- * "local": "2025-03-01T10:00:00",
23866
+ * "local": "2025-03-01T10:00:00-05:00",
23773
23867
  * "object": "zoned_date_time",
23774
23868
  * "time_zone": "America/New_York",
23775
23869
  * "unix_ts": 1736461200,
@@ -23778,8 +23872,9 @@ interface components {
23778
23872
  */
23779
23873
  end_at: {
23780
23874
  /**
23781
- * @description The local date/time in ISO-8601 format (without time zone information).
23782
- * @example 2025-03-01T10:00:00
23875
+ * Format: date-time
23876
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
23877
+ * @example 2025-03-01T10:00:00-05:00
23783
23878
  */
23784
23879
  local: string;
23785
23880
  /**
@@ -23877,9 +23972,9 @@ interface components {
23877
23972
  initiated_by: "user" | "client";
23878
23973
  /**
23879
23974
  * ZonedDateTime
23880
- * @description An object describing a date/time in local time (naive) and in UTC.
23975
+ * @description An object describing a date/time in local time and in UTC.
23881
23976
  * @example {
23882
- * "local": "2025-03-01T10:00:00",
23977
+ * "local": "2025-03-01T10:00:00-05:00",
23883
23978
  * "object": "zoned_date_time",
23884
23979
  * "time_zone": "America/New_York",
23885
23980
  * "unix_ts": 1736461200,
@@ -23888,8 +23983,9 @@ interface components {
23888
23983
  */
23889
23984
  new_end_at: {
23890
23985
  /**
23891
- * @description The local date/time in ISO-8601 format (without time zone information).
23892
- * @example 2025-03-01T10:00:00
23986
+ * Format: date-time
23987
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
23988
+ * @example 2025-03-01T10:00:00-05:00
23893
23989
  */
23894
23990
  local: string;
23895
23991
  /**
@@ -23916,9 +24012,9 @@ interface components {
23916
24012
  };
23917
24013
  /**
23918
24014
  * ZonedDateTime
23919
- * @description An object describing a date/time in local time (naive) and in UTC.
24015
+ * @description An object describing a date/time in local time and in UTC.
23920
24016
  * @example {
23921
- * "local": "2025-03-01T10:00:00",
24017
+ * "local": "2025-03-01T10:00:00-05:00",
23922
24018
  * "object": "zoned_date_time",
23923
24019
  * "time_zone": "America/New_York",
23924
24020
  * "unix_ts": 1736461200,
@@ -23927,8 +24023,9 @@ interface components {
23927
24023
  */
23928
24024
  new_start_at: {
23929
24025
  /**
23930
- * @description The local date/time in ISO-8601 format (without time zone information).
23931
- * @example 2025-03-01T10:00:00
24026
+ * Format: date-time
24027
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
24028
+ * @example 2025-03-01T10:00:00-05:00
23932
24029
  */
23933
24030
  local: string;
23934
24031
  /**
@@ -23962,9 +24059,9 @@ interface components {
23962
24059
  occurred_at: string;
23963
24060
  /**
23964
24061
  * ZonedDateTime
23965
- * @description An object describing a date/time in local time (naive) and in UTC.
24062
+ * @description An object describing a date/time in local time and in UTC.
23966
24063
  * @example {
23967
- * "local": "2025-03-01T10:00:00",
24064
+ * "local": "2025-03-01T10:00:00-05:00",
23968
24065
  * "object": "zoned_date_time",
23969
24066
  * "time_zone": "America/New_York",
23970
24067
  * "unix_ts": 1736461200,
@@ -23973,8 +24070,9 @@ interface components {
23973
24070
  */
23974
24071
  previous_end_at: {
23975
24072
  /**
23976
- * @description The local date/time in ISO-8601 format (without time zone information).
23977
- * @example 2025-03-01T10:00:00
24073
+ * Format: date-time
24074
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
24075
+ * @example 2025-03-01T10:00:00-05:00
23978
24076
  */
23979
24077
  local: string;
23980
24078
  /**
@@ -24001,9 +24099,9 @@ interface components {
24001
24099
  };
24002
24100
  /**
24003
24101
  * ZonedDateTime
24004
- * @description An object describing a date/time in local time (naive) and in UTC.
24102
+ * @description An object describing a date/time in local time and in UTC.
24005
24103
  * @example {
24006
- * "local": "2025-03-01T10:00:00",
24104
+ * "local": "2025-03-01T10:00:00-05:00",
24007
24105
  * "object": "zoned_date_time",
24008
24106
  * "time_zone": "America/New_York",
24009
24107
  * "unix_ts": 1736461200,
@@ -24012,8 +24110,9 @@ interface components {
24012
24110
  */
24013
24111
  previous_start_at: {
24014
24112
  /**
24015
- * @description The local date/time in ISO-8601 format (without time zone information).
24016
- * @example 2025-03-01T10:00:00
24113
+ * Format: date-time
24114
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
24115
+ * @example 2025-03-01T10:00:00-05:00
24017
24116
  */
24018
24117
  local: string;
24019
24118
  /**
@@ -24293,9 +24392,9 @@ interface components {
24293
24392
  };
24294
24393
  /**
24295
24394
  * ZonedDateTime
24296
- * @description An object describing a date/time in local time (naive) and in UTC.
24395
+ * @description An object describing a date/time in local time and in UTC.
24297
24396
  * @example {
24298
- * "local": "2025-03-01T10:00:00",
24397
+ * "local": "2025-03-01T10:00:00-05:00",
24299
24398
  * "object": "zoned_date_time",
24300
24399
  * "time_zone": "America/New_York",
24301
24400
  * "unix_ts": 1736461200,
@@ -24304,8 +24403,9 @@ interface components {
24304
24403
  */
24305
24404
  start_at: {
24306
24405
  /**
24307
- * @description The local date/time in ISO-8601 format (without time zone information).
24308
- * @example 2025-03-01T10:00:00
24406
+ * Format: date-time
24407
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
24408
+ * @example 2025-03-01T10:00:00-05:00
24309
24409
  */
24310
24410
  local: string;
24311
24411
  /**
@@ -24433,9 +24533,9 @@ interface components {
24433
24533
  };
24434
24534
  /**
24435
24535
  * ZonedDateTime
24436
- * @description An object describing a date/time in local time (naive) and in UTC.
24536
+ * @description An object describing a date/time in local time and in UTC.
24437
24537
  * @example {
24438
- * "local": "2025-03-01T10:00:00",
24538
+ * "local": "2025-03-01T10:00:00-05:00",
24439
24539
  * "object": "zoned_date_time",
24440
24540
  * "time_zone": "America/New_York",
24441
24541
  * "unix_ts": 1736461200,
@@ -24444,8 +24544,9 @@ interface components {
24444
24544
  */
24445
24545
  ZonedDateTime: {
24446
24546
  /**
24447
- * @description The local date/time in ISO-8601 format (without time zone information).
24448
- * @example 2025-03-01T10:00:00
24547
+ * Format: date-time
24548
+ * @description The local date/time in ISO-8601 format, including the UTC offset (e.g., `2025-03-01T10:00:00-05:00`).
24549
+ * @example 2025-03-01T10:00:00-05:00
24449
24550
  */
24450
24551
  local: string;
24451
24552
  /**