@seamapi/types 1.136.0 → 1.137.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
@@ -7920,6 +7920,47 @@ var openapi_default = {
7920
7920
  "x-fern-sdk-return-value": "device_providers"
7921
7921
  }
7922
7922
  },
7923
+ "/devices/simulate/remove": {
7924
+ post: {
7925
+ operationId: "devicesSimulateRemovePost",
7926
+ requestBody: {
7927
+ content: {
7928
+ "application/json": {
7929
+ schema: {
7930
+ properties: { device_id: { format: "uuid", type: "string" } },
7931
+ required: ["device_id"],
7932
+ type: "object"
7933
+ }
7934
+ }
7935
+ }
7936
+ },
7937
+ responses: {
7938
+ 200: {
7939
+ content: {
7940
+ "application/json": {
7941
+ schema: {
7942
+ properties: { ok: { type: "boolean" } },
7943
+ required: ["ok"],
7944
+ type: "object"
7945
+ }
7946
+ }
7947
+ },
7948
+ description: "OK"
7949
+ },
7950
+ 400: { description: "Bad Request" },
7951
+ 401: { description: "Unauthorized" }
7952
+ },
7953
+ security: [
7954
+ { api_key: [] },
7955
+ { pat_with_workspace: [] },
7956
+ { console_session: [] }
7957
+ ],
7958
+ summary: "/devices/simulate/remove",
7959
+ tags: ["/devices"],
7960
+ "x-fern-sdk-group-name": ["devices", "simulate"],
7961
+ "x-fern-sdk-method-name": "remove"
7962
+ }
7963
+ },
7923
7964
  "/devices/unmanaged/get": {
7924
7965
  post: {
7925
7966
  operationId: "devicesUnmanagedGetPost",