@interncom/diplomatic 0.0.65 → 0.0.67

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/README.md CHANGED
@@ -37,4 +37,4 @@ export default function App() {
37
37
 
38
38
  ## Development
39
39
 
40
- To deploy npm package: `npm run build && npm run tsc && npm publish --public`.
40
+ To deploy npm package, from the `web` dir, run: `npm run build && npm run tsc && npm publish --public`.
package/dist/index.mjs CHANGED
@@ -11543,6 +11543,7 @@ var DiplomaticClient = class {
11543
11543
  const { hostURL, hostKeyPair } = this;
11544
11544
  const resp = await api_default.listDeltas(hostURL, begin, hostKeyPair);
11545
11545
  for (const item of resp.deltas) {
11546
+ await this.store.dequeueUpload(item.sha256);
11546
11547
  if (await this.store.hasOp(item.sha256)) {
11547
11548
  continue;
11548
11549
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interncom/diplomatic",
3
- "version": "0.0.65",
3
+ "version": "0.0.67",
4
4
  "type": "module",
5
5
  "description": "Secure sync layer",
6
6
  "main": "dist/index.mjs",