windmill-client 1.790.0 → 1.791.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/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +19 -2
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -5242,6 +5242,9 @@ export type Policy = {
|
|
|
5242
5242
|
s3_path?: string;
|
|
5243
5243
|
resource?: string;
|
|
5244
5244
|
}>;
|
|
5245
|
+
/**
|
|
5246
|
+
* Who the app's runnables execute as. Optional, and what omitting it means depends on the operation: creating an app defaults it to `publisher` (runs on behalf of the app's publisher and requires an authenticated viewer), while updating one keeps the mode the app is already deployed under. Either way `anonymous`, which makes the app publicly executable, is never assumed
|
|
5247
|
+
*/
|
|
5245
5248
|
execution_mode?: 'viewer' | 'publisher' | 'anonymous';
|
|
5246
5249
|
on_behalf_of?: string;
|
|
5247
5250
|
on_behalf_of_email?: string;
|
|
@@ -9578,7 +9581,14 @@ export type ListSearchResourceData = {
|
|
|
9578
9581
|
};
|
|
9579
9582
|
export type ListSearchResourceResponse = Array<{
|
|
9580
9583
|
path: string;
|
|
9581
|
-
|
|
9584
|
+
/**
|
|
9585
|
+
* pretty-printed JSON rendering of the resource value, capped at 4000 characters — a search preview, not the value itself (use get_value for that)
|
|
9586
|
+
*/
|
|
9587
|
+
value: string;
|
|
9588
|
+
/**
|
|
9589
|
+
* whether value was cut short by that cap
|
|
9590
|
+
*/
|
|
9591
|
+
truncated: boolean;
|
|
9582
9592
|
}>;
|
|
9583
9593
|
export type GetMcpToolsData = {
|
|
9584
9594
|
path: string;
|
|
@@ -22551,7 +22561,14 @@ export type $OpenApiTs = {
|
|
|
22551
22561
|
*/
|
|
22552
22562
|
200: Array<{
|
|
22553
22563
|
path: string;
|
|
22554
|
-
|
|
22564
|
+
/**
|
|
22565
|
+
* pretty-printed JSON rendering of the resource value, capped at 4000 characters — a search preview, not the value itself (use get_value for that)
|
|
22566
|
+
*/
|
|
22567
|
+
value: string;
|
|
22568
|
+
/**
|
|
22569
|
+
* whether value was cut short by that cap
|
|
22570
|
+
*/
|
|
22571
|
+
truncated: boolean;
|
|
22555
22572
|
}>;
|
|
22556
22573
|
};
|
|
22557
22574
|
};
|
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.
|
|
4
|
+
"version": "1.791.0",
|
|
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",
|