@seamapi/types 1.133.0 → 1.134.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 +4 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -12
- package/dist/devicedb.cjs +3 -0
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +21 -0
- package/lib/seam/connect/openapi.d.ts +17 -12
- package/lib/seam/connect/openapi.js +4 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -0
- package/lib/seam/devicedb/models/device-capability.d.ts +6 -0
- package/lib/seam/devicedb/models/device-capability.js +2 -0
- package/lib/seam/devicedb/models/device-capability.js.map +1 -1
- package/lib/seam/devicedb/models/device-model.d.ts +6 -0
- package/lib/seam/devicedb/models/device-model.js +1 -0
- package/lib/seam/devicedb/models/device-model.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +10 -0
- package/lib/seam/devicedb/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -3
- package/src/lib/seam/devicedb/models/device-capability.ts +2 -0
- package/src/lib/seam/devicedb/models/device-model.ts +1 -0
- package/src/lib/seam/devicedb/route-types.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -9114,9 +9114,10 @@ var openapi_default = {
|
|
|
9114
9114
|
401: { description: "Unauthorized" }
|
|
9115
9115
|
},
|
|
9116
9116
|
security: [
|
|
9117
|
-
{
|
|
9118
|
-
{
|
|
9119
|
-
{
|
|
9117
|
+
{ client_session: [] },
|
|
9118
|
+
{ pat_with_workspace: [] },
|
|
9119
|
+
{ console_session: [] },
|
|
9120
|
+
{ api_key: [] }
|
|
9120
9121
|
],
|
|
9121
9122
|
summary: "/locks/list",
|
|
9122
9123
|
tags: ["/locks"],
|