@qaecy/cue-cli 0.0.38 → 0.0.39

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.
Files changed (2) hide show
  1. package/main.js +7 -3
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -8115,9 +8115,13 @@ WHERE {
8115
8115
  }
8116
8116
  }
8117
8117
  const timer = setInterval(() => {
8118
- this._drainPending(verbose).catch(
8119
- (err) => console.error("[CueSyncApi] Periodic flush failed:", err)
8120
- );
8118
+ this._drainPending(verbose).catch((err) => {
8119
+ const msg = err instanceof Error ? err.message : String(err);
8120
+ console.warn(
8121
+ `\u26A0\uFE0F Metadata flush failed (will retry on next tick): ${msg}
8122
+ Pending items are saved locally and will be re-sent automatically.`
8123
+ );
8124
+ });
8121
8125
  }, 6e4);
8122
8126
  if (typeof timer === "object" && typeof timer.unref === "function") {
8123
8127
  timer.unref();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qaecy/cue-cli",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "Cue CLI for QAECY platform",
5
5
  "main": "main.js",
6
6
  "bin": {