@seamapi/types 1.263.0 → 1.263.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 +9 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +445 -0
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +9 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +439 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +9 -5
- package/src/lib/seam/connect/route-types.ts +613 -0
package/dist/connect.cjs
CHANGED
|
@@ -10451,7 +10451,7 @@ var openapi_default = {
|
|
|
10451
10451
|
},
|
|
10452
10452
|
"/acs/systems/list": {
|
|
10453
10453
|
post: {
|
|
10454
|
-
description: "Returns a list of all [access control systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access control systems by a specific connected account ID, include the
|
|
10454
|
+
description: "Returns a list of all [access control systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access control systems by a specific connected account ID, include the\n`connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the\nresponse includes all access control systems connected to your workspace.",
|
|
10455
10455
|
operationId: "acsSystemsListPost",
|
|
10456
10456
|
requestBody: {
|
|
10457
10457
|
content: {
|
|
@@ -10508,7 +10508,7 @@ var openapi_default = {
|
|
|
10508
10508
|
},
|
|
10509
10509
|
"/acs/systems/list_compatible_credential_manager_acs_systems": {
|
|
10510
10510
|
post: {
|
|
10511
|
-
description: "Returns a list of all credential manager ACS systems that are compatible with a specified
|
|
10511
|
+
description: "Returns a list of all credential manager ACS systems that are compatible with a specified\n[access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nSpecify the ACS system for which you want to retrieve all compatible credential manager ACS\nsystems by including the corresponding `acs_system_id` in the request body.",
|
|
10512
10512
|
operationId: "acsSystemsListCompatibleCredentialManagerAcsSystemsPost",
|
|
10513
10513
|
requestBody: {
|
|
10514
10514
|
content: {
|
|
@@ -16513,13 +16513,17 @@ var openapi_default = {
|
|
|
16513
16513
|
"application/json": {
|
|
16514
16514
|
schema: {
|
|
16515
16515
|
properties: {
|
|
16516
|
+
devices: {
|
|
16517
|
+
items: { $ref: "#/components/schemas/device" },
|
|
16518
|
+
type: "array"
|
|
16519
|
+
},
|
|
16516
16520
|
ok: { type: "boolean" },
|
|
16517
16521
|
thermostats: {
|
|
16518
16522
|
items: { $ref: "#/components/schemas/device" },
|
|
16519
16523
|
type: "array"
|
|
16520
16524
|
}
|
|
16521
16525
|
},
|
|
16522
|
-
required: ["thermostats", "ok"],
|
|
16526
|
+
required: ["thermostats", "devices", "ok"],
|
|
16523
16527
|
type: "object"
|
|
16524
16528
|
}
|
|
16525
16529
|
}
|
|
@@ -16539,8 +16543,8 @@ var openapi_default = {
|
|
|
16539
16543
|
tags: ["/thermostats"],
|
|
16540
16544
|
"x-fern-sdk-group-name": ["thermostats"],
|
|
16541
16545
|
"x-fern-sdk-method-name": "list",
|
|
16542
|
-
"x-fern-sdk-return-value": "
|
|
16543
|
-
"x-response-key": "
|
|
16546
|
+
"x-fern-sdk-return-value": "devices",
|
|
16547
|
+
"x-response-key": "devices"
|
|
16544
16548
|
}
|
|
16545
16549
|
},
|
|
16546
16550
|
"/thermostats/off": {
|