@doow/track 0.1.3 → 0.1.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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Customer-facing SDK for emitting usage telemetry to Doow. Tracks metered usage events (API calls, tokens, storage, requests, etc.) from any Node.js application.
4
4
 
5
- Source repository: https://github.com/Doow-Dev/doow-track-sdk
5
+ Project home: https://github.com/Doow-Dev/doow-track-sdk
6
6
 
7
7
  ## Quick start
8
8
 
@@ -220,5 +220,4 @@ After `AUTH_FAILURE`, the SDK stops emitting permanently (check `meter.stopped`)
220
220
  - [Serverless guide](docs/serverless.md) — Lambda, Vercel, Azure Functions
221
221
  - [Sidecar guide](docs/sidecar.md) — Docker Compose, Kubernetes sidecar pattern
222
222
  - [Daemon / CLI guide](docs/daemon.md) — systemd unit file, config file reference
223
- - [Migration guide](docs/migration.md) — Migrating from manual CSV upload to SDK
224
223
  - [OTLP push guide](docs/otlp.md) — OpenTelemetry Collector config, GenAI semconv mapping
@@ -25,7 +25,7 @@ async function gzipBuffer(data) {
25
25
  gz.end(data);
26
26
  });
27
27
  }
28
- const SDK_VERSION = "0.1.3";
28
+ const SDK_VERSION = "0.1.4";
29
29
  function toWireEvent(event) {
30
30
  var _a;
31
31
  const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
package/dist/cli.cjs CHANGED
@@ -69,7 +69,7 @@ async function gzipBuffer(data) {
69
69
  gz.end(data);
70
70
  });
71
71
  }
72
- const SDK_VERSION = "0.1.3";
72
+ const SDK_VERSION = "0.1.4";
73
73
  function toWireEvent(event) {
74
74
  var _a;
75
75
  const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
@@ -23,7 +23,7 @@ async function gzipBuffer(data) {
23
23
  gz.end(data);
24
24
  });
25
25
  }
26
- const SDK_VERSION = "0.1.3";
26
+ const SDK_VERSION = "0.1.4";
27
27
  function toWireEvent(event) {
28
28
  var _a;
29
29
  const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
package/dist/sidecar.cjs CHANGED
@@ -71,7 +71,7 @@ async function gzipBuffer(data) {
71
71
  gz.end(data);
72
72
  });
73
73
  }
74
- const SDK_VERSION = "0.1.3";
74
+ const SDK_VERSION = "0.1.4";
75
75
  function toWireEvent(event) {
76
76
  var _a;
77
77
  const sourceSystem = ((_a = event.source_system) === null || _a === void 0 ? void 0 : _a.trim()) ? event.source_system : 'sdk';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doow/track",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Customer-facing SDK for emitting usage telemetry to Doow",
5
5
  "license": "MIT",
6
6
  "author": "Doow",