Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/lib/seam/connect/models/locations/location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ export const location = z.object({
.string()
.datetime()
.describe('Date and time at which the location object was created.'),
})
}).describe(`
---
undocumented: Will be removed.
route_path: /unstable_locations
---
`)

export type Location = z.infer<typeof location>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const thermostat_daily_program = z.object({
),
}).describe(`
---
route_path: /thermostats/thermostat_daily_programs
route_path: /thermostats/daily_programs
---
Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.
`)
Expand Down
Loading