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 +1 -1
- package/bin/tokelytics.mjs +3 -3
- package/package.json +1 -1
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
|
|
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
|
package/bin/tokelytics.mjs
CHANGED
|
@@ -1781,7 +1781,7 @@ var FirestoreSink = class {
|
|
|
1781
1781
|
};
|
|
1782
1782
|
|
|
1783
1783
|
// src/version.ts
|
|
1784
|
-
var AGENT_VERSION = "0.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 =
|
|
3785
|
-
var MAX_CLOUD_WRITES_PER_DAY =
|
|
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) {
|