tokelytics 0.3.3 → 0.3.4

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
@@ -9,7 +9,7 @@ prompts or responses.
9
9
 
10
10
  ```
11
11
  npx tokelytics@latest login # opens your browser to approve — no setup, no keys
12
- npx tokelytics@latest watch # local live updates; cloud backup every 20m
12
+ npx tokelytics@latest watch # local live updates; cloud backup every 30m
13
13
  ```
14
14
 
15
15
  Keep `@latest` in install and onboarding commands. Agents older than 0.3.1
@@ -1781,7 +1781,7 @@ var FirestoreSink = class {
1781
1781
  };
1782
1782
 
1783
1783
  // src/version.ts
1784
- var AGENT_VERSION = "0.3.3";
1784
+ var AGENT_VERSION = "0.3.4";
1785
1785
 
1786
1786
  // src/sync.ts
1787
1787
  async function runSync(connectors, sink, state, device, limitCollectors = [], options = {}) {
@@ -3781,8 +3781,8 @@ var DEBOUNCE_MS = 1200;
3781
3781
  var LIMIT_REFRESH_MS = 6e4;
3782
3782
  var FALLBACK_SCAN_MS = 5e3;
3783
3783
  var DEVICE_HEARTBEAT_MS = 60 * 6e4;
3784
- var CLOUD_SYNC_INTERVAL_MS = 20 * 6e4;
3785
- var MAX_CLOUD_WRITES_PER_DAY = 24;
3784
+ var CLOUD_SYNC_INTERVAL_MS = 30 * 6e4;
3785
+ var MAX_CLOUD_WRITES_PER_DAY = 16;
3786
3786
  var QUOTA_RETRY_MS = 15 * 6e4;
3787
3787
  var QUOTA_RETRY_JITTER_MS = 5 * 6e4;
3788
3788
  async function watch2(runner) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tokelytics",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Tokelytics sync agent — streams local AI CLI usage logs (Claude Code, Codex) to your Tokelytics dashboard.",
5
5
  "license": "MIT",
6
6
  "type": "module",