@seamapi/types 1.247.0 → 1.247.1

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.
@@ -14590,20 +14590,7 @@ export interface Routes {
14590
14590
  };
14591
14591
  commonParams: {};
14592
14592
  formData: {};
14593
- jsonResponse: {
14594
- thermostat_schedule: {
14595
- thermostat_schedule_id: string;
14596
- device_id: string;
14597
- name?: string | undefined;
14598
- climate_preset_key: string;
14599
- max_override_period_minutes?: number;
14600
- starts_at: string;
14601
- ends_at: string;
14602
- created_at: string;
14603
- /** Collection of errors associated with the thermostat schedule, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
14604
- errors?: any;
14605
- };
14606
- };
14593
+ jsonResponse: {};
14607
14594
  };
14608
14595
  '/thermostats/set_fallback_climate_preset': {
14609
14596
  route: '/thermostats/set_fallback_climate_preset';
@@ -15037,22 +15024,7 @@ export interface Routes {
15037
15024
  };
15038
15025
  commonParams: {};
15039
15026
  formData: {};
15040
- jsonResponse: {
15041
- climate_preset: {
15042
- climate_preset_key: string;
15043
- can_edit: boolean;
15044
- can_delete: boolean;
15045
- name?: string | null;
15046
- display_name: string;
15047
- fan_mode_setting?: ('auto' | 'on') | undefined;
15048
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
15049
- cooling_set_point_celsius?: number | undefined;
15050
- heating_set_point_celsius?: number | undefined;
15051
- cooling_set_point_fahrenheit?: number | undefined;
15052
- heating_set_point_fahrenheit?: number | undefined;
15053
- manual_override_allowed: boolean;
15054
- };
15055
- };
15027
+ jsonResponse: {};
15056
15028
  };
15057
15029
  '/user_identities/add_acs_user': {
15058
15030
  route: '/user_identities/add_acs_user';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.247.0",
3
+ "version": "1.247.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -13868,13 +13868,8 @@ export default {
13868
13868
  content: {
13869
13869
  'application/json': {
13870
13870
  schema: {
13871
- properties: {
13872
- ok: { type: 'boolean' },
13873
- thermostat_schedule: {
13874
- $ref: '#/components/schemas/thermostat_schedule',
13875
- },
13876
- },
13877
- required: ['thermostat_schedule', 'ok'],
13871
+ properties: { ok: { type: 'boolean' } },
13872
+ required: ['ok'],
13878
13873
  type: 'object',
13879
13874
  },
13880
13875
  },
@@ -13919,13 +13914,8 @@ export default {
13919
13914
  content: {
13920
13915
  'application/json': {
13921
13916
  schema: {
13922
- properties: {
13923
- ok: { type: 'boolean' },
13924
- thermostat_schedule: {
13925
- $ref: '#/components/schemas/thermostat_schedule',
13926
- },
13927
- },
13928
- required: ['thermostat_schedule', 'ok'],
13917
+ properties: { ok: { type: 'boolean' } },
13918
+ required: ['ok'],
13929
13919
  type: 'object',
13930
13920
  },
13931
13921
  },
@@ -14098,13 +14088,8 @@ export default {
14098
14088
  content: {
14099
14089
  'application/json': {
14100
14090
  schema: {
14101
- properties: {
14102
- climate_preset: {
14103
- $ref: '#/components/schemas/climate_preset',
14104
- },
14105
- ok: { type: 'boolean' },
14106
- },
14107
- required: ['climate_preset', 'ok'],
14091
+ properties: { ok: { type: 'boolean' } },
14092
+ required: ['ok'],
14108
14093
  type: 'object',
14109
14094
  },
14110
14095
  },
@@ -14171,13 +14156,8 @@ export default {
14171
14156
  content: {
14172
14157
  'application/json': {
14173
14158
  schema: {
14174
- properties: {
14175
- climate_preset: {
14176
- $ref: '#/components/schemas/climate_preset',
14177
- },
14178
- ok: { type: 'boolean' },
14179
- },
14180
- required: ['climate_preset', 'ok'],
14159
+ properties: { ok: { type: 'boolean' } },
14160
+ required: ['ok'],
14181
14161
  type: 'object',
14182
14162
  },
14183
14163
  },
@@ -18485,20 +18485,7 @@ export interface Routes {
18485
18485
  }
18486
18486
  commonParams: {}
18487
18487
  formData: {}
18488
- jsonResponse: {
18489
- thermostat_schedule: {
18490
- thermostat_schedule_id: string
18491
- device_id: string
18492
- name?: string | undefined
18493
- climate_preset_key: string
18494
- max_override_period_minutes?: number
18495
- starts_at: string
18496
- ends_at: string
18497
- created_at: string
18498
- /** Collection of errors associated with the thermostat schedule, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
18499
- errors?: any
18500
- }
18501
- }
18488
+ jsonResponse: {}
18502
18489
  }
18503
18490
  '/thermostats/set_fallback_climate_preset': {
18504
18491
  route: '/thermostats/set_fallback_climate_preset'
@@ -18980,22 +18967,7 @@ export interface Routes {
18980
18967
  }
18981
18968
  commonParams: {}
18982
18969
  formData: {}
18983
- jsonResponse: {
18984
- climate_preset: {
18985
- climate_preset_key: string
18986
- can_edit: boolean
18987
- can_delete: boolean
18988
- name?: string | null
18989
- display_name: string
18990
- fan_mode_setting?: ('auto' | 'on') | undefined
18991
- hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined
18992
- cooling_set_point_celsius?: number | undefined
18993
- heating_set_point_celsius?: number | undefined
18994
- cooling_set_point_fahrenheit?: number | undefined
18995
- heating_set_point_fahrenheit?: number | undefined
18996
- manual_override_allowed: boolean
18997
- }
18998
- }
18970
+ jsonResponse: {}
18999
18971
  }
19000
18972
  '/user_identities/add_acs_user': {
19001
18973
  route: '/user_identities/add_acs_user'