@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.d.cts
CHANGED
|
@@ -99518,15 +99518,22 @@ declare const _default: {
|
|
|
99518
99518
|
post: {
|
|
99519
99519
|
description: string;
|
|
99520
99520
|
operationId: string;
|
|
99521
|
-
|
|
99522
|
-
|
|
99523
|
-
|
|
99524
|
-
|
|
99525
|
-
|
|
99526
|
-
|
|
99527
|
-
|
|
99521
|
+
requestBody: {
|
|
99522
|
+
content: {
|
|
99523
|
+
'application/json': {
|
|
99524
|
+
schema: {
|
|
99525
|
+
properties: {
|
|
99526
|
+
search: {
|
|
99527
|
+
format: string;
|
|
99528
|
+
type: string;
|
|
99529
|
+
};
|
|
99530
|
+
};
|
|
99531
|
+
required: string[];
|
|
99532
|
+
type: string;
|
|
99533
|
+
};
|
|
99534
|
+
};
|
|
99528
99535
|
};
|
|
99529
|
-
}
|
|
99536
|
+
};
|
|
99530
99537
|
responses: {
|
|
99531
99538
|
200: {
|
|
99532
99539
|
content: {
|
|
@@ -179299,11 +179306,11 @@ type Routes = {
|
|
|
179299
179306
|
'/workspaces/find_anything': {
|
|
179300
179307
|
route: '/workspaces/find_anything';
|
|
179301
179308
|
method: 'GET' | 'POST';
|
|
179302
|
-
queryParams: {
|
|
179309
|
+
queryParams: {};
|
|
179310
|
+
jsonBody: {};
|
|
179311
|
+
commonParams: {
|
|
179303
179312
|
search: string;
|
|
179304
179313
|
};
|
|
179305
|
-
jsonBody: {};
|
|
179306
|
-
commonParams: {};
|
|
179307
179314
|
formData: {};
|
|
179308
179315
|
jsonResponse: {
|
|
179309
179316
|
/** A batch of workspace resources. */
|
package/dist/index.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: {
|