windmill-client 1.790.0 → 1.790.1
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/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +16 -2
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -9578,7 +9578,14 @@ export type ListSearchResourceData = {
|
|
|
9578
9578
|
};
|
|
9579
9579
|
export type ListSearchResourceResponse = Array<{
|
|
9580
9580
|
path: string;
|
|
9581
|
-
|
|
9581
|
+
/**
|
|
9582
|
+
* pretty-printed JSON rendering of the resource value, capped at 4000 characters — a search preview, not the value itself (use get_value for that)
|
|
9583
|
+
*/
|
|
9584
|
+
value: string;
|
|
9585
|
+
/**
|
|
9586
|
+
* whether value was cut short by that cap
|
|
9587
|
+
*/
|
|
9588
|
+
truncated: boolean;
|
|
9582
9589
|
}>;
|
|
9583
9590
|
export type GetMcpToolsData = {
|
|
9584
9591
|
path: string;
|
|
@@ -22551,7 +22558,14 @@ export type $OpenApiTs = {
|
|
|
22551
22558
|
*/
|
|
22552
22559
|
200: Array<{
|
|
22553
22560
|
path: string;
|
|
22554
|
-
|
|
22561
|
+
/**
|
|
22562
|
+
* pretty-printed JSON rendering of the resource value, capped at 4000 characters — a search preview, not the value itself (use get_value for that)
|
|
22563
|
+
*/
|
|
22564
|
+
value: string;
|
|
22565
|
+
/**
|
|
22566
|
+
* whether value was cut short by that cap
|
|
22567
|
+
*/
|
|
22568
|
+
truncated: boolean;
|
|
22555
22569
|
}>;
|
|
22556
22570
|
};
|
|
22557
22571
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "windmill-client",
|
|
3
3
|
"description": "Windmill SDK client for browsers and Node.js",
|
|
4
|
-
"version": "1.790.
|
|
4
|
+
"version": "1.790.1",
|
|
5
5
|
"author": "Ruben Fiszel",
|
|
6
6
|
"license": "Apache 2.0",
|
|
7
7
|
"homepage": "https://github.com/windmill-labs/windmill/tree/main/typescript-client#readme",
|