@workglow/tasks 0.2.11 → 0.2.12
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 +4 -1
- package/dist/browser.js.map +6 -6
- package/dist/bun.js +4 -1
- package/dist/bun.js.map +6 -6
- package/dist/electron.js +4 -1
- package/dist/electron.js.map +6 -6
- package/dist/node.js +4 -1
- package/dist/node.js.map +6 -6
- package/dist/task/DebugLogTask.d.ts +1 -0
- package/dist/task/DebugLogTask.d.ts.map +1 -1
- package/dist/task/DelayTask.d.ts.map +1 -1
- package/dist/task/InputTask.d.ts +2 -1
- package/dist/task/InputTask.d.ts.map +1 -1
- package/dist/task/OutputTask.d.ts +2 -1
- package/dist/task/OutputTask.d.ts.map +1 -1
- package/package.json +9 -9
package/dist/browser.js
CHANGED
|
@@ -4579,6 +4579,7 @@ class DebugLogTask extends Task37 {
|
|
|
4579
4579
|
static cacheable = false;
|
|
4580
4580
|
static passthroughInputsToOutputs = true;
|
|
4581
4581
|
static customizable = true;
|
|
4582
|
+
static isPassthrough = true;
|
|
4582
4583
|
static configSchema() {
|
|
4583
4584
|
return debugLogTaskConfigSchema;
|
|
4584
4585
|
}
|
|
@@ -7289,6 +7290,7 @@ class InputTask extends Task60 {
|
|
|
7289
7290
|
static description = "Starts the workflow";
|
|
7290
7291
|
static hasDynamicSchemas = true;
|
|
7291
7292
|
static cacheable = false;
|
|
7293
|
+
static isPassthrough = true;
|
|
7292
7294
|
static inputSchema() {
|
|
7293
7295
|
return {
|
|
7294
7296
|
type: "object",
|
|
@@ -13417,6 +13419,7 @@ class OutputTask extends Task70 {
|
|
|
13417
13419
|
static hasDynamicSchemas = true;
|
|
13418
13420
|
static cacheable = false;
|
|
13419
13421
|
static isGraphOutput = true;
|
|
13422
|
+
static isPassthrough = true;
|
|
13420
13423
|
static inputSchema() {
|
|
13421
13424
|
return {
|
|
13422
13425
|
type: "object",
|
|
@@ -15480,4 +15483,4 @@ export {
|
|
|
15480
15483
|
ArrayTask
|
|
15481
15484
|
};
|
|
15482
15485
|
|
|
15483
|
-
//# debugId=
|
|
15486
|
+
//# debugId=D61D5AE9D16BC67B64756E2164756E21
|