@truelab/truelogic 3.5.0-4 → 3.5.0-4.analytics
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 @@
|
|
|
1
|
+
export declare function getApiRoundOpenAnalytics(state: TRootState): string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export type { TStake } from './types';
|
|
2
|
-
export type { TApiRoundOpenError, TApiRoundOpenFake, TApiRoundOpenPayload, TApiRoundOpenResponse, TPromoTool, TResponseGS, } from './types';
|
|
2
|
+
export type { TApiRoundOpenError, TApiRoundOpenFake, TApiRoundOpenPayload, TApiRoundOpenResponse, TPromoTool, TResponseGS, TRoundAnalytics, } from './types';
|
|
@@ -24,8 +24,24 @@ export type TPromoTool = {
|
|
|
24
24
|
addWinnings: boolean;
|
|
25
25
|
level?: number;
|
|
26
26
|
};
|
|
27
|
+
export type TRoundAnalytics = {
|
|
28
|
+
/** Sound (true/false) */
|
|
29
|
+
s: 0 | 1;
|
|
30
|
+
/** Quick spin (0: off, 1: fast, 2: turbo) */
|
|
31
|
+
qs: 0 | 1 | 2;
|
|
32
|
+
/** Auto spin (true/false) */
|
|
33
|
+
as: 0 | 1;
|
|
34
|
+
/** Portrait (true/false) */
|
|
35
|
+
pr: 0 | 1;
|
|
36
|
+
/** Reality check (true/false) */
|
|
37
|
+
rc: 0 | 1;
|
|
38
|
+
/** TrueLogic version */
|
|
39
|
+
tlv: string;
|
|
40
|
+
};
|
|
27
41
|
export type TApiRoundOpenPayload = {
|
|
28
42
|
stakes: TStake[];
|
|
43
|
+
/** JSON.stringify(TRoundAnalytics) */
|
|
44
|
+
analytics: string;
|
|
29
45
|
test?: string;
|
|
30
46
|
pdCampaignId?: string;
|
|
31
47
|
betIndex: number;
|