@orbit-software/sdk 1.92.6 → 1.93.2
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/.claude/settings.local.json +9 -1
- package/dist/esm/constants.d.ts +1 -0
- package/dist/esm/sdk.d.ts +0 -1
- package/dist/esm/sdk.mjs +581 -253
- package/dist/esm/sdk.umd.js +11 -11
- package/dist/esm/utils/analytics.d.ts +7 -1
- package/dist/stats-esm.html +1 -1
- package/dist/stats-umd-react.html +1 -1
- package/dist/stats-umd.html +1 -1
- package/dist/umd/sdk.umd.js +11 -11
- package/dist/umd_react/sdk_react.umd.js +11 -11
- package/package.json +3 -2
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Base analytics parameters used across multiple tracking events.
|
|
3
|
-
* This will be refactored into an analytics class in the future.
|
|
4
3
|
*/
|
|
5
4
|
export declare function getBaseAnalyticsParams(): {
|
|
6
5
|
game_id: any;
|
|
7
6
|
game_title: any;
|
|
8
7
|
game_url: string;
|
|
9
8
|
};
|
|
9
|
+
export declare function getBiSessionId(): string;
|
|
10
|
+
declare class AnalyticsServiceImpl {
|
|
11
|
+
identify(userId: string | number): void;
|
|
12
|
+
track(event: string, properties?: Record<string, unknown>): void;
|
|
13
|
+
}
|
|
14
|
+
export declare const analytics: AnalyticsServiceImpl;
|
|
15
|
+
export {};
|