@seamapi/types 1.63.0 → 1.64.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 +8 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +34 -24
- package/dist/devicedb.cjs +4 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +8 -0
- package/lib/seam/connect/openapi.d.ts +34 -24
- package/lib/seam/connect/openapi.js +8 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +6 -0
- package/lib/seam/devicedb/route-specs.js +3 -0
- package/lib/seam/devicedb/route-specs.js.map +1 -1
- package/lib/seam/devicedb/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -6
- package/src/lib/seam/devicedb/route-specs.ts +4 -0
- package/src/lib/seam/devicedb/route-types.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -10138,9 +10138,10 @@ var openapi_default = {
|
|
|
10138
10138
|
401: { description: "Unauthorized" }
|
|
10139
10139
|
},
|
|
10140
10140
|
security: [
|
|
10141
|
-
{
|
|
10142
|
-
{
|
|
10143
|
-
{
|
|
10141
|
+
{ api_key: [] },
|
|
10142
|
+
{ user_session: [] },
|
|
10143
|
+
{ client_session: [] },
|
|
10144
|
+
{ pat_with_workspace: [] }
|
|
10144
10145
|
],
|
|
10145
10146
|
summary: "/workspaces/get",
|
|
10146
10147
|
tags: ["/workspaces"],
|
|
@@ -10168,9 +10169,10 @@ var openapi_default = {
|
|
|
10168
10169
|
401: { description: "Unauthorized" }
|
|
10169
10170
|
},
|
|
10170
10171
|
security: [
|
|
10171
|
-
{
|
|
10172
|
-
{
|
|
10173
|
-
{
|
|
10172
|
+
{ api_key: [] },
|
|
10173
|
+
{ user_session: [] },
|
|
10174
|
+
{ client_session: [] },
|
|
10175
|
+
{ pat_with_workspace: [] }
|
|
10174
10176
|
],
|
|
10175
10177
|
summary: "/workspaces/get",
|
|
10176
10178
|
tags: ["/workspaces"],
|