@seamapi/types 1.148.1 → 1.149.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 +7 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +41 -12
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +2 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/managed-device.d.ts +18 -0
- package/lib/seam/connect/openapi.d.ts +23 -12
- package/lib/seam/connect/openapi.js +6 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +6 -3
- package/src/lib/seam/connect/route-types.ts +18 -0
package/dist/connect.cjs
CHANGED
|
@@ -1139,7 +1139,9 @@ var openapi_default = {
|
|
|
1139
1139
|
properties: {
|
|
1140
1140
|
device_id: { type: "string" },
|
|
1141
1141
|
device_name: { type: "string" },
|
|
1142
|
-
|
|
1142
|
+
keypad_2_paired: { type: "boolean" },
|
|
1143
|
+
keypad_battery_critical: { type: "boolean" },
|
|
1144
|
+
keypad_paired: { type: "boolean" }
|
|
1143
1145
|
},
|
|
1144
1146
|
required: ["device_id", "device_name"],
|
|
1145
1147
|
type: "object"
|
|
@@ -7343,9 +7345,10 @@ var openapi_default = {
|
|
|
7343
7345
|
401: { description: "Unauthorized" }
|
|
7344
7346
|
},
|
|
7345
7347
|
security: [
|
|
7346
|
-
{
|
|
7347
|
-
{
|
|
7348
|
-
{
|
|
7348
|
+
{ client_session: [] },
|
|
7349
|
+
{ pat_with_workspace: [] },
|
|
7350
|
+
{ console_session: [] },
|
|
7351
|
+
{ api_key: [] }
|
|
7349
7352
|
],
|
|
7350
7353
|
summary: "/connect_webviews/get",
|
|
7351
7354
|
tags: ["/connect_webviews"],
|