@cadenza.io/service 2.17.41 → 2.17.42
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 +11 -11
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.mjs +11 -11
- package/dist/browser/index.mjs.map +1 -1
- package/dist/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/browser/index.js
CHANGED
|
@@ -6492,7 +6492,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6492
6492
|
{ concurrency: 30 }
|
|
6493
6493
|
)?.then(
|
|
6494
6494
|
CadenzaService.createMetaTask("Register routine", (ctx) => {
|
|
6495
|
-
if (!
|
|
6495
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6496
6496
|
return;
|
|
6497
6497
|
}
|
|
6498
6498
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6581,7 +6581,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6581
6581
|
{ concurrency: 30 }
|
|
6582
6582
|
)?.then(
|
|
6583
6583
|
CadenzaService.createMetaTask("Register routine task", (ctx) => {
|
|
6584
|
-
if (!
|
|
6584
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6585
6585
|
return;
|
|
6586
6586
|
}
|
|
6587
6587
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6636,7 +6636,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6636
6636
|
{ concurrency: 30 }
|
|
6637
6637
|
)?.then(
|
|
6638
6638
|
CadenzaService.createMetaTask("Process signal registration", (ctx) => {
|
|
6639
|
-
if (!
|
|
6639
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6640
6640
|
return;
|
|
6641
6641
|
}
|
|
6642
6642
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6728,7 +6728,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6728
6728
|
{ concurrency: 30 }
|
|
6729
6729
|
)?.then(
|
|
6730
6730
|
CadenzaService.createMetaTask("Record registration", (ctx, emit) => {
|
|
6731
|
-
if (!
|
|
6731
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6732
6732
|
return;
|
|
6733
6733
|
}
|
|
6734
6734
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6799,7 +6799,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6799
6799
|
{ concurrency: 30 }
|
|
6800
6800
|
)?.then(
|
|
6801
6801
|
CadenzaService.createMetaTask("Record actor registration", (ctx) => {
|
|
6802
|
-
if (!
|
|
6802
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6803
6803
|
return;
|
|
6804
6804
|
}
|
|
6805
6805
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6879,7 +6879,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6879
6879
|
{ concurrency: 30 }
|
|
6880
6880
|
)?.then(
|
|
6881
6881
|
CadenzaService.createMetaTask("Record actor task map registration", (ctx) => {
|
|
6882
|
-
if (!
|
|
6882
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6883
6883
|
return;
|
|
6884
6884
|
}
|
|
6885
6885
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6892,7 +6892,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6892
6892
|
const registerSignalTask = CadenzaService.createMetaTask(
|
|
6893
6893
|
"Record signal registration",
|
|
6894
6894
|
(ctx) => {
|
|
6895
|
-
if (!
|
|
6895
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6896
6896
|
return;
|
|
6897
6897
|
}
|
|
6898
6898
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6984,7 +6984,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6984
6984
|
CadenzaService.createMetaTask("Process split intent registration", (ctx) => ctx).doOn("meta.sync_controller.intent_registration_split").then(
|
|
6985
6985
|
insertIntentRegistryTask?.then(
|
|
6986
6986
|
CadenzaService.createMetaTask("Record intent definition registration", (ctx) => {
|
|
6987
|
-
if (!
|
|
6987
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6988
6988
|
return;
|
|
6989
6989
|
}
|
|
6990
6990
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -7010,7 +7010,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
7010
7010
|
const registerIntentTask = CadenzaService.createMetaTask(
|
|
7011
7011
|
"Record intent registration",
|
|
7012
7012
|
(ctx) => {
|
|
7013
|
-
if (!
|
|
7013
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
7014
7014
|
return;
|
|
7015
7015
|
}
|
|
7016
7016
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -7182,7 +7182,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
7182
7182
|
{ concurrency: 30 }
|
|
7183
7183
|
)?.then(
|
|
7184
7184
|
CadenzaService.createMetaTask("Record task map registration", (ctx) => {
|
|
7185
|
-
if (!
|
|
7185
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
7186
7186
|
return;
|
|
7187
7187
|
}
|
|
7188
7188
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -7243,7 +7243,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
7243
7243
|
CadenzaService.createMetaTask(
|
|
7244
7244
|
"Record deputy relationship registration",
|
|
7245
7245
|
(ctx) => {
|
|
7246
|
-
if (!
|
|
7246
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
7247
7247
|
return;
|
|
7248
7248
|
}
|
|
7249
7249
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|