windmill-client 1.300.0 → 1.301.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.
package/dist/core/OpenAPI.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export type { Username } from './models/Username';
|
|
|
134
134
|
export type { UserUsage } from './models/UserUsage';
|
|
135
135
|
export type { UserWorkspaceList } from './models/UserWorkspaceList';
|
|
136
136
|
export type { VersionId } from './models/VersionId';
|
|
137
|
+
export type { WhileloopFlow } from './models/WhileloopFlow';
|
|
137
138
|
export type { WindmillFileMetadata } from './models/WindmillFileMetadata';
|
|
138
139
|
export { WindmillFilePreview } from './models/WindmillFilePreview';
|
|
139
140
|
export type { WindmillLargeFile } from './models/WindmillLargeFile';
|
|
@@ -5,4 +5,5 @@ import type { Identity } from './Identity';
|
|
|
5
5
|
import type { PathFlow } from './PathFlow';
|
|
6
6
|
import type { PathScript } from './PathScript';
|
|
7
7
|
import type { RawScript } from './RawScript';
|
|
8
|
-
|
|
8
|
+
import type { WhileloopFlow } from './WhileloopFlow';
|
|
9
|
+
export type FlowModuleValue = (RawScript | PathScript | PathFlow | ForloopFlow | WhileloopFlow | BranchOne | BranchAll | Identity);
|