windmill-client 1.299.1 → 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/client.js
CHANGED
|
@@ -322,6 +322,9 @@ exports.setState = setState;
|
|
|
322
322
|
function setFlowUserState(key, value, errorIfNotPossible) {
|
|
323
323
|
return __awaiter(this, void 0, void 0, function* () {
|
|
324
324
|
!clientSet && setClient();
|
|
325
|
+
if (value === undefined) {
|
|
326
|
+
value = null;
|
|
327
|
+
}
|
|
325
328
|
const workspace = getWorkspace();
|
|
326
329
|
try {
|
|
327
330
|
yield index_1.JobService.setFlowUserState({
|
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);
|