@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.mjs
CHANGED
|
@@ -1537,7 +1537,7 @@ var Task = class extends SignalEmitter {
|
|
|
1537
1537
|
this.getTag = (context) => getTagCallback(context, this);
|
|
1538
1538
|
this.throttled = true;
|
|
1539
1539
|
}
|
|
1540
|
-
if (register && !this.isHidden
|
|
1540
|
+
if (register && !this.isHidden) {
|
|
1541
1541
|
const { __functionString, __getTagCallback } = this.export();
|
|
1542
1542
|
this.emitWithMetadata("meta.task.created", {
|
|
1543
1543
|
data: {
|
|
@@ -1564,7 +1564,8 @@ var Task = class extends SignalEmitter {
|
|
|
1564
1564
|
// inputContextSchemaId: this.inputContextSchema,
|
|
1565
1565
|
// outputContextSchemaId: this.outputContextSchema,
|
|
1566
1566
|
},
|
|
1567
|
-
__taskInstance: this
|
|
1567
|
+
__taskInstance: this,
|
|
1568
|
+
__isSubMeta: this.isSubMeta
|
|
1568
1569
|
});
|
|
1569
1570
|
}
|
|
1570
1571
|
}
|