@seamapi/types 1.448.0 → 1.449.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 +20 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +35 -0
- package/dist/index.cjs +20 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +33 -0
- package/lib/seam/connect/openapi.js +17 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +19 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
package/dist/connect.cjs
CHANGED
|
@@ -39205,6 +39205,20 @@ var openapi_default = {
|
|
|
39205
39205
|
"application/json": {
|
|
39206
39206
|
schema: {
|
|
39207
39207
|
properties: {
|
|
39208
|
+
accepted_capabilities: {
|
|
39209
|
+
description: "List of accepted device capabilities that restrict the types of devices that can be connected through this connected account. Valid values are `lock`, `thermostat`, `noise_sensor`, and `access_control`.",
|
|
39210
|
+
items: {
|
|
39211
|
+
description: "\n High-level device capabilities that can be restricted in connect webviews.\n These represent the main device categories that customers can opt into.\n",
|
|
39212
|
+
enum: [
|
|
39213
|
+
"lock",
|
|
39214
|
+
"thermostat",
|
|
39215
|
+
"noise_sensor",
|
|
39216
|
+
"access_control"
|
|
39217
|
+
],
|
|
39218
|
+
type: "string"
|
|
39219
|
+
},
|
|
39220
|
+
type: "array"
|
|
39221
|
+
},
|
|
39208
39222
|
automatically_manage_new_devices: {
|
|
39209
39223
|
description: "Indicates whether newly-added devices should appear as [managed devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).",
|
|
39210
39224
|
type: "boolean"
|
|
@@ -48789,7 +48803,8 @@ var openapi_default = {
|
|
|
48789
48803
|
security: [
|
|
48790
48804
|
{ pat_with_workspace: [] },
|
|
48791
48805
|
{ console_session_with_workspace: [] },
|
|
48792
|
-
{ api_key: [] }
|
|
48806
|
+
{ api_key: [] },
|
|
48807
|
+
{ client_session_with_customer: [] }
|
|
48793
48808
|
],
|
|
48794
48809
|
summary: "/spaces/create",
|
|
48795
48810
|
tags: [],
|
|
@@ -49237,7 +49252,8 @@ var openapi_default = {
|
|
|
49237
49252
|
security: [
|
|
49238
49253
|
{ pat_with_workspace: [] },
|
|
49239
49254
|
{ console_session_with_workspace: [] },
|
|
49240
|
-
{ api_key: [] }
|
|
49255
|
+
{ api_key: [] },
|
|
49256
|
+
{ client_session_with_customer: [] }
|
|
49241
49257
|
],
|
|
49242
49258
|
summary: "/spaces/list",
|
|
49243
49259
|
tags: [],
|
|
@@ -49296,7 +49312,8 @@ var openapi_default = {
|
|
|
49296
49312
|
security: [
|
|
49297
49313
|
{ pat_with_workspace: [] },
|
|
49298
49314
|
{ console_session_with_workspace: [] },
|
|
49299
|
-
{ api_key: [] }
|
|
49315
|
+
{ api_key: [] },
|
|
49316
|
+
{ client_session_with_customer: [] }
|
|
49300
49317
|
],
|
|
49301
49318
|
summary: "/spaces/list",
|
|
49302
49319
|
tags: [],
|