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.
@@ -29,7 +29,7 @@ const OpenAPI = {
29
29
  PASSWORD: void 0,
30
30
  TOKEN: getEnv("WM_TOKEN"),
31
31
  USERNAME: void 0,
32
- VERSION: "1.790.0",
32
+ VERSION: "1.791.0",
33
33
  WITH_CREDENTIALS: !getEnv("WM_RAW_APP"),
34
34
  interceptors: {
35
35
  request: new Interceptors(),
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ const OpenAPI = {
126
126
  PASSWORD: void 0,
127
127
  TOKEN: getEnv$1("WM_TOKEN"),
128
128
  USERNAME: void 0,
129
- VERSION: "1.790.0",
129
+ VERSION: "1.791.0",
130
130
  WITH_CREDENTIALS: !getEnv$1("WM_RAW_APP"),
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -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
- value: unknown;
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
- value: unknown;
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.790.0",
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",