@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.mjs
CHANGED
|
@@ -6443,7 +6443,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6443
6443
|
{ concurrency: 30 }
|
|
6444
6444
|
)?.then(
|
|
6445
6445
|
CadenzaService.createMetaTask("Register routine", (ctx) => {
|
|
6446
|
-
if (!
|
|
6446
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6447
6447
|
return;
|
|
6448
6448
|
}
|
|
6449
6449
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6532,7 +6532,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6532
6532
|
{ concurrency: 30 }
|
|
6533
6533
|
)?.then(
|
|
6534
6534
|
CadenzaService.createMetaTask("Register routine task", (ctx) => {
|
|
6535
|
-
if (!
|
|
6535
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6536
6536
|
return;
|
|
6537
6537
|
}
|
|
6538
6538
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6587,7 +6587,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6587
6587
|
{ concurrency: 30 }
|
|
6588
6588
|
)?.then(
|
|
6589
6589
|
CadenzaService.createMetaTask("Process signal registration", (ctx) => {
|
|
6590
|
-
if (!
|
|
6590
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6591
6591
|
return;
|
|
6592
6592
|
}
|
|
6593
6593
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6679,7 +6679,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6679
6679
|
{ concurrency: 30 }
|
|
6680
6680
|
)?.then(
|
|
6681
6681
|
CadenzaService.createMetaTask("Record registration", (ctx, emit) => {
|
|
6682
|
-
if (!
|
|
6682
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6683
6683
|
return;
|
|
6684
6684
|
}
|
|
6685
6685
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6750,7 +6750,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6750
6750
|
{ concurrency: 30 }
|
|
6751
6751
|
)?.then(
|
|
6752
6752
|
CadenzaService.createMetaTask("Record actor registration", (ctx) => {
|
|
6753
|
-
if (!
|
|
6753
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6754
6754
|
return;
|
|
6755
6755
|
}
|
|
6756
6756
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6830,7 +6830,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6830
6830
|
{ concurrency: 30 }
|
|
6831
6831
|
)?.then(
|
|
6832
6832
|
CadenzaService.createMetaTask("Record actor task map registration", (ctx) => {
|
|
6833
|
-
if (!
|
|
6833
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6834
6834
|
return;
|
|
6835
6835
|
}
|
|
6836
6836
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6843,7 +6843,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6843
6843
|
const registerSignalTask = CadenzaService.createMetaTask(
|
|
6844
6844
|
"Record signal registration",
|
|
6845
6845
|
(ctx) => {
|
|
6846
|
-
if (!
|
|
6846
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6847
6847
|
return;
|
|
6848
6848
|
}
|
|
6849
6849
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6935,7 +6935,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6935
6935
|
CadenzaService.createMetaTask("Process split intent registration", (ctx) => ctx).doOn("meta.sync_controller.intent_registration_split").then(
|
|
6936
6936
|
insertIntentRegistryTask?.then(
|
|
6937
6937
|
CadenzaService.createMetaTask("Record intent definition registration", (ctx) => {
|
|
6938
|
-
if (!
|
|
6938
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6939
6939
|
return;
|
|
6940
6940
|
}
|
|
6941
6941
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -6961,7 +6961,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
6961
6961
|
const registerIntentTask = CadenzaService.createMetaTask(
|
|
6962
6962
|
"Record intent registration",
|
|
6963
6963
|
(ctx) => {
|
|
6964
|
-
if (!
|
|
6964
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
6965
6965
|
return;
|
|
6966
6966
|
}
|
|
6967
6967
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -7133,7 +7133,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
7133
7133
|
{ concurrency: 30 }
|
|
7134
7134
|
)?.then(
|
|
7135
7135
|
CadenzaService.createMetaTask("Record task map registration", (ctx) => {
|
|
7136
|
-
if (!
|
|
7136
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
7137
7137
|
return;
|
|
7138
7138
|
}
|
|
7139
7139
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|
|
@@ -7194,7 +7194,7 @@ var GraphSyncController = class _GraphSyncController {
|
|
|
7194
7194
|
CadenzaService.createMetaTask(
|
|
7195
7195
|
"Record deputy relationship registration",
|
|
7196
7196
|
(ctx) => {
|
|
7197
|
-
if (!
|
|
7197
|
+
if (!didSyncInsertSucceed(ctx)) {
|
|
7198
7198
|
return;
|
|
7199
7199
|
}
|
|
7200
7200
|
CadenzaService.debounce("meta.sync_controller.synced_resource", {
|