@seamapi/types 1.577.0 → 1.579.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.
@@ -11061,6 +11061,8 @@ export type Routes = {
11061
11061
  } | undefined) | undefined;
11062
11062
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
11063
11063
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
11064
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
11065
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
11064
11066
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
11065
11067
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
11066
11068
  });
@@ -14242,6 +14244,8 @@ export type Routes = {
14242
14244
  } | undefined) | undefined;
14243
14245
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
14244
14246
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
14247
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
14248
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
14245
14249
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
14246
14250
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
14247
14251
  });
@@ -32736,6 +32740,8 @@ export type Routes = {
32736
32740
  } | undefined) | undefined;
32737
32741
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
32738
32742
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
32743
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
32744
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
32739
32745
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
32740
32746
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
32741
32747
  });
@@ -33987,6 +33993,8 @@ export type Routes = {
33987
33993
  } | undefined) | undefined;
33988
33994
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
33989
33995
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
33996
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
33997
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
33990
33998
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
33991
33999
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
33992
34000
  });
@@ -34828,8 +34836,6 @@ export type Routes = {
34828
34836
  manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
34829
34837
  /** Array of device IDs for which you want to list devices. */
34830
34838
  device_ids?: string[] | undefined;
34831
- /** Numerical limit on the number of devices to return. */
34832
- limit?: number;
34833
34839
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
34834
34840
  created_before?: Date | undefined;
34835
34841
  /** Your own internal user ID for the user for which you want to list devices. */
@@ -34851,6 +34857,8 @@ export type Routes = {
34851
34857
  space_id?: string | undefined;
34852
34858
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
34853
34859
  search?: string | undefined;
34860
+ /** Numerical limit on the number of devices to return. */
34861
+ limit?: number;
34854
34862
  };
34855
34863
  formData: {};
34856
34864
  jsonResponse: {
@@ -35234,6 +35242,15 @@ export type Routes = {
35234
35242
  can_simulate_hub_disconnection?: boolean | undefined;
35235
35243
  can_simulate_paid_subscription?: boolean | undefined;
35236
35244
  }[];
35245
+ /** Information about the current page of results. */
35246
+ pagination: {
35247
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
35248
+ next_page_cursor: string | null;
35249
+ /** Indicates whether there is another page of results after this one. */
35250
+ has_next_page: boolean;
35251
+ /** URL to get the next page of results. */
35252
+ next_page_url: string | null;
35253
+ };
35237
35254
  };
35238
35255
  };
35239
35256
  '/devices/unmanaged/update': {
@@ -40141,6 +40158,8 @@ export type Routes = {
40141
40158
  } | undefined) | undefined;
40142
40159
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
40143
40160
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
40161
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
40162
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
40144
40163
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
40145
40164
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
40146
40165
  });
@@ -41343,6 +41362,8 @@ export type Routes = {
41343
41362
  } | undefined) | undefined;
41344
41363
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
41345
41364
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
41365
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
41366
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
41346
41367
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
41347
41368
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
41348
41369
  });
@@ -42594,6 +42615,8 @@ export type Routes = {
42594
42615
  } | undefined) | undefined;
42595
42616
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
42596
42617
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
42618
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
42619
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
42597
42620
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
42598
42621
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
42599
42622
  });
@@ -43795,6 +43818,8 @@ export type Routes = {
43795
43818
  } | undefined) | undefined;
43796
43819
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
43797
43820
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
43821
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
43822
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
43798
43823
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
43799
43824
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
43800
43825
  });
@@ -50084,6 +50109,8 @@ export type Routes = {
50084
50109
  } | undefined) | undefined;
50085
50110
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
50086
50111
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
50112
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
50113
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
50087
50114
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
50088
50115
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
50089
50116
  });
@@ -51285,6 +51312,8 @@ export type Routes = {
51285
51312
  } | undefined) | undefined;
51286
51313
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
51287
51314
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
51315
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
51316
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
51288
51317
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
51289
51318
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
51290
51319
  });
@@ -60006,6 +60035,8 @@ export type Routes = {
60006
60035
  } | undefined) | undefined;
60007
60036
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
60008
60037
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
60038
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
60039
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
60009
60040
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
60010
60041
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
60011
60042
  });
@@ -65597,6 +65628,8 @@ export type Routes = {
65597
65628
  } | undefined) | undefined;
65598
65629
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
65599
65630
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
65631
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
65632
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
65600
65633
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
65601
65634
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
65602
65635
  });
@@ -69380,6 +69413,8 @@ export type Routes = {
69380
69413
  } | undefined) | undefined;
69381
69414
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
69382
69415
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
69416
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
69417
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
69383
69418
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
69384
69419
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
69385
69420
  });
@@ -70581,6 +70616,8 @@ export type Routes = {
70581
70616
  } | undefined) | undefined;
70582
70617
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
70583
70618
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
70619
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
70620
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
70584
70621
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
70585
70622
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
70586
70623
  });
@@ -77725,6 +77762,8 @@ export type Routes = {
77725
77762
  } | undefined) | undefined;
77726
77763
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
77727
77764
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
77765
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
77766
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
77728
77767
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
77729
77768
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
77730
77769
  });
@@ -78928,6 +78967,8 @@ export type Routes = {
78928
78967
  } | undefined) | undefined;
78929
78968
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
78930
78969
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
78970
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
78971
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
78931
78972
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
78932
78973
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
78933
78974
  });
@@ -80901,6 +80942,8 @@ export type Routes = {
80901
80942
  } | undefined) | undefined;
80902
80943
  /** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
80903
80944
  thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
80945
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
80946
+ max_unique_climate_presets_per_thermostat_weekly_program?: (number | undefined) | undefined;
80904
80947
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
80905
80948
  max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
80906
80949
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.577.0",
3
+ "version": "1.579.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -227,6 +227,14 @@ export const thermostat_capability_properties = z
227
227
  ---
228
228
  Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour.
229
229
  `),
230
+ max_unique_climate_presets_per_thermostat_weekly_program: z
231
+ .number()
232
+ .optional().describe(`
233
+ ---
234
+ property_group_key: thermostats
235
+ ---
236
+ Maximum number of climate presets that the thermostat can support for weekly programming.
237
+ `),
230
238
  max_thermostat_daily_program_periods_per_day: z.number().optional()
231
239
  .describe(`
232
240
  ---
@@ -12311,6 +12311,14 @@ export default {
12311
12311
  type: 'number',
12312
12312
  'x-property-group-key': 'thermostats',
12313
12313
  },
12314
+ max_unique_climate_presets_per_thermostat_weekly_program:
12315
+ {
12316
+ description:
12317
+ 'Maximum number of climate presets that the thermostat can support for weekly programming.',
12318
+ format: 'float',
12319
+ type: 'number',
12320
+ 'x-property-group-key': 'thermostats',
12321
+ },
12314
12322
  min_cooling_set_point_celsius: {
12315
12323
  description:
12316
12324
  'Minimum [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points#cooling-set-point) in °C.',
@@ -42456,17 +42464,6 @@ export default {
42456
42464
  type: 'array',
42457
42465
  },
42458
42466
  },
42459
- {
42460
- in: 'query',
42461
- name: 'limit',
42462
- schema: {
42463
- default: 500,
42464
- description:
42465
- 'Numerical limit on the number of devices to return.',
42466
- format: 'float',
42467
- type: 'number',
42468
- },
42469
- },
42470
42467
  {
42471
42468
  in: 'query',
42472
42469
  name: 'created_before',
@@ -42597,6 +42594,17 @@ export default {
42597
42594
  type: 'string',
42598
42595
  },
42599
42596
  },
42597
+ {
42598
+ in: 'query',
42599
+ name: 'limit',
42600
+ schema: {
42601
+ default: 22_900,
42602
+ description:
42603
+ 'Numerical limit on the number of devices to return.',
42604
+ format: 'float',
42605
+ type: 'number',
42606
+ },
42607
+ },
42600
42608
  ],
42601
42609
  responses: {
42602
42610
  200: {
@@ -42609,8 +42617,9 @@ export default {
42609
42617
  type: 'array',
42610
42618
  },
42611
42619
  ok: { type: 'boolean' },
42620
+ pagination: { $ref: '#/components/schemas/pagination' },
42612
42621
  },
42613
- required: ['devices', 'ok'],
42622
+ required: ['devices', 'pagination', 'ok'],
42614
42623
  type: 'object',
42615
42624
  },
42616
42625
  },
@@ -42875,7 +42884,7 @@ export default {
42875
42884
  'x-undocumented': 'Only used internally.',
42876
42885
  },
42877
42886
  limit: {
42878
- default: 500,
42887
+ default: 22_900,
42879
42888
  description:
42880
42889
  'Numerical limit on the number of devices to return.',
42881
42890
  format: 'float',
@@ -42975,8 +42984,9 @@ export default {
42975
42984
  type: 'array',
42976
42985
  },
42977
42986
  ok: { type: 'boolean' },
42987
+ pagination: { $ref: '#/components/schemas/pagination' },
42978
42988
  },
42979
- required: ['devices', 'ok'],
42989
+ required: ['devices', 'pagination', 'ok'],
42980
42990
  type: 'object',
42981
42991
  },
42982
42992
  },
@@ -12625,6 +12625,10 @@ export type Routes = {
12625
12625
  thermostat_daily_program_period_precision_minutes?:
12626
12626
  | (number | undefined)
12627
12627
  | undefined
12628
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
12629
+ max_unique_climate_presets_per_thermostat_weekly_program?:
12630
+ | (number | undefined)
12631
+ | undefined
12628
12632
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
12629
12633
  max_thermostat_daily_program_periods_per_day?:
12630
12634
  | (number | undefined)
@@ -16469,6 +16473,10 @@ export type Routes = {
16469
16473
  thermostat_daily_program_period_precision_minutes?:
16470
16474
  | (number | undefined)
16471
16475
  | undefined
16476
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
16477
+ max_unique_climate_presets_per_thermostat_weekly_program?:
16478
+ | (number | undefined)
16479
+ | undefined
16472
16480
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
16473
16481
  max_thermostat_daily_program_periods_per_day?:
16474
16482
  | (number | undefined)
@@ -38152,6 +38160,10 @@ export type Routes = {
38152
38160
  thermostat_daily_program_period_precision_minutes?:
38153
38161
  | (number | undefined)
38154
38162
  | undefined
38163
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
38164
+ max_unique_climate_presets_per_thermostat_weekly_program?:
38165
+ | (number | undefined)
38166
+ | undefined
38155
38167
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
38156
38168
  max_thermostat_daily_program_periods_per_day?:
38157
38169
  | (number | undefined)
@@ -39875,6 +39887,10 @@ export type Routes = {
39875
39887
  thermostat_daily_program_period_precision_minutes?:
39876
39888
  | (number | undefined)
39877
39889
  | undefined
39890
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
39891
+ max_unique_climate_presets_per_thermostat_weekly_program?:
39892
+ | (number | undefined)
39893
+ | undefined
39878
39894
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
39879
39895
  max_thermostat_daily_program_periods_per_day?:
39880
39896
  | (number | undefined)
@@ -41031,8 +41047,6 @@ export type Routes = {
41031
41047
  | undefined
41032
41048
  /** Array of device IDs for which you want to list devices. */
41033
41049
  device_ids?: string[] | undefined
41034
- /** Numerical limit on the number of devices to return. */
41035
- limit?: number
41036
41050
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
41037
41051
  created_before?: Date | undefined
41038
41052
  /** Your own internal user ID for the user for which you want to list devices. */
@@ -41094,6 +41108,8 @@ export type Routes = {
41094
41108
  space_id?: string | undefined
41095
41109
  /** String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`. */
41096
41110
  search?: string | undefined
41111
+ /** Numerical limit on the number of devices to return. */
41112
+ limit?: number
41097
41113
  }
41098
41114
  formData: {}
41099
41115
  jsonResponse: {
@@ -41564,6 +41580,15 @@ export type Routes = {
41564
41580
  can_simulate_hub_disconnection?: boolean | undefined
41565
41581
  can_simulate_paid_subscription?: boolean | undefined
41566
41582
  }[]
41583
+ /** Information about the current page of results. */
41584
+ pagination: {
41585
+ /** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
41586
+ next_page_cursor: string | null
41587
+ /** Indicates whether there is another page of results after this one. */
41588
+ has_next_page: boolean
41589
+ /** URL to get the next page of results. */
41590
+ next_page_url: string | null
41591
+ }
41567
41592
  }
41568
41593
  }
41569
41594
  '/devices/unmanaged/update': {
@@ -47607,6 +47632,10 @@ export type Routes = {
47607
47632
  thermostat_daily_program_period_precision_minutes?:
47608
47633
  | (number | undefined)
47609
47634
  | undefined
47635
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
47636
+ max_unique_climate_presets_per_thermostat_weekly_program?:
47637
+ | (number | undefined)
47638
+ | undefined
47610
47639
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
47611
47640
  max_thermostat_daily_program_periods_per_day?:
47612
47641
  | (number | undefined)
@@ -49112,6 +49141,10 @@ export type Routes = {
49112
49141
  thermostat_daily_program_period_precision_minutes?:
49113
49142
  | (number | undefined)
49114
49143
  | undefined
49144
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
49145
+ max_unique_climate_presets_per_thermostat_weekly_program?:
49146
+ | (number | undefined)
49147
+ | undefined
49115
49148
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
49116
49149
  max_thermostat_daily_program_periods_per_day?:
49117
49150
  | (number | undefined)
@@ -50797,6 +50830,10 @@ export type Routes = {
50797
50830
  thermostat_daily_program_period_precision_minutes?:
50798
50831
  | (number | undefined)
50799
50832
  | undefined
50833
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
50834
+ max_unique_climate_presets_per_thermostat_weekly_program?:
50835
+ | (number | undefined)
50836
+ | undefined
50800
50837
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
50801
50838
  max_thermostat_daily_program_periods_per_day?:
50802
50839
  | (number | undefined)
@@ -52301,6 +52338,10 @@ export type Routes = {
52301
52338
  thermostat_daily_program_period_precision_minutes?:
52302
52339
  | (number | undefined)
52303
52340
  | undefined
52341
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
52342
+ max_unique_climate_presets_per_thermostat_weekly_program?:
52343
+ | (number | undefined)
52344
+ | undefined
52304
52345
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
52305
52346
  max_thermostat_daily_program_periods_per_day?:
52306
52347
  | (number | undefined)
@@ -59689,6 +59730,10 @@ export type Routes = {
59689
59730
  thermostat_daily_program_period_precision_minutes?:
59690
59731
  | (number | undefined)
59691
59732
  | undefined
59733
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
59734
+ max_unique_climate_presets_per_thermostat_weekly_program?:
59735
+ | (number | undefined)
59736
+ | undefined
59692
59737
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
59693
59738
  max_thermostat_daily_program_periods_per_day?:
59694
59739
  | (number | undefined)
@@ -61193,6 +61238,10 @@ export type Routes = {
61193
61238
  thermostat_daily_program_period_precision_minutes?:
61194
61239
  | (number | undefined)
61195
61240
  | undefined
61241
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
61242
+ max_unique_climate_presets_per_thermostat_weekly_program?:
61243
+ | (number | undefined)
61244
+ | undefined
61196
61245
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
61197
61246
  max_thermostat_daily_program_periods_per_day?:
61198
61247
  | (number | undefined)
@@ -71554,6 +71603,10 @@ export type Routes = {
71554
71603
  thermostat_daily_program_period_precision_minutes?:
71555
71604
  | (number | undefined)
71556
71605
  | undefined
71606
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
71607
+ max_unique_climate_presets_per_thermostat_weekly_program?:
71608
+ | (number | undefined)
71609
+ | undefined
71557
71610
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
71558
71611
  max_thermostat_daily_program_periods_per_day?:
71559
71612
  | (number | undefined)
@@ -78125,6 +78178,10 @@ export type Routes = {
78125
78178
  thermostat_daily_program_period_precision_minutes?:
78126
78179
  | (number | undefined)
78127
78180
  | undefined
78181
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
78182
+ max_unique_climate_presets_per_thermostat_weekly_program?:
78183
+ | (number | undefined)
78184
+ | undefined
78128
78185
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
78129
78186
  max_thermostat_daily_program_periods_per_day?:
78130
78187
  | (number | undefined)
@@ -82656,6 +82713,10 @@ export type Routes = {
82656
82713
  thermostat_daily_program_period_precision_minutes?:
82657
82714
  | (number | undefined)
82658
82715
  | undefined
82716
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
82717
+ max_unique_climate_presets_per_thermostat_weekly_program?:
82718
+ | (number | undefined)
82719
+ | undefined
82659
82720
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
82660
82721
  max_thermostat_daily_program_periods_per_day?:
82661
82722
  | (number | undefined)
@@ -84160,6 +84221,10 @@ export type Routes = {
84160
84221
  thermostat_daily_program_period_precision_minutes?:
84161
84222
  | (number | undefined)
84162
84223
  | undefined
84224
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
84225
+ max_unique_climate_presets_per_thermostat_weekly_program?:
84226
+ | (number | undefined)
84227
+ | undefined
84163
84228
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
84164
84229
  max_thermostat_daily_program_periods_per_day?:
84165
84230
  | (number | undefined)
@@ -92415,6 +92480,10 @@ export type Routes = {
92415
92480
  thermostat_daily_program_period_precision_minutes?:
92416
92481
  | (number | undefined)
92417
92482
  | undefined
92483
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
92484
+ max_unique_climate_presets_per_thermostat_weekly_program?:
92485
+ | (number | undefined)
92486
+ | undefined
92418
92487
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
92419
92488
  max_thermostat_daily_program_periods_per_day?:
92420
92489
  | (number | undefined)
@@ -93921,6 +93990,10 @@ export type Routes = {
93921
93990
  thermostat_daily_program_period_precision_minutes?:
93922
93991
  | (number | undefined)
93923
93992
  | undefined
93993
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
93994
+ max_unique_climate_presets_per_thermostat_weekly_program?:
93995
+ | (number | undefined)
93996
+ | undefined
93924
93997
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
93925
93998
  max_thermostat_daily_program_periods_per_day?:
93926
93999
  | (number | undefined)
@@ -96307,6 +96380,10 @@ export type Routes = {
96307
96380
  thermostat_daily_program_period_precision_minutes?:
96308
96381
  | (number | undefined)
96309
96382
  | undefined
96383
+ /** Maximum number of climate presets that the thermostat can support for weekly programming. */
96384
+ max_unique_climate_presets_per_thermostat_weekly_program?:
96385
+ | (number | undefined)
96386
+ | undefined
96310
96387
  /** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
96311
96388
  max_thermostat_daily_program_periods_per_day?:
96312
96389
  | (number | undefined)