@seamapi/types 1.217.0 → 1.218.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
@@ -5723,6 +5723,7 @@ var openapi_default = {
5723
5723
  created_at: { format: "date-time", type: "string" },
5724
5724
  device_id: { format: "uuid", type: "string" },
5725
5725
  enrollment_automation_id: { format: "uuid", type: "string" },
5726
+ event_description: { type: "string" },
5726
5727
  event_id: { format: "uuid", type: "string" },
5727
5728
  event_type: { type: "string" },
5728
5729
  occurred_at: { format: "date-time", type: "string" },
@@ -5733,7 +5734,8 @@ var openapi_default = {
5733
5734
  "event_type",
5734
5735
  "workspace_id",
5735
5736
  "created_at",
5736
- "occurred_at"
5737
+ "occurred_at",
5738
+ "event_description"
5737
5739
  ],
5738
5740
  type: "object"
5739
5741
  },
@@ -8782,13 +8784,18 @@ var openapi_default = {
8782
8784
  },
8783
8785
  "/acs/systems/get": {
8784
8786
  post: {
8787
+ 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
8788
  operationId: "acsSystemsGetPost",
8786
8789
  requestBody: {
8787
8790
  content: {
8788
8791
  "application/json": {
8789
8792
  schema: {
8790
8793
  properties: {
8791
- acs_system_id: { format: "uuid", type: "string" }
8794
+ acs_system_id: {
8795
+ description: "ID of the desired access control system.",
8796
+ format: "uuid",
8797
+ type: "string"
8798
+ }
8792
8799
  },
8793
8800
  required: ["acs_system_id"],
8794
8801
  type: "object"
@@ -8824,7 +8831,9 @@ var openapi_default = {
8824
8831
  tags: ["/acs"],
8825
8832
  "x-fern-sdk-group-name": ["acs", "systems"],
8826
8833
  "x-fern-sdk-method-name": "get",
8827
- "x-fern-sdk-return-value": "acs_system"
8834
+ "x-fern-sdk-return-value": "acs_system",
8835
+ "x-response-key": "acs_system",
8836
+ "x-title": "Get an ACS System"
8828
8837
  }
8829
8838
  },
8830
8839
  "/acs/systems/list": {