@seamapi/types 1.494.0 → 1.496.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.
package/dist/connect.cjs CHANGED
@@ -5337,7 +5337,9 @@ zod.z.object({
5337
5337
  events: seam_event.array().optional(),
5338
5338
  instant_keys: instant_key.array().optional(),
5339
5339
  access_codes: access_code.array().optional(),
5340
- unmanaged_access_codes: unmanaged_access_code.array().optional()
5340
+ unmanaged_access_codes: unmanaged_access_code.array().optional(),
5341
+ thermostat_daily_programs: thermostat_daily_program.array().optional(),
5342
+ thermostat_schedules: thermostat_schedule.array().optional()
5341
5343
  }).describe("A batch of workspace resources.");
5342
5344
  var batch = zod.z.object({
5343
5345
  batch_type: zod.z.enum([
@@ -5368,7 +5370,9 @@ var batch = zod.z.object({
5368
5370
  events: seam_event.array().optional(),
5369
5371
  instant_keys: instant_key.array().optional(),
5370
5372
  access_codes: access_code.array().optional(),
5371
- unmanaged_access_codes: unmanaged_access_code.array().optional()
5373
+ unmanaged_access_codes: unmanaged_access_code.array().optional(),
5374
+ thermostat_daily_programs: thermostat_daily_program.array().optional(),
5375
+ thermostat_schedules: thermostat_schedule.array().optional()
5372
5376
  }).describe("A batch of workspace resources.");
5373
5377
  var bridge = zod.z.object({
5374
5378
  bridge_id: zod.z.string().uuid().describe("ID of Seam Bridge."),
@@ -31932,6 +31936,18 @@ var openapi_default = {
31932
31936
  items: { $ref: "#/components/schemas/space" },
31933
31937
  type: "array"
31934
31938
  },
31939
+ thermostat_daily_programs: {
31940
+ items: {
31941
+ $ref: "#/components/schemas/thermostat_daily_program"
31942
+ },
31943
+ type: "array"
31944
+ },
31945
+ thermostat_schedules: {
31946
+ items: {
31947
+ $ref: "#/components/schemas/thermostat_schedule"
31948
+ },
31949
+ type: "array"
31950
+ },
31935
31951
  unmanaged_access_codes: {
31936
31952
  items: {
31937
31953
  $ref: "#/components/schemas/unmanaged_access_code"
@@ -32127,6 +32143,18 @@ var openapi_default = {
32127
32143
  items: { $ref: "#/components/schemas/space" },
32128
32144
  type: "array"
32129
32145
  },
32146
+ thermostat_daily_programs: {
32147
+ items: {
32148
+ $ref: "#/components/schemas/thermostat_daily_program"
32149
+ },
32150
+ type: "array"
32151
+ },
32152
+ thermostat_schedules: {
32153
+ items: {
32154
+ $ref: "#/components/schemas/thermostat_schedule"
32155
+ },
32156
+ type: "array"
32157
+ },
32130
32158
  unmanaged_access_codes: {
32131
32159
  items: {
32132
32160
  $ref: "#/components/schemas/unmanaged_access_code"
@@ -58053,6 +58081,18 @@ var openapi_default = {
58053
58081
  items: { $ref: "#/components/schemas/space" },
58054
58082
  type: "array"
58055
58083
  },
58084
+ thermostat_daily_programs: {
58085
+ items: {
58086
+ $ref: "#/components/schemas/thermostat_daily_program"
58087
+ },
58088
+ type: "array"
58089
+ },
58090
+ thermostat_schedules: {
58091
+ items: {
58092
+ $ref: "#/components/schemas/thermostat_schedule"
58093
+ },
58094
+ type: "array"
58095
+ },
58056
58096
  unmanaged_access_codes: {
58057
58097
  items: {
58058
58098
  $ref: "#/components/schemas/unmanaged_access_code"
@@ -58125,14 +58165,17 @@ var openapi_default = {
58125
58165
  post: {
58126
58166
  description: "Search for resources inside a workspace.",
58127
58167
  operationId: "workspacesFindAnythingPost",
58128
- parameters: [
58129
- {
58130
- in: "query",
58131
- name: "search",
58132
- required: true,
58133
- schema: { format: "uuid", type: "string" }
58168
+ requestBody: {
58169
+ content: {
58170
+ "application/json": {
58171
+ schema: {
58172
+ properties: { search: { format: "uuid", type: "string" } },
58173
+ required: ["search"],
58174
+ type: "object"
58175
+ }
58176
+ }
58134
58177
  }
58135
- ],
58178
+ },
58136
58179
  responses: {
58137
58180
  200: {
58138
58181
  content: {
@@ -58225,6 +58268,18 @@ var openapi_default = {
58225
58268
  items: { $ref: "#/components/schemas/space" },
58226
58269
  type: "array"
58227
58270
  },
58271
+ thermostat_daily_programs: {
58272
+ items: {
58273
+ $ref: "#/components/schemas/thermostat_daily_program"
58274
+ },
58275
+ type: "array"
58276
+ },
58277
+ thermostat_schedules: {
58278
+ items: {
58279
+ $ref: "#/components/schemas/thermostat_schedule"
58280
+ },
58281
+ type: "array"
58282
+ },
58228
58283
  unmanaged_access_codes: {
58229
58284
  items: {
58230
58285
  $ref: "#/components/schemas/unmanaged_access_code"