windmill-client 1.491.4 → 1.491.5

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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.491.4',
42
+ VERSION: '1.491.5',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -4303,7 +4303,7 @@ export declare class ConfigService {
4303
4303
  * get config
4304
4304
  * @param data The data for the request.
4305
4305
  * @param data.name
4306
- * @returns unknown a config
4306
+ * @returns Configs a config
4307
4307
  * @throws ApiError
4308
4308
  */
4309
4309
  static getConfig(data: GetConfigData): CancelablePromise<GetConfigResponse>;
@@ -8712,7 +8712,7 @@ class ConfigService {
8712
8712
  * get config
8713
8713
  * @param data The data for the request.
8714
8714
  * @param data.name
8715
- * @returns unknown a config
8715
+ * @returns Configs a config
8716
8716
  * @throws ApiError
8717
8717
  */
8718
8718
  static getConfig(data) {
@@ -23,7 +23,7 @@ export type Alert = {
23
23
  };
24
24
  export type Configs = {
25
25
  alerts?: Array<Alert>;
26
- };
26
+ } | null;
27
27
  export type Script = {
28
28
  workspace_id?: string;
29
29
  hash: string;
@@ -6385,7 +6385,7 @@ export type ListWorkerGroupsResponse = Array<{
6385
6385
  export type GetConfigData = {
6386
6386
  name: string;
6387
6387
  };
6388
- export type GetConfigResponse = Configs | null;
6388
+ export type GetConfigResponse = Configs;
6389
6389
  export type UpdateConfigData = {
6390
6390
  name: string;
6391
6391
  /**
@@ -15351,7 +15351,7 @@ export type $OpenApiTs = {
15351
15351
  /**
15352
15352
  * a config
15353
15353
  */
15354
- 200: Configs | null;
15354
+ 200: Configs;
15355
15355
  };
15356
15356
  };
15357
15357
  };
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.491.4",
4
+ "version": "1.491.5",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {