windmill-client 1.787.0 → 1.789.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.787.0",
32
+ VERSION: "1.789.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.787.0",
129
+ VERSION: "1.789.0",
130
130
  WITH_CREDENTIALS: !getEnv$1("WM_RAW_APP"),
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -7769,7 +7769,7 @@ var ScriptService = class {
7769
7769
  * @param data.includeWithoutMain include library scripts (no runnable main)
7770
7770
  * @param data.pathStart restrict to paths under this prefix
7771
7771
  * @param data.label
7772
- * @param data.search case-insensitive substring match on summary or path
7772
+ * @param data.search case-insensitive fuzzy match on "summary (path)": the query is split into terms on runs of anything but ASCII letters, digits and apostrophes, and each of the first 8 must appear whole and in order, with anything in between. Terms past the 8th are ignored, so an over-long query matches more rows rather than fewer. Omitted or empty filters nothing; a query holding no ASCII-alphanumeric character at all (a lone space, "_", or text in a non-Latin script) yields no terms and matches nothing, mirroring the homepage, whose matcher discards those queries too.
7773
7773
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7774
7774
  * @param data.cursor opaque keyset cursor from a previous page's next_cursor
7775
7775
  * @param data.includeDraftOnly also list the caller's drafts at paths with no deployed row, sorted and paginated with the deployed ones. Ignored for operators, in the archived view, and under a label filter (a draft carries no labels).
@@ -15929,6 +15929,7 @@ var ConcurrencyGroupsService = class {
15929
15929
  }
15930
15930
  /**
15931
15931
  * Get the concurrency key for a job that has concurrency limits enabled
15932
+ * Requires read access to the job, the same as reading the run itself. Returns 403 for a workspace member who cannot see the run, and 404 when the caller is not a member of the job's workspace.
15932
15933
  * @param data The data for the request.
15933
15934
  * @param data.id
15934
15935
  * @returns string concurrency key for given job
@@ -3939,7 +3939,7 @@ export declare class ScriptService {
3939
3939
  * @param data.includeWithoutMain include library scripts (no runnable main)
3940
3940
  * @param data.pathStart restrict to paths under this prefix
3941
3941
  * @param data.label
3942
- * @param data.search case-insensitive substring match on summary or path
3942
+ * @param data.search case-insensitive fuzzy match on "summary (path)": the query is split into terms on runs of anything but ASCII letters, digits and apostrophes, and each of the first 8 must appear whole and in order, with anything in between. Terms past the 8th are ignored, so an over-long query matches more rows rather than fewer. Omitted or empty filters nothing; a query holding no ASCII-alphanumeric character at all (a lone space, "_", or text in a non-Latin script) yields no terms and matches nothing, mirroring the homepage, whose matcher discards those queries too.
3943
3943
  * @param data.perPage number of items to return for a given page (default 30, max 100)
3944
3944
  * @param data.cursor opaque keyset cursor from a previous page's next_cursor
3945
3945
  * @param data.includeDraftOnly also list the caller's drafts at paths with no deployed row, sorted and paginated with the deployed ones. Ignored for operators, in the archived view, and under a label filter (a draft carries no labels).
@@ -8122,6 +8122,7 @@ export declare class ConcurrencyGroupsService {
8122
8122
  static deleteConcurrencyGroup(data: DeleteConcurrencyGroupData): CancelablePromise<DeleteConcurrencyGroupResponse>;
8123
8123
  /**
8124
8124
  * Get the concurrency key for a job that has concurrency limits enabled
8125
+ * Requires read access to the job, the same as reading the run itself. Returns 403 for a workspace member who cannot see the run, and 404 when the caller is not a member of the job's workspace.
8125
8126
  * @param data The data for the request.
8126
8127
  * @param data.id
8127
8128
  * @returns string concurrency key for given job
@@ -7401,7 +7401,7 @@ var ScriptService = class {
7401
7401
  * @param data.includeWithoutMain include library scripts (no runnable main)
7402
7402
  * @param data.pathStart restrict to paths under this prefix
7403
7403
  * @param data.label
7404
- * @param data.search case-insensitive substring match on summary or path
7404
+ * @param data.search case-insensitive fuzzy match on "summary (path)": the query is split into terms on runs of anything but ASCII letters, digits and apostrophes, and each of the first 8 must appear whole and in order, with anything in between. Terms past the 8th are ignored, so an over-long query matches more rows rather than fewer. Omitted or empty filters nothing; a query holding no ASCII-alphanumeric character at all (a lone space, "_", or text in a non-Latin script) yields no terms and matches nothing, mirroring the homepage, whose matcher discards those queries too.
7405
7405
  * @param data.perPage number of items to return for a given page (default 30, max 100)
7406
7406
  * @param data.cursor opaque keyset cursor from a previous page's next_cursor
7407
7407
  * @param data.includeDraftOnly also list the caller's drafts at paths with no deployed row, sorted and paginated with the deployed ones. Ignored for operators, in the archived view, and under a label filter (a draft carries no labels).
@@ -15561,6 +15561,7 @@ var ConcurrencyGroupsService = class {
15561
15561
  }
15562
15562
  /**
15563
15563
  * Get the concurrency key for a job that has concurrency limits enabled
15564
+ * Requires read access to the job, the same as reading the run itself. Returns 403 for a workspace member who cannot see the run, and 404 when the caller is not a member of the job's workspace.
15564
15565
  * @param data The data for the request.
15565
15566
  * @param data.id
15566
15567
  * @returns string concurrency key for given job
@@ -8353,6 +8353,9 @@ export type SetEnvironmentVariableData = {
8353
8353
  * Workspace default app
8354
8354
  */
8355
8355
  requestBody: {
8356
+ /**
8357
+ * Environment variable name. New names must be a plain JS identifier (matching ^[A-Za-z_$][A-Za-z0-9_$]*$) since the name is spliced into the NativeTS/Bun worker prologue; otherwise the request is rejected with 400. Existing names can still be updated regardless of shape.
8358
+ */
8356
8359
  name: string;
8357
8360
  value?: string;
8358
8361
  };
@@ -11074,7 +11077,7 @@ export type ListRunnablesData = {
11074
11077
  */
11075
11078
  perPage?: number;
11076
11079
  /**
11077
- * case-insensitive substring match on summary or path
11080
+ * case-insensitive fuzzy match on "summary (path)": the query is split into terms on runs of anything but ASCII letters, digits and apostrophes, and each of the first 8 must appear whole and in order, with anything in between. Terms past the 8th are ignored, so an over-long query matches more rows rather than fewer. Omitted or empty filters nothing; a query holding no ASCII-alphanumeric character at all (a lone space, "_", or text in a non-Latin script) yields no terms and matches nothing, mirroring the homepage, whose matcher discards those queries too.
11078
11081
  */
11079
11082
  search?: string;
11080
11083
  showArchived?: boolean;
@@ -20105,6 +20108,9 @@ export type $OpenApiTs = {
20105
20108
  * Workspace default app
20106
20109
  */
20107
20110
  requestBody: {
20111
+ /**
20112
+ * Environment variable name. New names must be a plain JS identifier (matching ^[A-Za-z_$][A-Za-z0-9_$]*$) since the name is spliced into the NativeTS/Bun worker prologue; otherwise the request is rejected with 400. Existing names can still be updated regardless of shape.
20113
+ */
20108
20114
  name: string;
20109
20115
  value?: string;
20110
20116
  };
@@ -25005,7 +25011,7 @@ export type $OpenApiTs = {
25005
25011
  */
25006
25012
  perPage?: number;
25007
25013
  /**
25008
- * case-insensitive substring match on summary or path
25014
+ * case-insensitive fuzzy match on "summary (path)": the query is split into terms on runs of anything but ASCII letters, digits and apostrophes, and each of the first 8 must appear whole and in order, with anything in between. Terms past the 8th are ignored, so an over-long query matches more rows rather than fewer. Omitted or empty filters nothing; a query holding no ASCII-alphanumeric character at all (a lone space, "_", or text in a non-Latin script) yields no terms and matches nothing, mirroring the homepage, whose matcher discards those queries too.
25009
25015
  */
25010
25016
  search?: string;
25011
25017
  showArchived?: boolean;
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.787.0",
4
+ "version": "1.789.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",