@seamapi/types 1.494.0 → 1.495.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 +10 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -11
- package/dist/index.cjs +10 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -8
- package/lib/seam/connect/openapi.js +10 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +10 -7
- package/src/lib/seam/connect/route-types.ts +3 -3
package/dist/connect.cjs
CHANGED
|
@@ -58125,14 +58125,17 @@ var openapi_default = {
|
|
|
58125
58125
|
post: {
|
|
58126
58126
|
description: "Search for resources inside a workspace.",
|
|
58127
58127
|
operationId: "workspacesFindAnythingPost",
|
|
58128
|
-
|
|
58129
|
-
{
|
|
58130
|
-
|
|
58131
|
-
|
|
58132
|
-
|
|
58133
|
-
|
|
58128
|
+
requestBody: {
|
|
58129
|
+
content: {
|
|
58130
|
+
"application/json": {
|
|
58131
|
+
schema: {
|
|
58132
|
+
properties: { search: { format: "uuid", type: "string" } },
|
|
58133
|
+
required: ["search"],
|
|
58134
|
+
type: "object"
|
|
58135
|
+
}
|
|
58136
|
+
}
|
|
58134
58137
|
}
|
|
58135
|
-
|
|
58138
|
+
},
|
|
58136
58139
|
responses: {
|
|
58137
58140
|
200: {
|
|
58138
58141
|
content: {
|