@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.js
CHANGED
|
@@ -10690,17 +10690,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
10690
10690
|
"meta.sync_controller.synced_signals",
|
|
10691
10691
|
"meta.sync_controller.synced_tasks",
|
|
10692
10692
|
"meta.sync_requested"
|
|
10693
|
-
).then(
|
|
10694
|
-
CadenzaService.createMetaTask(
|
|
10695
|
-
"Ensure signal and task sync ready",
|
|
10696
|
-
(ctx) => {
|
|
10697
|
-
if (!this.tasksSynced || !this.signalsSynced) {
|
|
10698
|
-
return false;
|
|
10699
|
-
}
|
|
10700
|
-
return ctx;
|
|
10701
|
-
}
|
|
10702
|
-
).then(this.registerSignalToTaskMapTask)
|
|
10703
|
-
);
|
|
10693
|
+
).then(this.registerSignalToTaskMapTask);
|
|
10704
10694
|
CadenzaService.createMetaTask("Get registered task for signal sync", (ctx) => {
|
|
10705
10695
|
const task = ctx.task ?? (ctx.__taskName ? CadenzaService.get(ctx.__taskName) : void 0);
|
|
10706
10696
|
if (!task) {
|
|
@@ -10710,32 +10700,12 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
10710
10700
|
...ctx,
|
|
10711
10701
|
task
|
|
10712
10702
|
};
|
|
10713
|
-
}).doOn("meta.sync_controller.task_registered").then(
|
|
10714
|
-
CadenzaService.createMetaTask(
|
|
10715
|
-
"Ensure signal and task sync ready from task registration",
|
|
10716
|
-
(ctx) => {
|
|
10717
|
-
if (!this.tasksSynced || !this.signalsSynced) {
|
|
10718
|
-
return false;
|
|
10719
|
-
}
|
|
10720
|
-
return ctx;
|
|
10721
|
-
}
|
|
10722
|
-
).then(this.registerSignalToTaskMapTask)
|
|
10723
|
-
);
|
|
10703
|
+
}).doOn("meta.sync_controller.task_registered").then(this.registerSignalToTaskMapTask);
|
|
10724
10704
|
CadenzaService.registry.doForEachTask.clone().doOn(
|
|
10725
10705
|
"meta.sync_controller.synced_intents",
|
|
10726
10706
|
"meta.sync_controller.synced_tasks",
|
|
10727
10707
|
"meta.sync_requested"
|
|
10728
|
-
).then(
|
|
10729
|
-
CadenzaService.createMetaTask(
|
|
10730
|
-
"Ensure intent and task sync ready",
|
|
10731
|
-
(ctx) => {
|
|
10732
|
-
if (!this.tasksSynced || !this.intentsSynced) {
|
|
10733
|
-
return false;
|
|
10734
|
-
}
|
|
10735
|
-
return ctx;
|
|
10736
|
-
}
|
|
10737
|
-
).then(this.registerIntentToTaskMapTask)
|
|
10738
|
-
);
|
|
10708
|
+
).then(this.registerIntentToTaskMapTask);
|
|
10739
10709
|
CadenzaService.createMetaTask("Get registered task for intent sync", (ctx) => {
|
|
10740
10710
|
const task = ctx.task ?? (ctx.__taskName ? CadenzaService.get(ctx.__taskName) : void 0);
|
|
10741
10711
|
if (!task) {
|
|
@@ -10745,17 +10715,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
10745
10715
|
...ctx,
|
|
10746
10716
|
task
|
|
10747
10717
|
};
|
|
10748
|
-
}).doOn("meta.sync_controller.task_registered").then(
|
|
10749
|
-
CadenzaService.createMetaTask(
|
|
10750
|
-
"Ensure intent and task sync ready from task registration",
|
|
10751
|
-
(ctx) => {
|
|
10752
|
-
if (!this.tasksSynced || !this.intentsSynced) {
|
|
10753
|
-
return false;
|
|
10754
|
-
}
|
|
10755
|
-
return ctx;
|
|
10756
|
-
}
|
|
10757
|
-
).then(this.registerIntentToTaskMapTask)
|
|
10758
|
-
);
|
|
10718
|
+
}).doOn("meta.sync_controller.task_registered").then(this.registerIntentToTaskMapTask);
|
|
10759
10719
|
CadenzaService.registry.doForEachTask.clone().doOn(
|
|
10760
10720
|
"meta.sync_controller.synced_actors",
|
|
10761
10721
|
"meta.sync_controller.synced_tasks",
|