@seamapi/types 1.577.0 → 1.578.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 +17 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +45 -30
- package/dist/index.cjs +17 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +34 -28
- package/lib/seam/connect/openapi.js +15 -13
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +16 -14
- package/src/lib/seam/connect/route-types.ts +11 -2
package/dist/connect.cjs
CHANGED
|
@@ -44484,16 +44484,6 @@ var openapi_default = {
|
|
|
44484
44484
|
type: "array"
|
|
44485
44485
|
}
|
|
44486
44486
|
},
|
|
44487
|
-
{
|
|
44488
|
-
in: "query",
|
|
44489
|
-
name: "limit",
|
|
44490
|
-
schema: {
|
|
44491
|
-
default: 500,
|
|
44492
|
-
description: "Numerical limit on the number of devices to return.",
|
|
44493
|
-
format: "float",
|
|
44494
|
-
type: "number"
|
|
44495
|
-
}
|
|
44496
|
-
},
|
|
44497
44487
|
{
|
|
44498
44488
|
in: "query",
|
|
44499
44489
|
name: "created_before",
|
|
@@ -44617,6 +44607,16 @@ var openapi_default = {
|
|
|
44617
44607
|
minLength: 1,
|
|
44618
44608
|
type: "string"
|
|
44619
44609
|
}
|
|
44610
|
+
},
|
|
44611
|
+
{
|
|
44612
|
+
in: "query",
|
|
44613
|
+
name: "limit",
|
|
44614
|
+
schema: {
|
|
44615
|
+
default: 22900,
|
|
44616
|
+
description: "Numerical limit on the number of devices to return.",
|
|
44617
|
+
format: "float",
|
|
44618
|
+
type: "number"
|
|
44619
|
+
}
|
|
44620
44620
|
}
|
|
44621
44621
|
],
|
|
44622
44622
|
responses: {
|
|
@@ -44629,9 +44629,10 @@ var openapi_default = {
|
|
|
44629
44629
|
items: { $ref: "#/components/schemas/unmanaged_device" },
|
|
44630
44630
|
type: "array"
|
|
44631
44631
|
},
|
|
44632
|
-
ok: { type: "boolean" }
|
|
44632
|
+
ok: { type: "boolean" },
|
|
44633
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
44633
44634
|
},
|
|
44634
|
-
required: ["devices", "ok"],
|
|
44635
|
+
required: ["devices", "pagination", "ok"],
|
|
44635
44636
|
type: "object"
|
|
44636
44637
|
}
|
|
44637
44638
|
}
|
|
@@ -44882,7 +44883,7 @@ var openapi_default = {
|
|
|
44882
44883
|
"x-undocumented": "Only used internally."
|
|
44883
44884
|
},
|
|
44884
44885
|
limit: {
|
|
44885
|
-
default:
|
|
44886
|
+
default: 22900,
|
|
44886
44887
|
description: "Numerical limit on the number of devices to return.",
|
|
44887
44888
|
format: "float",
|
|
44888
44889
|
type: "number"
|
|
@@ -44975,9 +44976,10 @@ var openapi_default = {
|
|
|
44975
44976
|
items: { $ref: "#/components/schemas/unmanaged_device" },
|
|
44976
44977
|
type: "array"
|
|
44977
44978
|
},
|
|
44978
|
-
ok: { type: "boolean" }
|
|
44979
|
+
ok: { type: "boolean" },
|
|
44980
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
44979
44981
|
},
|
|
44980
|
-
required: ["devices", "ok"],
|
|
44982
|
+
required: ["devices", "pagination", "ok"],
|
|
44981
44983
|
type: "object"
|
|
44982
44984
|
}
|
|
44983
44985
|
}
|