@seamapi/types 1.108.1 → 1.109.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 +36 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +39 -0
- package/dist/devicedb.cjs +5 -16
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +98 -130
- package/lib/seam/connect/openapi.d.ts +39 -0
- package/lib/seam/connect/openapi.js +36 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/devicedb/index.d.ts +2 -2
- package/lib/seam/devicedb/index.js +1 -1
- package/lib/seam/devicedb/index.js.map +1 -1
- package/lib/seam/devicedb/models/device-capability.js.map +1 -0
- package/lib/seam/devicedb/{public-models/device-model-v1.d.ts → models/device-model.d.ts} +19 -19
- package/lib/seam/devicedb/{public-models/device-model-v1.js → models/device-model.js} +1 -1
- package/lib/seam/devicedb/models/device-model.js.map +1 -0
- package/lib/seam/devicedb/models/hardware.js.map +1 -0
- package/lib/seam/devicedb/models/image-reference.js.map +1 -0
- package/lib/seam/devicedb/{public-models → models}/index.d.ts +1 -2
- package/lib/seam/devicedb/{public-models → models}/index.js +1 -2
- package/lib/seam/devicedb/models/index.js.map +1 -0
- package/lib/seam/devicedb/{public-models → models}/manufacturer.d.ts +4 -4
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -0
- package/lib/seam/devicedb/route-specs.d.ts +70 -70
- package/lib/seam/devicedb/route-specs.js +1 -1
- package/lib/seam/devicedb/route-specs.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +36 -3
- package/src/lib/seam/devicedb/index.ts +3 -3
- package/src/lib/seam/devicedb/{public-models/device-model-v1.ts → models/device-model.ts} +3 -3
- package/src/lib/seam/devicedb/{public-models → models}/index.ts +1 -2
- package/src/lib/seam/devicedb/route-specs.ts +1 -1
- package/lib/seam/devicedb/public-models/device-capability.js.map +0 -1
- package/lib/seam/devicedb/public-models/device-model-v0.d.ts +0 -30
- package/lib/seam/devicedb/public-models/device-model-v0.js +0 -12
- package/lib/seam/devicedb/public-models/device-model-v0.js.map +0 -1
- package/lib/seam/devicedb/public-models/device-model-v1.js.map +0 -1
- package/lib/seam/devicedb/public-models/hardware.js.map +0 -1
- package/lib/seam/devicedb/public-models/image-reference.js.map +0 -1
- package/lib/seam/devicedb/public-models/index.js.map +0 -1
- package/lib/seam/devicedb/public-models/manufacturer.js.map +0 -1
- package/src/lib/seam/devicedb/public-models/device-model-v0.ts +0 -14
- /package/lib/seam/devicedb/{public-models → models}/device-capability.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/device-capability.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/hardware.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/hardware.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/image-reference.d.ts +0 -0
- /package/lib/seam/devicedb/{public-models → models}/image-reference.js +0 -0
- /package/lib/seam/devicedb/{public-models → models}/manufacturer.js +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/device-capability.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/hardware.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/image-reference.ts +0 -0
- /package/src/lib/seam/devicedb/{public-models → models}/manufacturer.ts +0 -0
package/dist/connect.cjs
CHANGED
|
@@ -5606,7 +5606,18 @@ var openapi_default = {
|
|
|
5606
5606
|
}
|
|
5607
5607
|
},
|
|
5608
5608
|
responses: {
|
|
5609
|
-
200: {
|
|
5609
|
+
200: {
|
|
5610
|
+
content: {
|
|
5611
|
+
"application/json": {
|
|
5612
|
+
schema: {
|
|
5613
|
+
properties: { ok: { type: "boolean" } },
|
|
5614
|
+
required: ["ok"],
|
|
5615
|
+
type: "object"
|
|
5616
|
+
}
|
|
5617
|
+
}
|
|
5618
|
+
},
|
|
5619
|
+
description: "OK"
|
|
5620
|
+
},
|
|
5610
5621
|
400: { description: "Bad Request" },
|
|
5611
5622
|
401: { description: "Unauthorized" }
|
|
5612
5623
|
},
|
|
@@ -5637,7 +5648,18 @@ var openapi_default = {
|
|
|
5637
5648
|
}
|
|
5638
5649
|
},
|
|
5639
5650
|
responses: {
|
|
5640
|
-
200: {
|
|
5651
|
+
200: {
|
|
5652
|
+
content: {
|
|
5653
|
+
"application/json": {
|
|
5654
|
+
schema: {
|
|
5655
|
+
properties: { ok: { type: "boolean" } },
|
|
5656
|
+
required: ["ok"],
|
|
5657
|
+
type: "object"
|
|
5658
|
+
}
|
|
5659
|
+
}
|
|
5660
|
+
},
|
|
5661
|
+
description: "OK"
|
|
5662
|
+
},
|
|
5641
5663
|
400: { description: "Bad Request" },
|
|
5642
5664
|
401: { description: "Unauthorized" }
|
|
5643
5665
|
},
|
|
@@ -5977,7 +5999,18 @@ var openapi_default = {
|
|
|
5977
5999
|
}
|
|
5978
6000
|
},
|
|
5979
6001
|
responses: {
|
|
5980
|
-
200: {
|
|
6002
|
+
200: {
|
|
6003
|
+
content: {
|
|
6004
|
+
"application/json": {
|
|
6005
|
+
schema: {
|
|
6006
|
+
properties: { ok: { type: "boolean" } },
|
|
6007
|
+
required: ["ok"],
|
|
6008
|
+
type: "object"
|
|
6009
|
+
}
|
|
6010
|
+
}
|
|
6011
|
+
},
|
|
6012
|
+
description: "OK"
|
|
6013
|
+
},
|
|
5981
6014
|
400: { description: "Bad Request" },
|
|
5982
6015
|
401: { description: "Unauthorized" }
|
|
5983
6016
|
},
|