@dxos/echo-pipeline 0.1.53-main.3ecc504 → 0.1.53-main.706990e
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/lib/browser/{chunk-AXGWKSM3.mjs → chunk-RD75WUUV.mjs} +9 -8
- package/dist/lib/browser/{chunk-AXGWKSM3.mjs.map → chunk-RD75WUUV.mjs.map} +2 -2
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/testing/index.mjs +1 -1
- package/dist/lib/node/index.cjs +8 -7
- package/dist/lib/node/index.cjs.map +2 -2
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/testing/index.cjs +8 -7
- package/dist/lib/node/testing/index.cjs.map +2 -2
- package/dist/types/src/space/data-pipeline.d.ts.map +1 -1
- package/package.json +30 -30
- package/src/space/data-pipeline.ts +1 -0
|
@@ -1227,7 +1227,8 @@ var DataPipeline = class DataPipeline2 {
|
|
|
1227
1227
|
try {
|
|
1228
1228
|
const propertiesItem = this.itemManager.items.find((item) => {
|
|
1229
1229
|
var _a2, _b;
|
|
1230
|
-
return ((_a2 = item.modelMeta) == null ? void 0 : _a2.type) === "dxos:model/document" &&
|
|
1230
|
+
return ((_a2 = item.modelMeta) == null ? void 0 : _a2.type) === "dxos:model/document" && // TODO(burdon): Document?
|
|
1231
|
+
((_b = getStateMachineFromItem(item)) == null ? void 0 : _b.snapshot().type) === "dxos.sdk.client.Properties";
|
|
1231
1232
|
});
|
|
1232
1233
|
if (propertiesItem) {
|
|
1233
1234
|
cache.properties = (_a = getStateMachineFromItem(propertiesItem)) == null ? void 0 : _a.snapshot();
|
|
@@ -1235,7 +1236,7 @@ var DataPipeline = class DataPipeline2 {
|
|
|
1235
1236
|
} catch (err) {
|
|
1236
1237
|
log8.warn("Failed to cache properties", err, {
|
|
1237
1238
|
file: "data-pipeline.ts",
|
|
1238
|
-
line:
|
|
1239
|
+
line: 269,
|
|
1239
1240
|
scope: this,
|
|
1240
1241
|
callSite: (f, a) => f(...a)
|
|
1241
1242
|
});
|
|
@@ -1262,14 +1263,14 @@ var DataPipeline = class DataPipeline2 {
|
|
|
1262
1263
|
if (err instanceof CancelledError) {
|
|
1263
1264
|
log8("Epoch processing cancelled.", {}, {
|
|
1264
1265
|
file: "data-pipeline.ts",
|
|
1265
|
-
line:
|
|
1266
|
+
line: 301,
|
|
1266
1267
|
scope: this,
|
|
1267
1268
|
callSite: (f, a) => f(...a)
|
|
1268
1269
|
});
|
|
1269
1270
|
} else {
|
|
1270
1271
|
log8.catch(err, {}, {
|
|
1271
1272
|
file: "data-pipeline.ts",
|
|
1272
|
-
line:
|
|
1273
|
+
line: 303,
|
|
1273
1274
|
scope: this,
|
|
1274
1275
|
callSite: (f, a) => f(...a)
|
|
1275
1276
|
});
|
|
@@ -1285,7 +1286,7 @@ var DataPipeline = class DataPipeline2 {
|
|
|
1285
1286
|
epoch
|
|
1286
1287
|
}, {
|
|
1287
1288
|
file: "data-pipeline.ts",
|
|
1288
|
-
line:
|
|
1289
|
+
line: 313,
|
|
1289
1290
|
scope: this,
|
|
1290
1291
|
callSite: (f, a) => f(...a)
|
|
1291
1292
|
});
|
|
@@ -1302,7 +1303,7 @@ var DataPipeline = class DataPipeline2 {
|
|
|
1302
1303
|
epoch
|
|
1303
1304
|
}, {
|
|
1304
1305
|
file: "data-pipeline.ts",
|
|
1305
|
-
line:
|
|
1306
|
+
line: 327,
|
|
1306
1307
|
scope: this,
|
|
1307
1308
|
callSite: (f, a) => f(...a)
|
|
1308
1309
|
});
|
|
@@ -1312,7 +1313,7 @@ var DataPipeline = class DataPipeline2 {
|
|
|
1312
1313
|
}
|
|
1313
1314
|
log8("restarting pipeline for epoch", {}, {
|
|
1314
1315
|
file: "data-pipeline.ts",
|
|
1315
|
-
line:
|
|
1316
|
+
line: 335,
|
|
1316
1317
|
scope: this,
|
|
1317
1318
|
callSite: (f, a) => f(...a)
|
|
1318
1319
|
});
|
|
@@ -2048,4 +2049,4 @@ export {
|
|
|
2048
2049
|
SpaceProtocolSession,
|
|
2049
2050
|
SpaceManager
|
|
2050
2051
|
};
|
|
2051
|
-
//# sourceMappingURL=chunk-
|
|
2052
|
+
//# sourceMappingURL=chunk-RD75WUUV.mjs.map
|