@workglow/task-graph 0.2.22 → 0.2.24
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/browser.js +6 -8
- package/dist/browser.js.map +9 -9
- package/dist/bun.js +6 -8
- package/dist/bun.js.map +9 -9
- package/dist/common.d.ts +1 -1
- package/dist/common.d.ts.map +1 -1
- package/dist/node.js +6 -8
- package/dist/node.js.map +9 -9
- package/dist/storage/PortCodecRegistry.d.ts +1 -1
- package/dist/storage/PortCodecRegistry.d.ts.map +1 -1
- package/dist/task/ITask.d.ts.map +1 -1
- package/dist/task/IteratorTaskRunner.d.ts.map +1 -1
- package/dist/task/JobQueueFactory.d.ts +1 -0
- package/dist/task/JobQueueFactory.d.ts.map +1 -1
- package/dist/task/TaskRunner.d.ts +10 -2
- package/dist/task/TaskRunner.d.ts.map +1 -1
- package/dist/task/WhileTask.d.ts.map +1 -1
- package/dist/task-graph/ITaskGraph.d.ts.map +1 -1
- package/dist/task-graph/TaskGraph.d.ts.map +1 -1
- package/dist/task-graph/TaskGraphRunner.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/bun.js
CHANGED
|
@@ -7756,7 +7756,8 @@ var defaultJobQueueFactory = async ({
|
|
|
7756
7756
|
deleteAfterCompletionMs: options?.deleteAfterCompletionMs,
|
|
7757
7757
|
deleteAfterFailureMs: options?.deleteAfterFailureMs,
|
|
7758
7758
|
deleteAfterDisabledMs: options?.deleteAfterDisabledMs,
|
|
7759
|
-
cleanupIntervalMs: options?.cleanupIntervalMs
|
|
7759
|
+
cleanupIntervalMs: options?.cleanupIntervalMs,
|
|
7760
|
+
stopTimeoutMs: options?.stopTimeoutMs
|
|
7760
7761
|
});
|
|
7761
7762
|
const client = new JobQueueClient({
|
|
7762
7763
|
storage,
|
|
@@ -7789,7 +7790,8 @@ function createJobQueueFactoryWithOptions(defaultOptions = {}) {
|
|
|
7789
7790
|
deleteAfterCompletionMs: mergedOptions.deleteAfterCompletionMs,
|
|
7790
7791
|
deleteAfterFailureMs: mergedOptions.deleteAfterFailureMs,
|
|
7791
7792
|
deleteAfterDisabledMs: mergedOptions.deleteAfterDisabledMs,
|
|
7792
|
-
cleanupIntervalMs: mergedOptions.cleanupIntervalMs
|
|
7793
|
+
cleanupIntervalMs: mergedOptions.cleanupIntervalMs,
|
|
7794
|
+
stopTimeoutMs: mergedOptions.stopTimeoutMs
|
|
7793
7795
|
});
|
|
7794
7796
|
const client = new JobQueueClient({
|
|
7795
7797
|
storage,
|
|
@@ -8366,11 +8368,7 @@ class TaskOutputTabularRepository extends TaskOutputRepository {
|
|
|
8366
8368
|
}
|
|
8367
8369
|
}
|
|
8368
8370
|
// src/storage/PortCodecRegistry.ts
|
|
8369
|
-
import {
|
|
8370
|
-
registerPortCodec,
|
|
8371
|
-
getPortCodec as getPortCodec2,
|
|
8372
|
-
_resetPortCodecsForTests
|
|
8373
|
-
} from "@workglow/util";
|
|
8371
|
+
import { registerPortCodec, getPortCodec as getPortCodec2, _resetPortCodecsForTests } from "@workglow/util";
|
|
8374
8372
|
export {
|
|
8375
8373
|
wrapSchemaInArray,
|
|
8376
8374
|
whileTaskConfigSchema,
|
|
@@ -8553,4 +8551,4 @@ export {
|
|
|
8553
8551
|
BROWSER_GRANTS
|
|
8554
8552
|
};
|
|
8555
8553
|
|
|
8556
|
-
//# debugId=
|
|
8554
|
+
//# debugId=39E3171FAD67095564756E2164756E21
|