@claude-sync/cli 0.1.13 → 0.1.14
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/src/index.js
CHANGED
|
@@ -5461,9 +5461,10 @@ async function crossMachinePull(client, deviceId, projectPath, fromDeviceId, pro
|
|
|
5461
5461
|
dlSpinner.stop();
|
|
5462
5462
|
}
|
|
5463
5463
|
try {
|
|
5464
|
+
const completeManifest = await walkDirectory(targetDir);
|
|
5464
5465
|
await client.post("/api/sync/pull/complete", {
|
|
5465
5466
|
syncEventId: prepareResponse.syncEventId,
|
|
5466
|
-
manifest:
|
|
5467
|
+
manifest: completeManifest
|
|
5467
5468
|
});
|
|
5468
5469
|
} catch {
|
|
5469
5470
|
}
|
|
@@ -5583,9 +5584,10 @@ async function pullPhase(client, deviceId, projectPath, projectDir, projectId, o
|
|
|
5583
5584
|
dlSpinner.stop();
|
|
5584
5585
|
}
|
|
5585
5586
|
try {
|
|
5587
|
+
const completeManifest = await walkDirectory(projectDir);
|
|
5586
5588
|
await client.post("/api/sync/pull/complete", {
|
|
5587
5589
|
syncEventId: prepareResponse.syncEventId,
|
|
5588
|
-
manifest:
|
|
5590
|
+
manifest: completeManifest
|
|
5589
5591
|
});
|
|
5590
5592
|
} catch {
|
|
5591
5593
|
}
|