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.
@@ -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.790.1",
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.790.1",
130
130
  WITH_CREDENTIALS: !getEnv$1("WM_RAW_APP"),
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -9578,7 +9578,14 @@ export type ListSearchResourceData = {
9578
9578
  };
9579
9579
  export type ListSearchResourceResponse = Array<{
9580
9580
  path: string;
9581
- value: unknown;
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
- value: unknown;
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.0",
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",