@logg/signals 0.1.3 → 0.1.5

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,6 +2,8 @@
2
2
 
3
3
  Universal event tracking SDK for Logg Signals. Track events from web, React Native, and Node.js applications.
4
4
 
5
+ **Version 0.1.4** - Test release
6
+
5
7
  ## Features
6
8
 
7
9
  ✅ **Universal** - Works in browsers, React Native, and Node.js
package/dist/index.js CHANGED
@@ -358,7 +358,7 @@ var Signals = class {
358
358
  const anonymousId = config.anonymousId ?? uuid();
359
359
  this.config = {
360
360
  apiKey: config.apiKey,
361
- endpoint: config.endpoint ?? DEFAULT_ENDPOINT,
361
+ endpoint: config.endpoint || DEFAULT_ENDPOINT,
362
362
  batchSize: config.batchSize ?? DEFAULT_BATCH_SIZE,
363
363
  batchInterval: config.batchInterval ?? DEFAULT_BATCH_INTERVAL,
364
364
  maxRetries: config.maxRetries ?? DEFAULT_MAX_RETRIES,
package/dist/index.mjs CHANGED
@@ -334,7 +334,7 @@ var Signals = class {
334
334
  const anonymousId = config.anonymousId ?? uuid();
335
335
  this.config = {
336
336
  apiKey: config.apiKey,
337
- endpoint: config.endpoint ?? DEFAULT_ENDPOINT,
337
+ endpoint: config.endpoint || DEFAULT_ENDPOINT,
338
338
  batchSize: config.batchSize ?? DEFAULT_BATCH_SIZE,
339
339
  batchInterval: config.batchInterval ?? DEFAULT_BATCH_INTERVAL,
340
340
  maxRetries: config.maxRetries ?? DEFAULT_MAX_RETRIES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logg/signals",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Universal event tracking SDK for Logg Signals",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",