@bian-womp/spark-workbench 0.3.77 → 0.3.79
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/lib/cjs/index.cjs +2 -7
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/cjs/src/runtime/LocalGraphRunner.d.ts.map +1 -1
- package/lib/cjs/src/runtime/RemoteGraphRunner.d.ts.map +1 -1
- package/lib/esm/index.js +2 -7
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/src/runtime/LocalGraphRunner.d.ts.map +1 -1
- package/lib/esm/src/runtime/RemoteGraphRunner.d.ts.map +1 -1
- package/package.json +4 -4
package/lib/cjs/index.cjs
CHANGED
|
@@ -1425,10 +1425,7 @@ class LocalGraphRunner extends AbstractGraphRunner {
|
|
|
1425
1425
|
const snapshot = await this.snapshotFull();
|
|
1426
1426
|
const converter = sparkGraph.buildValueConverter(converterConfig);
|
|
1427
1427
|
const converted = sparkGraph.convertSnapshot(snapshot, converter);
|
|
1428
|
-
await this.applySnapshotFull(converted, {
|
|
1429
|
-
skipBuild: true,
|
|
1430
|
-
dry: options?.dry,
|
|
1431
|
-
});
|
|
1428
|
+
await this.applySnapshotFull(converted, { skipBuild: true, dry: options?.dry });
|
|
1432
1429
|
return converted;
|
|
1433
1430
|
}
|
|
1434
1431
|
async pause() {
|
|
@@ -2032,9 +2029,7 @@ class RemoteGraphRunner extends AbstractGraphRunner {
|
|
|
2032
2029
|
this.hydrateValueCache(payload, { dry: options?.dry });
|
|
2033
2030
|
// Then sync with backend
|
|
2034
2031
|
const client = await this.ensureClient();
|
|
2035
|
-
await client.api.applySnapshotFull(payload, {
|
|
2036
|
-
skipBuild: options?.skipBuild,
|
|
2037
|
-
});
|
|
2032
|
+
await client.api.applySnapshotFull(payload, { skipBuild: options?.skipBuild });
|
|
2038
2033
|
}
|
|
2039
2034
|
async convertSnapshot(converterConfig, options) {
|
|
2040
2035
|
const client = await this.ensureClient();
|