@cadenza.io/service 2.17.54 → 2.17.55
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/index.js +4 -44
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.mjs +4 -44
- package/dist/browser/index.mjs.map +1 -1
- package/dist/index.js +4 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -44
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10641,17 +10641,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
10641
10641
|
"meta.sync_controller.synced_signals",
|
|
10642
10642
|
"meta.sync_controller.synced_tasks",
|
|
10643
10643
|
"meta.sync_requested"
|
|
10644
|
-
).then(
|
|
10645
|
-
CadenzaService.createMetaTask(
|
|
10646
|
-
"Ensure signal and task sync ready",
|
|
10647
|
-
(ctx) => {
|
|
10648
|
-
if (!this.tasksSynced || !this.signalsSynced) {
|
|
10649
|
-
return false;
|
|
10650
|
-
}
|
|
10651
|
-
return ctx;
|
|
10652
|
-
}
|
|
10653
|
-
).then(this.registerSignalToTaskMapTask)
|
|
10654
|
-
);
|
|
10644
|
+
).then(this.registerSignalToTaskMapTask);
|
|
10655
10645
|
CadenzaService.createMetaTask("Get registered task for signal sync", (ctx) => {
|
|
10656
10646
|
const task = ctx.task ?? (ctx.__taskName ? CadenzaService.get(ctx.__taskName) : void 0);
|
|
10657
10647
|
if (!task) {
|
|
@@ -10661,32 +10651,12 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
10661
10651
|
...ctx,
|
|
10662
10652
|
task
|
|
10663
10653
|
};
|
|
10664
|
-
}).doOn("meta.sync_controller.task_registered").then(
|
|
10665
|
-
CadenzaService.createMetaTask(
|
|
10666
|
-
"Ensure signal and task sync ready from task registration",
|
|
10667
|
-
(ctx) => {
|
|
10668
|
-
if (!this.tasksSynced || !this.signalsSynced) {
|
|
10669
|
-
return false;
|
|
10670
|
-
}
|
|
10671
|
-
return ctx;
|
|
10672
|
-
}
|
|
10673
|
-
).then(this.registerSignalToTaskMapTask)
|
|
10674
|
-
);
|
|
10654
|
+
}).doOn("meta.sync_controller.task_registered").then(this.registerSignalToTaskMapTask);
|
|
10675
10655
|
CadenzaService.registry.doForEachTask.clone().doOn(
|
|
10676
10656
|
"meta.sync_controller.synced_intents",
|
|
10677
10657
|
"meta.sync_controller.synced_tasks",
|
|
10678
10658
|
"meta.sync_requested"
|
|
10679
|
-
).then(
|
|
10680
|
-
CadenzaService.createMetaTask(
|
|
10681
|
-
"Ensure intent and task sync ready",
|
|
10682
|
-
(ctx) => {
|
|
10683
|
-
if (!this.tasksSynced || !this.intentsSynced) {
|
|
10684
|
-
return false;
|
|
10685
|
-
}
|
|
10686
|
-
return ctx;
|
|
10687
|
-
}
|
|
10688
|
-
).then(this.registerIntentToTaskMapTask)
|
|
10689
|
-
);
|
|
10659
|
+
).then(this.registerIntentToTaskMapTask);
|
|
10690
10660
|
CadenzaService.createMetaTask("Get registered task for intent sync", (ctx) => {
|
|
10691
10661
|
const task = ctx.task ?? (ctx.__taskName ? CadenzaService.get(ctx.__taskName) : void 0);
|
|
10692
10662
|
if (!task) {
|
|
@@ -10696,17 +10666,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
10696
10666
|
...ctx,
|
|
10697
10667
|
task
|
|
10698
10668
|
};
|
|
10699
|
-
}).doOn("meta.sync_controller.task_registered").then(
|
|
10700
|
-
CadenzaService.createMetaTask(
|
|
10701
|
-
"Ensure intent and task sync ready from task registration",
|
|
10702
|
-
(ctx) => {
|
|
10703
|
-
if (!this.tasksSynced || !this.intentsSynced) {
|
|
10704
|
-
return false;
|
|
10705
|
-
}
|
|
10706
|
-
return ctx;
|
|
10707
|
-
}
|
|
10708
|
-
).then(this.registerIntentToTaskMapTask)
|
|
10709
|
-
);
|
|
10669
|
+
}).doOn("meta.sync_controller.task_registered").then(this.registerIntentToTaskMapTask);
|
|
10710
10670
|
CadenzaService.registry.doForEachTask.clone().doOn(
|
|
10711
10671
|
"meta.sync_controller.synced_actors",
|
|
10712
10672
|
"meta.sync_controller.synced_tasks",
|