@orbit-software/sdk 1.93.2 → 1.93.6
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 +5 -1
- package/dist/esm/lib/ads/tutorial-placement.d.ts +1 -0
- package/dist/esm/sdk.mjs +166 -156
- package/dist/esm/sdk.umd.js +8 -8
- package/dist/esm/utils/analytics.d.ts +3 -0
- 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 +8 -8
- package/dist/umd_react/sdk_react.umd.js +41 -41
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { getAnalytics } from '@orbit-software/analytics';
|
|
1
2
|
/**
|
|
2
3
|
* Base analytics parameters used across multiple tracking events.
|
|
3
4
|
*/
|
|
@@ -6,6 +7,8 @@ export declare function getBaseAnalyticsParams(): {
|
|
|
6
7
|
game_title: any;
|
|
7
8
|
game_url: string;
|
|
8
9
|
};
|
|
10
|
+
type BiAnalytics = ReturnType<typeof getAnalytics>;
|
|
11
|
+
export declare function initAnalytics(): BiAnalytics;
|
|
9
12
|
export declare function getBiSessionId(): string;
|
|
10
13
|
declare class AnalyticsServiceImpl {
|
|
11
14
|
identify(userId: string | number): void;
|