@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/electron.js
CHANGED
|
@@ -4980,6 +4980,7 @@ class DebugLogTask extends Task37 {
|
|
|
4980
4980
|
static cacheable = false;
|
|
4981
4981
|
static passthroughInputsToOutputs = true;
|
|
4982
4982
|
static customizable = true;
|
|
4983
|
+
static isPassthrough = true;
|
|
4983
4984
|
static configSchema() {
|
|
4984
4985
|
return debugLogTaskConfigSchema;
|
|
4985
4986
|
}
|
|
@@ -7396,6 +7397,7 @@ class InputTask extends Task60 {
|
|
|
7396
7397
|
static description = "Starts the workflow";
|
|
7397
7398
|
static hasDynamicSchemas = true;
|
|
7398
7399
|
static cacheable = false;
|
|
7400
|
+
static isPassthrough = true;
|
|
7399
7401
|
static inputSchema() {
|
|
7400
7402
|
return {
|
|
7401
7403
|
type: "object",
|
|
@@ -13524,6 +13526,7 @@ class OutputTask extends Task70 {
|
|
|
13524
13526
|
static hasDynamicSchemas = true;
|
|
13525
13527
|
static cacheable = false;
|
|
13526
13528
|
static isGraphOutput = true;
|
|
13529
|
+
static isPassthrough = true;
|
|
13527
13530
|
static inputSchema() {
|
|
13528
13531
|
return {
|
|
13529
13532
|
type: "object",
|
|
@@ -16511,4 +16514,4 @@ export {
|
|
|
16511
16514
|
ArrayTask
|
|
16512
16515
|
};
|
|
16513
16516
|
|
|
16514
|
-
//# debugId=
|
|
16517
|
+
//# debugId=512D314B3B00A4EC64756E2164756E21
|