windmill-client 1.583.0 → 1.583.2
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 +6 -0
- package/dist/services.gen.js +10 -2
- package/dist/types.gen.d.ts +24 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
|
@@ -1737,6 +1737,9 @@ export declare class FlowService {
|
|
|
1737
1737
|
* @param data.withDeploymentMsg (default false)
|
|
1738
1738
|
* include deployment message
|
|
1739
1739
|
*
|
|
1740
|
+
* @param data.withoutDescription (default false)
|
|
1741
|
+
* If true, the description field will be omitted from the response.
|
|
1742
|
+
*
|
|
1740
1743
|
* @returns unknown All flow
|
|
1741
1744
|
* @throws ApiError
|
|
1742
1745
|
*/
|
|
@@ -2277,6 +2280,9 @@ export declare class ScriptService {
|
|
|
2277
2280
|
* @param data.languages Filter to only include scripts written in the given languages.
|
|
2278
2281
|
* Accepts multiple values as a comma-separated list.
|
|
2279
2282
|
*
|
|
2283
|
+
* @param data.withoutDescription (default false)
|
|
2284
|
+
* If true, the description field will be omitted from the response.
|
|
2285
|
+
*
|
|
2280
2286
|
* @returns Script All scripts
|
|
2281
2287
|
* @throws ApiError
|
|
2282
2288
|
*/
|
package/dist/services.gen.js
CHANGED
|
@@ -3473,6 +3473,9 @@ class FlowService {
|
|
|
3473
3473
|
* @param data.withDeploymentMsg (default false)
|
|
3474
3474
|
* include deployment message
|
|
3475
3475
|
*
|
|
3476
|
+
* @param data.withoutDescription (default false)
|
|
3477
|
+
* If true, the description field will be omitted from the response.
|
|
3478
|
+
*
|
|
3476
3479
|
* @returns unknown All flow
|
|
3477
3480
|
* @throws ApiError
|
|
3478
3481
|
*/
|
|
@@ -3493,7 +3496,8 @@ class FlowService {
|
|
|
3493
3496
|
show_archived: data.showArchived,
|
|
3494
3497
|
starred_only: data.starredOnly,
|
|
3495
3498
|
include_draft_only: data.includeDraftOnly,
|
|
3496
|
-
with_deployment_msg: data.withDeploymentMsg
|
|
3499
|
+
with_deployment_msg: data.withDeploymentMsg,
|
|
3500
|
+
without_description: data.withoutDescription
|
|
3497
3501
|
}
|
|
3498
3502
|
});
|
|
3499
3503
|
}
|
|
@@ -4537,6 +4541,9 @@ class ScriptService {
|
|
|
4537
4541
|
* @param data.languages Filter to only include scripts written in the given languages.
|
|
4538
4542
|
* Accepts multiple values as a comma-separated list.
|
|
4539
4543
|
*
|
|
4544
|
+
* @param data.withoutDescription (default false)
|
|
4545
|
+
* If true, the description field will be omitted from the response.
|
|
4546
|
+
*
|
|
4540
4547
|
* @returns Script All scripts
|
|
4541
4548
|
* @throws ApiError
|
|
4542
4549
|
*/
|
|
@@ -4564,7 +4571,8 @@ class ScriptService {
|
|
|
4564
4571
|
kinds: data.kinds,
|
|
4565
4572
|
starred_only: data.starredOnly,
|
|
4566
4573
|
with_deployment_msg: data.withDeploymentMsg,
|
|
4567
|
-
languages: data.languages
|
|
4574
|
+
languages: data.languages,
|
|
4575
|
+
without_description: data.withoutDescription
|
|
4568
4576
|
}
|
|
4569
4577
|
});
|
|
4570
4578
|
}
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -4188,6 +4188,12 @@ export type ListFlowsData = {
|
|
|
4188
4188
|
*
|
|
4189
4189
|
*/
|
|
4190
4190
|
withDeploymentMsg?: boolean;
|
|
4191
|
+
/**
|
|
4192
|
+
* (default false)
|
|
4193
|
+
* If true, the description field will be omitted from the response.
|
|
4194
|
+
*
|
|
4195
|
+
*/
|
|
4196
|
+
withoutDescription?: boolean;
|
|
4191
4197
|
workspace: string;
|
|
4192
4198
|
};
|
|
4193
4199
|
export type ListFlowsResponse = Array<(Flow & {
|
|
@@ -4792,6 +4798,12 @@ export type ListScriptsData = {
|
|
|
4792
4798
|
*
|
|
4793
4799
|
*/
|
|
4794
4800
|
withDeploymentMsg?: boolean;
|
|
4801
|
+
/**
|
|
4802
|
+
* (default false)
|
|
4803
|
+
* If true, the description field will be omitted from the response.
|
|
4804
|
+
*
|
|
4805
|
+
*/
|
|
4806
|
+
withoutDescription?: boolean;
|
|
4795
4807
|
workspace: string;
|
|
4796
4808
|
};
|
|
4797
4809
|
export type ListScriptsResponse = Array<Script>;
|
|
@@ -12233,6 +12245,12 @@ export type $OpenApiTs = {
|
|
|
12233
12245
|
*
|
|
12234
12246
|
*/
|
|
12235
12247
|
withDeploymentMsg?: boolean;
|
|
12248
|
+
/**
|
|
12249
|
+
* (default false)
|
|
12250
|
+
* If true, the description field will be omitted from the response.
|
|
12251
|
+
*
|
|
12252
|
+
*/
|
|
12253
|
+
withoutDescription?: boolean;
|
|
12236
12254
|
workspace: string;
|
|
12237
12255
|
};
|
|
12238
12256
|
res: {
|
|
@@ -13296,6 +13314,12 @@ export type $OpenApiTs = {
|
|
|
13296
13314
|
*
|
|
13297
13315
|
*/
|
|
13298
13316
|
withDeploymentMsg?: boolean;
|
|
13317
|
+
/**
|
|
13318
|
+
* (default false)
|
|
13319
|
+
* If true, the description field will be omitted from the response.
|
|
13320
|
+
*
|
|
13321
|
+
*/
|
|
13322
|
+
withoutDescription?: boolean;
|
|
13299
13323
|
workspace: string;
|
|
13300
13324
|
};
|
|
13301
13325
|
res: {
|