@edgeplus/sdk 0.0.4 → 0.0.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.
@@ -0,0 +1,11 @@
1
+ interface InitOptions {
2
+ siteKey: string;
3
+ endpoint?: string;
4
+ batchSize?: number;
5
+ batchIntervalMs?: number;
6
+ debug?: boolean;
7
+ }
8
+ declare function init(opts: InitOptions): void;
9
+ declare function track(_eventName: string, _properties?: Record<string, unknown>): void;
10
+
11
+ export { init, track };
@@ -0,0 +1,11 @@
1
+ interface InitOptions {
2
+ siteKey: string;
3
+ endpoint?: string;
4
+ batchSize?: number;
5
+ batchIntervalMs?: number;
6
+ debug?: boolean;
7
+ }
8
+ declare function init(opts: InitOptions): void;
9
+ declare function track(_eventName: string, _properties?: Record<string, unknown>): void;
10
+
11
+ export { init, track };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgeplus/sdk",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "EdgePlus browser SDK - Prescriptive web analytics",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",