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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/services.gen.d.ts +1 -1
- package/dist/services.gen.js +1 -1
- package/dist/types.gen.d.ts +3 -3
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
|
@@ -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
|
|
4306
|
+
* @returns Configs a config
|
|
4307
4307
|
* @throws ApiError
|
|
4308
4308
|
*/
|
|
4309
4309
|
static getConfig(data: GetConfigData): CancelablePromise<GetConfigResponse>;
|
package/dist/services.gen.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
15354
|
+
200: Configs;
|
|
15355
15355
|
};
|
|
15356
15356
|
};
|
|
15357
15357
|
};
|