@seamapi/types 1.259.0 → 1.259.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.
- package/dist/connect.cjs +5 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -2
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +5 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -1
- package/src/lib/seam/connect/route-types.ts +2 -2
|
@@ -8408,7 +8408,7 @@ export interface Routes {
|
|
|
8408
8408
|
created_at: string;
|
|
8409
8409
|
occurred_at: string;
|
|
8410
8410
|
event_description: string;
|
|
8411
|
-
thermostat_schedule_id?: string | undefined;
|
|
8411
|
+
thermostat_schedule_id?: (string | undefined) | null;
|
|
8412
8412
|
is_fallback_climate_preset?: boolean | undefined;
|
|
8413
8413
|
climate_preset_key?: string | undefined;
|
|
8414
8414
|
hvac_mode_setting?: string | undefined;
|
|
@@ -8455,7 +8455,7 @@ export interface Routes {
|
|
|
8455
8455
|
created_at: string;
|
|
8456
8456
|
occurred_at: string;
|
|
8457
8457
|
event_description: string;
|
|
8458
|
-
thermostat_schedule_id?: string | undefined;
|
|
8458
|
+
thermostat_schedule_id?: (string | undefined) | null;
|
|
8459
8459
|
is_fallback_climate_preset?: boolean | undefined;
|
|
8460
8460
|
climate_preset_key?: string | undefined;
|
|
8461
8461
|
hvac_mode_setting?: string | undefined;
|
package/package.json
CHANGED
|
@@ -3936,7 +3936,11 @@ export default {
|
|
|
3936
3936
|
hvac_mode_setting: { type: 'string' },
|
|
3937
3937
|
is_fallback_climate_preset: { type: 'boolean' },
|
|
3938
3938
|
occurred_at: { format: 'date-time', type: 'string' },
|
|
3939
|
-
thermostat_schedule_id: {
|
|
3939
|
+
thermostat_schedule_id: {
|
|
3940
|
+
format: 'uuid',
|
|
3941
|
+
nullable: true,
|
|
3942
|
+
type: 'string',
|
|
3943
|
+
},
|
|
3940
3944
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
3941
3945
|
},
|
|
3942
3946
|
required: [
|
|
@@ -10324,7 +10324,7 @@ export interface Routes {
|
|
|
10324
10324
|
created_at: string
|
|
10325
10325
|
occurred_at: string
|
|
10326
10326
|
event_description: string
|
|
10327
|
-
thermostat_schedule_id?: string | undefined
|
|
10327
|
+
thermostat_schedule_id?: (string | undefined) | null
|
|
10328
10328
|
is_fallback_climate_preset?: boolean | undefined
|
|
10329
10329
|
climate_preset_key?: string | undefined
|
|
10330
10330
|
hvac_mode_setting?: string | undefined
|
|
@@ -10506,7 +10506,7 @@ export interface Routes {
|
|
|
10506
10506
|
created_at: string
|
|
10507
10507
|
occurred_at: string
|
|
10508
10508
|
event_description: string
|
|
10509
|
-
thermostat_schedule_id?: string | undefined
|
|
10509
|
+
thermostat_schedule_id?: (string | undefined) | null
|
|
10510
10510
|
is_fallback_climate_preset?: boolean | undefined
|
|
10511
10511
|
climate_preset_key?: string | undefined
|
|
10512
10512
|
hvac_mode_setting?: string | undefined
|