@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/index.js
CHANGED
|
@@ -8956,7 +8956,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
8956
8956
|
{ concurrency: 30 }
|
|
8957
8957
|
)?.then(
|
|
8958
8958
|
CadenzaService.createMetaTask("Register routine", (ctx) => {
|
|
8959
|
-
if (!
|
|
8959
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
8960
8960
|
return;
|
|
8961
8961
|
}
|
|
8962
8962
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9045,7 +9045,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9045
9045
|
{ concurrency: 30 }
|
|
9046
9046
|
)?.then(
|
|
9047
9047
|
CadenzaService.createMetaTask("Register routine task", (ctx) => {
|
|
9048
|
-
if (!
|
|
9048
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9049
9049
|
return;
|
|
9050
9050
|
}
|
|
9051
9051
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9100,7 +9100,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9100
9100
|
{ concurrency: 30 }
|
|
9101
9101
|
)?.then(
|
|
9102
9102
|
CadenzaService.createMetaTask("Process signal registration", (ctx) => {
|
|
9103
|
-
if (!
|
|
9103
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9104
9104
|
return;
|
|
9105
9105
|
}
|
|
9106
9106
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9192,7 +9192,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9192
9192
|
{ concurrency: 30 }
|
|
9193
9193
|
)?.then(
|
|
9194
9194
|
CadenzaService.createMetaTask("Record registration", (ctx, emit) => {
|
|
9195
|
-
if (!
|
|
9195
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9196
9196
|
return;
|
|
9197
9197
|
}
|
|
9198
9198
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9263,7 +9263,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9263
9263
|
{ concurrency: 30 }
|
|
9264
9264
|
)?.then(
|
|
9265
9265
|
CadenzaService.createMetaTask("Record actor registration", (ctx) => {
|
|
9266
|
-
if (!
|
|
9266
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9267
9267
|
return;
|
|
9268
9268
|
}
|
|
9269
9269
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9343,7 +9343,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9343
9343
|
{ concurrency: 30 }
|
|
9344
9344
|
)?.then(
|
|
9345
9345
|
CadenzaService.createMetaTask("Record actor task map registration", (ctx) => {
|
|
9346
|
-
if (!
|
|
9346
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9347
9347
|
return;
|
|
9348
9348
|
}
|
|
9349
9349
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9356,7 +9356,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9356
9356
|
const registerSignalTask = CadenzaService.createMetaTask(
|
|
9357
9357
|
"Record signal registration",
|
|
9358
9358
|
(ctx) => {
|
|
9359
|
-
if (!
|
|
9359
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9360
9360
|
return;
|
|
9361
9361
|
}
|
|
9362
9362
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9448,7 +9448,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9448
9448
|
CadenzaService.createMetaTask("Process split intent registration", (ctx) => ctx).doOn("meta.sync_controller.intent_registration_split").then(
|
|
9449
9449
|
insertIntentRegistryTask?.then(
|
|
9450
9450
|
CadenzaService.createMetaTask("Record intent definition registration", (ctx) => {
|
|
9451
|
-
if (!
|
|
9451
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9452
9452
|
return;
|
|
9453
9453
|
}
|
|
9454
9454
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9474,7 +9474,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9474
9474
|
const registerIntentTask = CadenzaService.createMetaTask(
|
|
9475
9475
|
"Record intent registration",
|
|
9476
9476
|
(ctx) => {
|
|
9477
|
-
if (!
|
|
9477
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9478
9478
|
return;
|
|
9479
9479
|
}
|
|
9480
9480
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9646,7 +9646,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9646
9646
|
{ concurrency: 30 }
|
|
9647
9647
|
)?.then(
|
|
9648
9648
|
CadenzaService.createMetaTask("Record task map registration", (ctx) => {
|
|
9649
|
-
if (!
|
|
9649
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9650
9650
|
return;
|
|
9651
9651
|
}
|
|
9652
9652
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9707,7 +9707,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9707
9707
|
CadenzaService.createMetaTask(
|
|
9708
9708
|
"Record deputy relationship registration",
|
|
9709
9709
|
(ctx) => {
|
|
9710
|
-
if (!
|
|
9710
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9711
9711
|
return;
|
|
9712
9712
|
}
|
|
9713
9713
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|