@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/browser.js
CHANGED
|
@@ -7755,7 +7755,8 @@ var defaultJobQueueFactory = async ({
|
|
|
7755
7755
|
deleteAfterCompletionMs: options?.deleteAfterCompletionMs,
|
|
7756
7756
|
deleteAfterFailureMs: options?.deleteAfterFailureMs,
|
|
7757
7757
|
deleteAfterDisabledMs: options?.deleteAfterDisabledMs,
|
|
7758
|
-
cleanupIntervalMs: options?.cleanupIntervalMs
|
|
7758
|
+
cleanupIntervalMs: options?.cleanupIntervalMs,
|
|
7759
|
+
stopTimeoutMs: options?.stopTimeoutMs
|
|
7759
7760
|
});
|
|
7760
7761
|
const client = new JobQueueClient({
|
|
7761
7762
|
storage,
|
|
@@ -7788,7 +7789,8 @@ function createJobQueueFactoryWithOptions(defaultOptions = {}) {
|
|
|
7788
7789
|
deleteAfterCompletionMs: mergedOptions.deleteAfterCompletionMs,
|
|
7789
7790
|
deleteAfterFailureMs: mergedOptions.deleteAfterFailureMs,
|
|
7790
7791
|
deleteAfterDisabledMs: mergedOptions.deleteAfterDisabledMs,
|
|
7791
|
-
cleanupIntervalMs: mergedOptions.cleanupIntervalMs
|
|
7792
|
+
cleanupIntervalMs: mergedOptions.cleanupIntervalMs,
|
|
7793
|
+
stopTimeoutMs: mergedOptions.stopTimeoutMs
|
|
7792
7794
|
});
|
|
7793
7795
|
const client = new JobQueueClient({
|
|
7794
7796
|
storage,
|
|
@@ -8365,11 +8367,7 @@ class TaskOutputTabularRepository extends TaskOutputRepository {
|
|
|
8365
8367
|
}
|
|
8366
8368
|
}
|
|
8367
8369
|
// src/storage/PortCodecRegistry.ts
|
|
8368
|
-
import {
|
|
8369
|
-
registerPortCodec,
|
|
8370
|
-
getPortCodec as getPortCodec2,
|
|
8371
|
-
_resetPortCodecsForTests
|
|
8372
|
-
} from "@workglow/util";
|
|
8370
|
+
import { registerPortCodec, getPortCodec as getPortCodec2, _resetPortCodecsForTests } from "@workglow/util";
|
|
8373
8371
|
// src/debug/console/ConsoleFormatters.ts
|
|
8374
8372
|
import { DirectedAcyclicGraph as DirectedAcyclicGraph2 } from "@workglow/util/graph";
|
|
8375
8373
|
function formatDuration(ms) {
|
|
@@ -9189,4 +9187,4 @@ export {
|
|
|
9189
9187
|
BROWSER_GRANTS
|
|
9190
9188
|
};
|
|
9191
9189
|
|
|
9192
|
-
//# debugId=
|
|
9190
|
+
//# debugId=6B87161C982F44CB64756E2164756E21
|