@seamapi/types 1.217.0 → 1.218.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 CHANGED
@@ -392,11 +392,7 @@ var intercom = zod.z.object({
392
392
  can_remotely_unlock: zod.z.boolean(),
393
393
  can_program_access_codes: zod.z.boolean(),
394
394
  can_unlock_with_face_recognition: zod.z.boolean().default(false),
395
- supports_onvif: zod.z.boolean().default(false),
396
- can_hvac_heat: zod.z.boolean(),
397
- can_hvac_cool: zod.z.boolean(),
398
- can_hvac_heat_cool: zod.z.boolean(),
399
- can_turn_off_hvac: zod.z.boolean()
395
+ supports_onvif: zod.z.boolean().default(false)
400
396
  })
401
397
  });
402
398
  var accessory = zod.z.object({
@@ -5723,6 +5719,7 @@ var openapi_default = {
5723
5719
  created_at: { format: "date-time", type: "string" },
5724
5720
  device_id: { format: "uuid", type: "string" },
5725
5721
  enrollment_automation_id: { format: "uuid", type: "string" },
5722
+ event_description: { type: "string" },
5726
5723
  event_id: { format: "uuid", type: "string" },
5727
5724
  event_type: { type: "string" },
5728
5725
  occurred_at: { format: "date-time", type: "string" },
@@ -5733,7 +5730,8 @@ var openapi_default = {
5733
5730
  "event_type",
5734
5731
  "workspace_id",
5735
5732
  "created_at",
5736
- "occurred_at"
5733
+ "occurred_at",
5734
+ "event_description"
5737
5735
  ],
5738
5736
  type: "object"
5739
5737
  },
@@ -8782,13 +8780,18 @@ var openapi_default = {
8782
8780
  },
8783
8781
  "/acs/systems/get": {
8784
8782
  post: {
8783
+ description: "Returns a specified [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nSpecify the desired access control system by including the corresponding `acs_system_id` in the request body.",
8785
8784
  operationId: "acsSystemsGetPost",
8786
8785
  requestBody: {
8787
8786
  content: {
8788
8787
  "application/json": {
8789
8788
  schema: {
8790
8789
  properties: {
8791
- acs_system_id: { format: "uuid", type: "string" }
8790
+ acs_system_id: {
8791
+ description: "ID of the desired access control system.",
8792
+ format: "uuid",
8793
+ type: "string"
8794
+ }
8792
8795
  },
8793
8796
  required: ["acs_system_id"],
8794
8797
  type: "object"
@@ -8824,7 +8827,9 @@ var openapi_default = {
8824
8827
  tags: ["/acs"],
8825
8828
  "x-fern-sdk-group-name": ["acs", "systems"],
8826
8829
  "x-fern-sdk-method-name": "get",
8827
- "x-fern-sdk-return-value": "acs_system"
8830
+ "x-fern-sdk-return-value": "acs_system",
8831
+ "x-response-key": "acs_system",
8832
+ "x-title": "Get an ACS System"
8828
8833
  }
8829
8834
  },
8830
8835
  "/acs/systems/list": {