@cadenza.io/core 3.0.20 → 3.0.21
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/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1574,7 +1574,7 @@ var Task = class extends SignalEmitter {
|
|
|
1574
1574
|
this.getTag = (context) => getTagCallback(context, this);
|
|
1575
1575
|
this.throttled = true;
|
|
1576
1576
|
}
|
|
1577
|
-
if (register && !this.isHidden
|
|
1577
|
+
if (register && !this.isHidden) {
|
|
1578
1578
|
const { __functionString, __getTagCallback } = this.export();
|
|
1579
1579
|
this.emitWithMetadata("meta.task.created", {
|
|
1580
1580
|
data: {
|
|
@@ -1601,7 +1601,8 @@ var Task = class extends SignalEmitter {
|
|
|
1601
1601
|
// inputContextSchemaId: this.inputContextSchema,
|
|
1602
1602
|
// outputContextSchemaId: this.outputContextSchema,
|
|
1603
1603
|
},
|
|
1604
|
-
__taskInstance: this
|
|
1604
|
+
__taskInstance: this,
|
|
1605
|
+
__isSubMeta: this.isSubMeta
|
|
1605
1606
|
});
|
|
1606
1607
|
}
|
|
1607
1608
|
}
|