@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.mjs
CHANGED
|
@@ -8907,7 +8907,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
8907
8907
|
{ concurrency: 30 }
|
|
8908
8908
|
)?.then(
|
|
8909
8909
|
CadenzaService.createMetaTask("Register routine", (ctx) => {
|
|
8910
|
-
if (!
|
|
8910
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
8911
8911
|
return;
|
|
8912
8912
|
}
|
|
8913
8913
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -8996,7 +8996,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
8996
8996
|
{ concurrency: 30 }
|
|
8997
8997
|
)?.then(
|
|
8998
8998
|
CadenzaService.createMetaTask("Register routine task", (ctx) => {
|
|
8999
|
-
if (!
|
|
8999
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9000
9000
|
return;
|
|
9001
9001
|
}
|
|
9002
9002
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9051,7 +9051,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9051
9051
|
{ concurrency: 30 }
|
|
9052
9052
|
)?.then(
|
|
9053
9053
|
CadenzaService.createMetaTask("Process signal registration", (ctx) => {
|
|
9054
|
-
if (!
|
|
9054
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9055
9055
|
return;
|
|
9056
9056
|
}
|
|
9057
9057
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9143,7 +9143,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9143
9143
|
{ concurrency: 30 }
|
|
9144
9144
|
)?.then(
|
|
9145
9145
|
CadenzaService.createMetaTask("Record registration", (ctx, emit) => {
|
|
9146
|
-
if (!
|
|
9146
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9147
9147
|
return;
|
|
9148
9148
|
}
|
|
9149
9149
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9214,7 +9214,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9214
9214
|
{ concurrency: 30 }
|
|
9215
9215
|
)?.then(
|
|
9216
9216
|
CadenzaService.createMetaTask("Record actor registration", (ctx) => {
|
|
9217
|
-
if (!
|
|
9217
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9218
9218
|
return;
|
|
9219
9219
|
}
|
|
9220
9220
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9294,7 +9294,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9294
9294
|
{ concurrency: 30 }
|
|
9295
9295
|
)?.then(
|
|
9296
9296
|
CadenzaService.createMetaTask("Record actor task map registration", (ctx) => {
|
|
9297
|
-
if (!
|
|
9297
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9298
9298
|
return;
|
|
9299
9299
|
}
|
|
9300
9300
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9307,7 +9307,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9307
9307
|
const registerSignalTask = CadenzaService.createMetaTask(
|
|
9308
9308
|
"Record signal registration",
|
|
9309
9309
|
(ctx) => {
|
|
9310
|
-
if (!
|
|
9310
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9311
9311
|
return;
|
|
9312
9312
|
}
|
|
9313
9313
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9399,7 +9399,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9399
9399
|
CadenzaService.createMetaTask("Process split intent registration", (ctx) => ctx).doOn("meta.sync_controller.intent_registration_split").then(
|
|
9400
9400
|
insertIntentRegistryTask?.then(
|
|
9401
9401
|
CadenzaService.createMetaTask("Record intent definition registration", (ctx) => {
|
|
9402
|
-
if (!
|
|
9402
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9403
9403
|
return;
|
|
9404
9404
|
}
|
|
9405
9405
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9425,7 +9425,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9425
9425
|
const registerIntentTask = CadenzaService.createMetaTask(
|
|
9426
9426
|
"Record intent registration",
|
|
9427
9427
|
(ctx) => {
|
|
9428
|
-
if (!
|
|
9428
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9429
9429
|
return;
|
|
9430
9430
|
}
|
|
9431
9431
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9597,7 +9597,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9597
9597
|
{ concurrency: 30 }
|
|
9598
9598
|
)?.then(
|
|
9599
9599
|
CadenzaService.createMetaTask("Record task map registration", (ctx) => {
|
|
9600
|
-
if (!
|
|
9600
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9601
9601
|
return;
|
|
9602
9602
|
}
|
|
9603
9603
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -9658,7 +9658,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
9658
9658
|
CadenzaService.createMetaTask(
|
|
9659
9659
|
"Record deputy relationship registration",
|
|
9660
9660
|
(ctx) => {
|
|
9661
|
-
if (!
|
|
9661
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
9662
9662
|
return;
|
|
9663
9663
|
}
|
|
9664
9664
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|