@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
package/dist/connect.d.cts
CHANGED
|
@@ -12739,6 +12739,7 @@ declare const _default: {
|
|
|
12739
12739
|
};
|
|
12740
12740
|
thermostat_schedule_id: {
|
|
12741
12741
|
format: string;
|
|
12742
|
+
nullable: boolean;
|
|
12742
12743
|
type: string;
|
|
12743
12744
|
};
|
|
12744
12745
|
workspace_id: {
|
|
@@ -36644,7 +36645,7 @@ interface Routes {
|
|
|
36644
36645
|
created_at: string;
|
|
36645
36646
|
occurred_at: string;
|
|
36646
36647
|
event_description: string;
|
|
36647
|
-
thermostat_schedule_id?: string | undefined;
|
|
36648
|
+
thermostat_schedule_id?: (string | undefined) | null;
|
|
36648
36649
|
is_fallback_climate_preset?: boolean | undefined;
|
|
36649
36650
|
climate_preset_key?: string | undefined;
|
|
36650
36651
|
hvac_mode_setting?: string | undefined;
|
|
@@ -36691,7 +36692,7 @@ interface Routes {
|
|
|
36691
36692
|
created_at: string;
|
|
36692
36693
|
occurred_at: string;
|
|
36693
36694
|
event_description: string;
|
|
36694
|
-
thermostat_schedule_id?: string | undefined;
|
|
36695
|
+
thermostat_schedule_id?: (string | undefined) | null;
|
|
36695
36696
|
is_fallback_climate_preset?: boolean | undefined;
|
|
36696
36697
|
climate_preset_key?: string | undefined;
|
|
36697
36698
|
hvac_mode_setting?: string | undefined;
|
|
@@ -3825,7 +3825,11 @@ export default {
|
|
|
3825
3825
|
hvac_mode_setting: { type: 'string' },
|
|
3826
3826
|
is_fallback_climate_preset: { type: 'boolean' },
|
|
3827
3827
|
occurred_at: { format: 'date-time', type: 'string' },
|
|
3828
|
-
thermostat_schedule_id: {
|
|
3828
|
+
thermostat_schedule_id: {
|
|
3829
|
+
format: 'uuid',
|
|
3830
|
+
nullable: true,
|
|
3831
|
+
type: 'string',
|
|
3832
|
+
},
|
|
3829
3833
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
3830
3834
|
},
|
|
3831
3835
|
required: [
|