@truelab/truelogic-plinko 0.0.1 → 0.0.2-0
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/dist/preloader.html +1 -1
- package/dist/truelogic.min.css +1 -1
- package/dist/truelogic.min.js +1 -1
- package/dist/types/src/app/lib/singletones/publicEmitter.d.ts +4 -0
- package/dist/types/src/app/store.d.ts +35 -10
- package/dist/types/src/entities/activeRounds/index.d.ts +1 -0
- package/dist/types/src/entities/activeRounds/model/activeRoundsSlice.d.ts +18 -0
- package/dist/types/src/entities/autoplay/model/autoPlaySlice.d.ts +7 -2
- package/dist/types/src/entities/bonus/index.d.ts +1 -1
- package/dist/types/src/entities/bonus/model/bonusSlice.d.ts +13 -5
- package/dist/types/src/entities/fastplay/index.d.ts +1 -1
- package/dist/types/src/entities/fastplay/model/fastPlaySlice.d.ts +2 -1
- package/dist/types/src/entities/modals/ui/ModalBaseHeader.d.ts +2 -1
- package/dist/types/src/entities/round/index.d.ts +1 -1
- package/dist/types/src/entities/round/model/roundSlice.d.ts +2 -2
- package/dist/types/src/entities/session/index.d.ts +1 -1
- package/dist/types/src/entities/session/model/sessionSlice.d.ts +2 -3
- package/dist/types/src/features/bonus/index.d.ts +2 -0
- package/dist/types/src/features/bonus/ui/BonusFeatureSelector/BonusFeatureSelector.d.ts +6 -1
- package/dist/types/src/features/bonus/ui/BonusFeatureSelector/BonusFeatureSelectorItem.d.ts +9 -0
- package/dist/types/src/features/bonus/ui/BonusInfoTooltip/BonusInfoTooltip.d.ts +6 -0
- package/dist/types/src/features/bonus/ui/BonusShortcutIcons/BonusShortcutIcon.d.ts +5 -0
- package/dist/types/src/features/bonus/ui/BonusShortcutIcons/BonusShortcutIcons.d.ts +1 -0
- package/dist/types/src/features/panel/ui/PanelBonus.d.ts +3 -1
- package/dist/types/src/features/play/index.d.ts +1 -0
- package/dist/types/src/features/play/model/initRound.d.ts +10 -0
- package/dist/types/src/features/play/ui/PanelPlay/PanelPlay.d.ts +2 -1
- package/dist/types/src/features/riskSelector/index.d.ts +3 -0
- package/dist/types/src/features/riskSelector/model/constants.d.ts +5 -0
- package/dist/types/src/features/riskSelector/model/types.d.ts +5 -0
- package/dist/types/src/features/riskSelector/ui/RiskSelector.d.ts +1 -0
- package/dist/types/src/features/riskSelector/ui/RiskSelectorSelect.d.ts +1 -0
- package/dist/types/src/features/rowsSelector/index.d.ts +2 -0
- package/dist/types/src/features/rowsSelector/model/constants.d.ts +2 -0
- package/dist/types/src/features/rowsSelector/ui/RowsSelectorGrid.d.ts +1 -0
- package/dist/types/src/features/rowsSelector/ui/RowsSelectorSelect.d.ts +1 -0
- package/dist/types/src/sandbox/config.d.ts +4 -0
- package/dist/types/src/shared/api/config/index.d.ts +1 -1
- package/dist/types/src/shared/api/config/types.d.ts +7 -0
- package/dist/types/src/shared/api/round/open/index.d.ts +1 -0
- package/dist/types/src/shared/api/round/open/types.d.ts +4 -0
- package/dist/types/src/shared/lib/singletones/gameEmitter.d.ts +1 -0
- package/dist/types/src/shared/lib/store/redux.d.ts +14 -4
- package/dist/types/src/shared/lib/tests/utils/getPreloadedState.d.ts +7 -2
- package/dist/types/src/shared/lib/tests/utils/setupTestStore.d.ts +14 -4
- package/dist/types/src/shared/model/modals/modalsSlice.d.ts +1 -1
- package/dist/types/src/shared/ui/Switch/Switch.d.ts +6 -0
- package/dist/types/src/shared/ui/Tooltip/TooltipDropdown.d.ts +3 -2
- package/dist/types/src/truelogic.d.ts +2 -0
- package/dist/types/src/widgets/gameSettingsPanel/GameSettingsPanel.d.ts +1 -0
- package/dist/types/src/widgets/gameSettingsPanel/index.d.ts +1 -0
- package/dist/types/src/widgets/modals/index.d.ts +1 -0
- package/dist/types/src/widgets/modals/ui/ModalStakeAmounts/ModalStakeAmounts.d.ts +1 -0
- package/dist/types/src/widgets/modals/ui/ModalStakeAmounts/RectStakeAmount.d.ts +8 -0
- package/dist/types/tailwind.config.d.ts +10 -0
- package/package.json +1 -1
|
@@ -62,6 +62,8 @@ export type TConfiguration = {
|
|
|
62
62
|
freeRounds?: TFreeRoundsConfig;
|
|
63
63
|
sounds?: TSoundsConfig;
|
|
64
64
|
fillFrame?: TFillFrameConfig;
|
|
65
|
+
customPay?: boolean;
|
|
66
|
+
fastPlay?: boolean;
|
|
65
67
|
};
|
|
66
68
|
export type TPublicEvents = {
|
|
67
69
|
['init']: (config?: TInitConfig) => void;
|
|
@@ -87,6 +89,8 @@ export type TPublicEvents = {
|
|
|
87
89
|
['tapAnywhere:ended']: () => void;
|
|
88
90
|
['test:set']: (test: string) => void;
|
|
89
91
|
['panel.counter:set']: (data: TPanelCounterData) => void;
|
|
92
|
+
['balance:added']: (amount: number) => void;
|
|
93
|
+
['round:finished']: (roundId: string) => void;
|
|
90
94
|
};
|
|
91
95
|
declare class PublicEmitter extends Emitter<TPublicEvents> {
|
|
92
96
|
log(event: string, ...args: unknown[]): void;
|
|
@@ -56,13 +56,12 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
56
56
|
isDemo: boolean;
|
|
57
57
|
partner: string;
|
|
58
58
|
balance: number;
|
|
59
|
-
balancePrevious: number;
|
|
60
59
|
netValue: number;
|
|
61
|
-
netValuePrevious: number;
|
|
62
60
|
shouldResetNetValue: boolean;
|
|
63
61
|
currency: string;
|
|
64
62
|
currencyDecimals: number;
|
|
65
63
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
64
|
+
customPay: boolean;
|
|
66
65
|
};
|
|
67
66
|
modals: {
|
|
68
67
|
hasOpened: boolean;
|
|
@@ -132,6 +131,7 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
132
131
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
133
132
|
};
|
|
134
133
|
fastPlay: {
|
|
134
|
+
isEnabled: boolean;
|
|
135
135
|
isActive: boolean;
|
|
136
136
|
};
|
|
137
137
|
bonus: {
|
|
@@ -143,6 +143,8 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
143
143
|
isConfirmModalShown: boolean;
|
|
144
144
|
tmpLevel: number;
|
|
145
145
|
tmpAmountIndex: number;
|
|
146
|
+
isTooltipOpened: boolean;
|
|
147
|
+
isInfoTooltipOpened: boolean;
|
|
146
148
|
activeSlideWidth: number;
|
|
147
149
|
activeSlideOffsetX: number;
|
|
148
150
|
isSliderInTransition: boolean;
|
|
@@ -342,6 +344,9 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
342
344
|
hasDefferedModal?: boolean;
|
|
343
345
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
344
346
|
};
|
|
347
|
+
activeRounds: {
|
|
348
|
+
items: string[];
|
|
349
|
+
};
|
|
345
350
|
}, import("redux").UnknownAction, Partial<{
|
|
346
351
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
347
352
|
loading: {
|
|
@@ -400,13 +405,12 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
400
405
|
isDemo: boolean;
|
|
401
406
|
partner: string;
|
|
402
407
|
balance: number;
|
|
403
|
-
balancePrevious: number;
|
|
404
408
|
netValue: number;
|
|
405
|
-
netValuePrevious: number;
|
|
406
409
|
shouldResetNetValue: boolean;
|
|
407
410
|
currency: string;
|
|
408
411
|
currencyDecimals: number;
|
|
409
412
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
413
|
+
customPay: boolean;
|
|
410
414
|
};
|
|
411
415
|
modals: {
|
|
412
416
|
hasOpened: boolean;
|
|
@@ -476,6 +480,7 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
476
480
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
477
481
|
};
|
|
478
482
|
fastPlay: {
|
|
483
|
+
isEnabled: boolean;
|
|
479
484
|
isActive: boolean;
|
|
480
485
|
};
|
|
481
486
|
bonus: {
|
|
@@ -487,6 +492,8 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
487
492
|
isConfirmModalShown: boolean;
|
|
488
493
|
tmpLevel: number;
|
|
489
494
|
tmpAmountIndex: number;
|
|
495
|
+
isTooltipOpened: boolean;
|
|
496
|
+
isInfoTooltipOpened: boolean;
|
|
490
497
|
activeSlideWidth: number;
|
|
491
498
|
activeSlideOffsetX: number;
|
|
492
499
|
isSliderInTransition: boolean;
|
|
@@ -686,6 +693,9 @@ export declare const rootReducer: import("redux").Reducer<{
|
|
|
686
693
|
hasDefferedModal?: boolean;
|
|
687
694
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
688
695
|
};
|
|
696
|
+
activeRounds: {
|
|
697
|
+
items: string[];
|
|
698
|
+
};
|
|
689
699
|
}>>;
|
|
690
700
|
export declare const persistedReducer: import("redux").Reducer<{
|
|
691
701
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -745,13 +755,12 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
745
755
|
isDemo: boolean;
|
|
746
756
|
partner: string;
|
|
747
757
|
balance: number;
|
|
748
|
-
balancePrevious: number;
|
|
749
758
|
netValue: number;
|
|
750
|
-
netValuePrevious: number;
|
|
751
759
|
shouldResetNetValue: boolean;
|
|
752
760
|
currency: string;
|
|
753
761
|
currencyDecimals: number;
|
|
754
762
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
763
|
+
customPay: boolean;
|
|
755
764
|
};
|
|
756
765
|
modals: {
|
|
757
766
|
hasOpened: boolean;
|
|
@@ -821,6 +830,7 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
821
830
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
822
831
|
};
|
|
823
832
|
fastPlay: {
|
|
833
|
+
isEnabled: boolean;
|
|
824
834
|
isActive: boolean;
|
|
825
835
|
};
|
|
826
836
|
bonus: {
|
|
@@ -832,6 +842,8 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
832
842
|
isConfirmModalShown: boolean;
|
|
833
843
|
tmpLevel: number;
|
|
834
844
|
tmpAmountIndex: number;
|
|
845
|
+
isTooltipOpened: boolean;
|
|
846
|
+
isInfoTooltipOpened: boolean;
|
|
835
847
|
activeSlideWidth: number;
|
|
836
848
|
activeSlideOffsetX: number;
|
|
837
849
|
isSliderInTransition: boolean;
|
|
@@ -1031,6 +1043,9 @@ export declare const persistedReducer: import("redux").Reducer<{
|
|
|
1031
1043
|
hasDefferedModal?: boolean;
|
|
1032
1044
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
1033
1045
|
};
|
|
1046
|
+
activeRounds: {
|
|
1047
|
+
items: string[];
|
|
1048
|
+
};
|
|
1034
1049
|
} & import("redux-persist/es/persistReducer").PersistPartial, import("redux").Action>;
|
|
1035
1050
|
export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
1036
1051
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -1090,13 +1105,12 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1090
1105
|
isDemo: boolean;
|
|
1091
1106
|
partner: string;
|
|
1092
1107
|
balance: number;
|
|
1093
|
-
balancePrevious: number;
|
|
1094
1108
|
netValue: number;
|
|
1095
|
-
netValuePrevious: number;
|
|
1096
1109
|
shouldResetNetValue: boolean;
|
|
1097
1110
|
currency: string;
|
|
1098
1111
|
currencyDecimals: number;
|
|
1099
1112
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
1113
|
+
customPay: boolean;
|
|
1100
1114
|
};
|
|
1101
1115
|
modals: {
|
|
1102
1116
|
hasOpened: boolean;
|
|
@@ -1166,6 +1180,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1166
1180
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
1167
1181
|
};
|
|
1168
1182
|
fastPlay: {
|
|
1183
|
+
isEnabled: boolean;
|
|
1169
1184
|
isActive: boolean;
|
|
1170
1185
|
};
|
|
1171
1186
|
bonus: {
|
|
@@ -1177,6 +1192,8 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1177
1192
|
isConfirmModalShown: boolean;
|
|
1178
1193
|
tmpLevel: number;
|
|
1179
1194
|
tmpAmountIndex: number;
|
|
1195
|
+
isTooltipOpened: boolean;
|
|
1196
|
+
isInfoTooltipOpened: boolean;
|
|
1180
1197
|
activeSlideWidth: number;
|
|
1181
1198
|
activeSlideOffsetX: number;
|
|
1182
1199
|
isSliderInTransition: boolean;
|
|
@@ -1376,6 +1393,9 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1376
1393
|
hasDefferedModal?: boolean;
|
|
1377
1394
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
1378
1395
|
};
|
|
1396
|
+
activeRounds: {
|
|
1397
|
+
items: string[];
|
|
1398
|
+
};
|
|
1379
1399
|
} & import("redux-persist/es/persistReducer").PersistPartial, import("redux").Action, import("@reduxjs/toolkit").Tuple<[import("redux").StoreEnhancer<{
|
|
1380
1400
|
dispatch: import("redux-thunk").ThunkDispatch<{
|
|
1381
1401
|
viewPort: import("../shared/viewPort/lib/types").TViewPortState;
|
|
@@ -1435,13 +1455,12 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1435
1455
|
isDemo: boolean;
|
|
1436
1456
|
partner: string;
|
|
1437
1457
|
balance: number;
|
|
1438
|
-
balancePrevious: number;
|
|
1439
1458
|
netValue: number;
|
|
1440
|
-
netValuePrevious: number;
|
|
1441
1459
|
shouldResetNetValue: boolean;
|
|
1442
1460
|
currency: string;
|
|
1443
1461
|
currencyDecimals: number;
|
|
1444
1462
|
urls: import("../shared/api/config/types").TSessionUrls;
|
|
1463
|
+
customPay: boolean;
|
|
1445
1464
|
};
|
|
1446
1465
|
modals: {
|
|
1447
1466
|
hasOpened: boolean;
|
|
@@ -1511,6 +1530,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1511
1530
|
fake: import("../shared/api/round/open").TApiRoundOpenFake;
|
|
1512
1531
|
};
|
|
1513
1532
|
fastPlay: {
|
|
1533
|
+
isEnabled: boolean;
|
|
1514
1534
|
isActive: boolean;
|
|
1515
1535
|
};
|
|
1516
1536
|
bonus: {
|
|
@@ -1522,6 +1542,8 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1522
1542
|
isConfirmModalShown: boolean;
|
|
1523
1543
|
tmpLevel: number;
|
|
1524
1544
|
tmpAmountIndex: number;
|
|
1545
|
+
isTooltipOpened: boolean;
|
|
1546
|
+
isInfoTooltipOpened: boolean;
|
|
1525
1547
|
activeSlideWidth: number;
|
|
1526
1548
|
activeSlideOffsetX: number;
|
|
1527
1549
|
isSliderInTransition: boolean;
|
|
@@ -1721,6 +1743,9 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
|
|
|
1721
1743
|
hasDefferedModal?: boolean;
|
|
1722
1744
|
defferedCampaign?: import("../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
1723
1745
|
};
|
|
1746
|
+
activeRounds: {
|
|
1747
|
+
items: string[];
|
|
1748
|
+
};
|
|
1724
1749
|
} & import("redux-persist/es/persistReducer").PersistPartial, undefined, import("redux").UnknownAction>;
|
|
1725
1750
|
}>, import("redux").StoreEnhancer]>>;
|
|
1726
1751
|
export declare const persistor: import("redux-persist").Persistor;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { activeRoundsReducer, addActiveRoundsItem, finishActiveRoundsItem, getHasActiveRounds, } from './model/activeRoundsSlice';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
|
+
type TActiveRoundsState = {
|
|
3
|
+
items: string[];
|
|
4
|
+
};
|
|
5
|
+
export declare const activeRoundsSlice: import("@reduxjs/toolkit").Slice<TActiveRoundsState, {
|
|
6
|
+
addActiveRoundsItem: (state: import("immer").WritableDraft<TActiveRoundsState>, action: PayloadAction<string>) => void;
|
|
7
|
+
finishActiveRoundsItem: (state: import("immer").WritableDraft<TActiveRoundsState>, action: PayloadAction<string>) => void;
|
|
8
|
+
}, "activeRounds", "activeRounds", {
|
|
9
|
+
getHasActiveRounds: (state: TActiveRoundsState) => boolean;
|
|
10
|
+
}>;
|
|
11
|
+
export declare const addActiveRoundsItem: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "activeRounds/addActiveRoundsItem">, finishActiveRoundsItem: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "activeRounds/finishActiveRoundsItem">;
|
|
12
|
+
export declare const getHasActiveRounds: import("reselect").Selector<{
|
|
13
|
+
activeRounds: TActiveRoundsState;
|
|
14
|
+
}, boolean, []> & {
|
|
15
|
+
unwrapped: (state: TActiveRoundsState) => boolean;
|
|
16
|
+
};
|
|
17
|
+
export declare const activeRoundsReducer: import("redux").Reducer<TActiveRoundsState>;
|
|
18
|
+
export {};
|
|
@@ -55,13 +55,12 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
55
55
|
isDemo: boolean;
|
|
56
56
|
partner: string;
|
|
57
57
|
balance: number;
|
|
58
|
-
balancePrevious: number;
|
|
59
58
|
netValue: number;
|
|
60
|
-
netValuePrevious: number;
|
|
61
59
|
shouldResetNetValue: boolean;
|
|
62
60
|
currency: string;
|
|
63
61
|
currencyDecimals: number;
|
|
64
62
|
urls: import("../../../shared/api/config/types").TSessionUrls;
|
|
63
|
+
customPay: boolean;
|
|
65
64
|
};
|
|
66
65
|
modals: {
|
|
67
66
|
hasOpened: boolean;
|
|
@@ -131,6 +130,7 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
131
130
|
fake: import("../../../shared/api/round/open").TApiRoundOpenFake;
|
|
132
131
|
};
|
|
133
132
|
fastPlay: {
|
|
133
|
+
isEnabled: boolean;
|
|
134
134
|
isActive: boolean;
|
|
135
135
|
};
|
|
136
136
|
bonus: {
|
|
@@ -142,6 +142,8 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
142
142
|
isConfirmModalShown: boolean;
|
|
143
143
|
tmpLevel: number;
|
|
144
144
|
tmpAmountIndex: number;
|
|
145
|
+
isTooltipOpened: boolean;
|
|
146
|
+
isInfoTooltipOpened: boolean;
|
|
145
147
|
activeSlideWidth: number;
|
|
146
148
|
activeSlideOffsetX: number;
|
|
147
149
|
isSliderInTransition: boolean;
|
|
@@ -341,6 +343,9 @@ export declare const getAutoPlayIsSupported: ((state: {
|
|
|
341
343
|
hasDefferedModal?: boolean;
|
|
342
344
|
defferedCampaign?: import("../../../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
343
345
|
};
|
|
346
|
+
activeRounds: {
|
|
347
|
+
items: string[];
|
|
348
|
+
};
|
|
344
349
|
} & import("redux-persist/es/persistReducer").PersistPartial) => boolean) & {
|
|
345
350
|
clearCache: () => void;
|
|
346
351
|
resultsCount: () => number;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { bonusReducer, getBonusCashPrice, getBonusIsBuyFeatureSupported, getBonusIsConfirmDisabled, setBonusActiveSlideOffsetX, setBonusActiveSlideWidth, setBonusConfig, setBonusConfirmModalShown, setBonusCurrentBonusModeNames, setBonusLastSlideOutOfView, setBonusOutsideViewportCardSelected, setBonusPreselectedModeName, setBonusSelectedBonusModeName, setBonusSliderInSwiping, setBonusSliderInTransition, setBonusTmpAmountIndex, setBonusTmpLevel, } from './model/bonusSlice';
|
|
1
|
+
export { bonusReducer, getBonusCashPrice, getBonusIsBuyFeatureSupported, getBonusIsConfirmDisabled, setBonusActiveSlideOffsetX, setBonusActiveSlideWidth, setBonusConfig, setBonusConfirmModalShown, setBonusCurrentBonusModeNames, setBonusInfoTooltipOpened, setBonusLastSlideOutOfView, setBonusOutsideViewportCardSelected, setBonusPreselectedModeName, setBonusSelectedBonusModeName, setBonusSliderInSwiping, setBonusSliderInTransition, setBonusTmpAmountIndex, setBonusTmpLevel, setBonusTooltipOpened, } from './model/bonusSlice';
|
|
2
2
|
export { BonusConfirmButtonBase } from './ui/BonusConfirmButtonBase/BonusConfirmButtonBase';
|
|
3
3
|
export { BonusConfirmButtonPro } from './ui/BonusConfirmButtonPro/BonusConfirmButtonPro';
|
|
4
4
|
export { BonusDescription } from './ui/BonusDescription/BonusDescription';
|
|
@@ -9,6 +9,8 @@ type TBonusState = {
|
|
|
9
9
|
isConfirmModalShown: boolean;
|
|
10
10
|
tmpLevel: number;
|
|
11
11
|
tmpAmountIndex: number;
|
|
12
|
+
isTooltipOpened: boolean;
|
|
13
|
+
isInfoTooltipOpened: boolean;
|
|
12
14
|
activeSlideWidth: number;
|
|
13
15
|
activeSlideOffsetX: number;
|
|
14
16
|
isSliderInTransition: boolean;
|
|
@@ -74,13 +76,12 @@ export declare const getBonusIsConfirmDisabled: ((state: {
|
|
|
74
76
|
isDemo: boolean;
|
|
75
77
|
partner: string;
|
|
76
78
|
balance: number;
|
|
77
|
-
balancePrevious: number;
|
|
78
79
|
netValue: number;
|
|
79
|
-
netValuePrevious: number;
|
|
80
80
|
shouldResetNetValue: boolean;
|
|
81
81
|
currency: string;
|
|
82
82
|
currencyDecimals: number;
|
|
83
83
|
urls: import("../../../shared/api/config/types").TSessionUrls;
|
|
84
|
+
customPay: boolean;
|
|
84
85
|
};
|
|
85
86
|
modals: {
|
|
86
87
|
hasOpened: boolean;
|
|
@@ -150,6 +151,7 @@ export declare const getBonusIsConfirmDisabled: ((state: {
|
|
|
150
151
|
fake: import("../../../shared/api/round/open").TApiRoundOpenFake;
|
|
151
152
|
};
|
|
152
153
|
fastPlay: {
|
|
154
|
+
isEnabled: boolean;
|
|
153
155
|
isActive: boolean;
|
|
154
156
|
};
|
|
155
157
|
bonus: TBonusState;
|
|
@@ -345,6 +347,9 @@ export declare const getBonusIsConfirmDisabled: ((state: {
|
|
|
345
347
|
hasDefferedModal?: boolean;
|
|
346
348
|
defferedCampaign?: import("../../../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
347
349
|
};
|
|
350
|
+
activeRounds: {
|
|
351
|
+
items: string[];
|
|
352
|
+
};
|
|
348
353
|
} & import("redux-persist/es/persistReducer").PersistPartial) => boolean) & {
|
|
349
354
|
clearCache: () => void;
|
|
350
355
|
resultsCount: () => number;
|
|
@@ -424,13 +429,12 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
424
429
|
isDemo: boolean;
|
|
425
430
|
partner: string;
|
|
426
431
|
balance: number;
|
|
427
|
-
balancePrevious: number;
|
|
428
432
|
netValue: number;
|
|
429
|
-
netValuePrevious: number;
|
|
430
433
|
shouldResetNetValue: boolean;
|
|
431
434
|
currency: string;
|
|
432
435
|
currencyDecimals: number;
|
|
433
436
|
urls: import("../../../shared/api/config/types").TSessionUrls;
|
|
437
|
+
customPay: boolean;
|
|
434
438
|
};
|
|
435
439
|
modals: {
|
|
436
440
|
hasOpened: boolean;
|
|
@@ -500,6 +504,7 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
500
504
|
fake: import("../../../shared/api/round/open").TApiRoundOpenFake;
|
|
501
505
|
};
|
|
502
506
|
fastPlay: {
|
|
507
|
+
isEnabled: boolean;
|
|
503
508
|
isActive: boolean;
|
|
504
509
|
};
|
|
505
510
|
bonus: TBonusState;
|
|
@@ -695,6 +700,9 @@ export declare const getBonusCashPrice: ((state: {
|
|
|
695
700
|
hasDefferedModal?: boolean;
|
|
696
701
|
defferedCampaign?: import("../../../shared/sockets").TPrizeDropSocketEventPayloadCampaignUpdated;
|
|
697
702
|
};
|
|
703
|
+
activeRounds: {
|
|
704
|
+
items: string[];
|
|
705
|
+
};
|
|
698
706
|
} & import("redux-persist/es/persistReducer").PersistPartial) => number) & {
|
|
699
707
|
clearCache: () => void;
|
|
700
708
|
resultsCount: () => number;
|
|
@@ -757,6 +765,6 @@ export declare const getBonusIsBuyFeatureSupported: ((state: {
|
|
|
757
765
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
758
766
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
759
767
|
};
|
|
760
|
-
export declare const setBonusActiveSlideWidth: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideWidth">, setBonusActiveSlideOffsetX: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideOffsetX">, setBonusSliderInTransition: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInTransition">, setBonusSliderInSwiping: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInSwiping">, setBonusOutsideViewportCardSelected: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusOutsideViewportCardSelected">, setBonusLastSlideOutOfView: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusLastSlideOutOfView">, setBonusCurrentBonusModeNames: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string[], "bonus/setBonusCurrentBonusModeNames">, setBonusSelectedBonusModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusSelectedBonusModeName">, setBonusConfig: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TBonusConfig, "bonus/setBonusConfig">, setBonusTmpAmountIndex: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpAmountIndex">, setBonusTmpLevel: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpLevel">, setBonusPreselectedModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusPreselectedModeName">, setBonusConfirmModalShown: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusConfirmModalShown">;
|
|
768
|
+
export declare const setBonusActiveSlideWidth: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideWidth">, setBonusActiveSlideOffsetX: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusActiveSlideOffsetX">, setBonusSliderInTransition: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInTransition">, setBonusSliderInSwiping: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusSliderInSwiping">, setBonusOutsideViewportCardSelected: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusOutsideViewportCardSelected">, setBonusLastSlideOutOfView: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusLastSlideOutOfView">, setBonusCurrentBonusModeNames: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string[], "bonus/setBonusCurrentBonusModeNames">, setBonusSelectedBonusModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusSelectedBonusModeName">, setBonusConfig: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TBonusConfig, "bonus/setBonusConfig">, setBonusTmpAmountIndex: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpAmountIndex">, setBonusTmpLevel: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "bonus/setBonusTmpLevel">, setBonusPreselectedModeName: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string, "bonus/setBonusPreselectedModeName">, setBonusConfirmModalShown: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusConfirmModalShown">, setBonusTooltipOpened: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusTooltipOpened">, setBonusInfoTooltipOpened: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "bonus/setBonusInfoTooltipOpened">;
|
|
761
769
|
export declare const bonusReducer: import("redux").Reducer<TBonusState>;
|
|
762
770
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { fastPlayReducer, setFastPlayActive } from './model/fastPlaySlice';
|
|
1
|
+
export { fastPlayReducer, setFastPlayActive, setFastPlayEnabled } from './model/fastPlaySlice';
|
|
2
2
|
export { FastPlaySwitcher } from './ui/FastPlaySwitcher/FastPlaySwitcher';
|
|
3
3
|
export { FastPlayTooltip } from './ui/FastPlayTooltip/FastPlayTooltip';
|
|
4
4
|
export { PanelFastPlay } from './ui/PanelFastPlay/PanelFastPlay';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
type TFastPlayState = {
|
|
2
|
+
isEnabled: boolean;
|
|
2
3
|
isActive: boolean;
|
|
3
4
|
};
|
|
4
|
-
export declare const setFastPlayActive: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "fastPlay/setFastPlayActive">;
|
|
5
|
+
export declare const setFastPlayActive: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "fastPlay/setFastPlayActive">, setFastPlayEnabled: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "fastPlay/setFastPlayEnabled">;
|
|
5
6
|
export declare const fastPlayReducer: import("redux").Reducer<TFastPlayState>;
|
|
6
7
|
export {};
|
|
@@ -6,6 +6,7 @@ type TModalBaseHeaderProps = {
|
|
|
6
6
|
onReturn?: (event: React.MouseEvent) => void;
|
|
7
7
|
onClose?: () => void;
|
|
8
8
|
modalName: TModalName;
|
|
9
|
+
className?: string;
|
|
9
10
|
};
|
|
10
|
-
export declare const ModalBaseHeader: ({ children, onReturn, onClose, returnType, modalName, }: TModalBaseHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const ModalBaseHeader: ({ children, onReturn, onClose, returnType, modalName, className, }: TModalBaseHeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
12
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { TWin } from './model/roundSlice';
|
|
2
|
-
export { addRoundResponseGS, clearRoundWin,
|
|
2
|
+
export { addRoundResponseGS, clearRoundWin, initRoundData, resetRoundCurrent, roundReducer, setRoundChoice, setRoundHasMaxWin, setRoundIsRestore, setRoundMeta, setRoundNextResponseGS, setRoundWasRestore, setRoundWin, } from './model/roundSlice';
|
|
@@ -23,11 +23,11 @@ type TRoundState = {
|
|
|
23
23
|
winCash: number;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const initRoundData: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
27
27
|
roundId: string;
|
|
28
28
|
responsesGS: TResponseGS[];
|
|
29
29
|
balance: number;
|
|
30
30
|
meta?: unknown;
|
|
31
|
-
}, "round/
|
|
31
|
+
}, "round/initRoundData">, setRoundNextResponseGS: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"round/setRoundNextResponseGS">, clearRoundWin: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"round/clearRoundWin">, setRoundChoice: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "round/setRoundChoice">, setRoundIsRestore: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "round/setRoundIsRestore">, setRoundWasRestore: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "round/setRoundWasRestore">, setRoundWin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TWin, "round/setRoundWin">, setRoundHasMaxWin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "round/setRoundHasMaxWin">, addRoundResponseGS: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TResponseGS, "round/addRoundResponseGS">, resetRoundCurrent: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"round/resetRoundCurrent">, setRoundMeta: import("@reduxjs/toolkit").ActionCreatorWithNonInferrablePayload<"round/setRoundMeta">;
|
|
32
32
|
export declare const roundReducer: import("redux").Reducer<TRoundState>;
|
|
33
33
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { addSessionBalance, decreaseSessionBalance, initSession, isFakePartner, sessionReducer, setSessionBalance, setSessionCustomPayConfig, setSessionShouldResetNetValue, updateSessionNetValue, } from './model/sessionSlice';
|
|
@@ -3,13 +3,12 @@ type TSessionState = {
|
|
|
3
3
|
isDemo: boolean;
|
|
4
4
|
partner: string;
|
|
5
5
|
balance: number;
|
|
6
|
-
balancePrevious: number;
|
|
7
6
|
netValue: number;
|
|
8
|
-
netValuePrevious: number;
|
|
9
7
|
shouldResetNetValue: boolean;
|
|
10
8
|
currency: string;
|
|
11
9
|
currencyDecimals: number;
|
|
12
10
|
urls: TSessionUrls;
|
|
11
|
+
customPay: boolean;
|
|
13
12
|
};
|
|
14
13
|
export declare const initSession: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<{
|
|
15
14
|
isDemo: boolean;
|
|
@@ -18,7 +17,7 @@ export declare const initSession: import("@reduxjs/toolkit").ActionCreatorWithOp
|
|
|
18
17
|
currency: string;
|
|
19
18
|
currencyDecimals: number;
|
|
20
19
|
urls: TSessionUrls;
|
|
21
|
-
}, "session/initSession">,
|
|
20
|
+
}, "session/initSession">, setSessionBalance: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/setSessionBalance">, decreaseSessionBalance: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/decreaseSessionBalance">, updateSessionNetValue: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/updateSessionNetValue">, addNetValue: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/addNetValue">, setSessionShouldResetNetValue: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"session/setSessionShouldResetNetValue">, addSessionBalance: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "session/addSessionBalance">, setSessionCustomPayConfig: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<boolean, "session/setSessionCustomPayConfig">;
|
|
22
21
|
export declare const isFakePartner: import("reselect").Selector<{
|
|
23
22
|
session: TSessionState;
|
|
24
23
|
}, boolean, []> & {
|
|
@@ -2,5 +2,7 @@ export { cancelBonusFeatureSelection } from './model/cancelBonusFeatureSelection
|
|
|
2
2
|
export { confirmBonusFeature } from './model/confirmBonusFeature';
|
|
3
3
|
export { BonusConfirmButton } from './ui/BonusConfirmButton/BonusConfirmButton';
|
|
4
4
|
export { BonusFeatureSelector } from './ui/BonusFeatureSelector/BonusFeatureSelector';
|
|
5
|
+
export { BonusInfoTooltip } from './ui/BonusInfoTooltip/BonusInfoTooltip';
|
|
6
|
+
export { BonusShortcutIcons } from './ui/BonusShortcutIcons/BonusShortcutIcons';
|
|
5
7
|
export { LevelSelector } from './ui/LevelSelector/LevelSelector';
|
|
6
8
|
export { StakeAmountSelector } from './ui/StakeAmountSelector/StakeAmountSelector';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { RefObject } from 'react';
|
|
2
|
+
type TBonusFeatureSelectorProps = {
|
|
3
|
+
ref?: RefObject<HTMLDivElement>;
|
|
4
|
+
};
|
|
5
|
+
export declare const BonusFeatureSelector: ({ ref }: TBonusFeatureSelectorProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type TBonusFeatureSelectorItemProps = {
|
|
2
|
+
title: string;
|
|
3
|
+
cash: string;
|
|
4
|
+
icon: React.ElementType;
|
|
5
|
+
isActive: boolean;
|
|
6
|
+
onClick: () => void;
|
|
7
|
+
};
|
|
8
|
+
export declare const BonusFeatureSelectorItem: ({ title, cash, icon: Icon, isActive, onClick, }: TBonusFeatureSelectorItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BonusShortcutIcons: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { RefObject } from 'react';
|
|
1
2
|
type TPanelBonusProps = {
|
|
2
3
|
onClick: () => void;
|
|
3
4
|
className?: string;
|
|
4
5
|
disabled?: boolean;
|
|
6
|
+
ref?: RefObject<HTMLButtonElement>;
|
|
5
7
|
};
|
|
6
|
-
export declare const PanelBonus: ({ onClick, className, disabled }: TPanelBonusProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const PanelBonus: ({ onClick, className, disabled, ref: playButtonRef, }: TPanelBonusProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export {};
|
|
@@ -7,5 +7,6 @@ export { roundStart } from './lib/flow/roundStart';
|
|
|
7
7
|
export { spinEnd } from './lib/flow/spinEnd';
|
|
8
8
|
export { stepEnd } from './lib/flow/stepEnd';
|
|
9
9
|
export { stepStart } from './lib/flow/stepStart';
|
|
10
|
+
export { initRound } from './model/initRound';
|
|
10
11
|
export { startPlay } from './model/startPlay';
|
|
11
12
|
export { PanelPlay } from './ui/PanelPlay/PanelPlay';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TResponseGS } from "../../../shared/api/round/open/types";
|
|
2
|
+
import { TAppThunkAction } from "../../../shared/lib/store";
|
|
3
|
+
type TInitRoundData = {
|
|
4
|
+
roundId: string;
|
|
5
|
+
responsesGS: TResponseGS;
|
|
6
|
+
balance: number;
|
|
7
|
+
meta: unknown;
|
|
8
|
+
};
|
|
9
|
+
export declare const initRound: TAppThunkAction<TInitRoundData>;
|
|
10
|
+
export {};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { ButtonHTMLAttributes, RefObject } from 'react';
|
|
2
2
|
type TPanelButtonProps = {
|
|
3
3
|
active?: boolean;
|
|
4
|
+
disabled?: boolean;
|
|
4
5
|
ref?: RefObject<HTMLButtonElement>;
|
|
5
6
|
} & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
6
|
-
export declare const PanelPlay: ({ className, active, ref, ...props }: TPanelButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare const PanelPlay: ({ className, active, ref, disabled, ...props }: TPanelButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RiskSelector: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RiskSelectorSelect: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RowsSelectorGrid: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const RowsSelectorSelect: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -133,6 +133,8 @@ declare class ConfigManager {
|
|
|
133
133
|
getApiPrizeDropSocketCredentialsFake(): TApiPrizeDropSocketCredentialsFakeGUI;
|
|
134
134
|
getSocketPrizeDropFake(): TSocketPrizeDropFake;
|
|
135
135
|
getSocketPrizeDropEventsFake(): TSocketPrizeDropEventsFake;
|
|
136
|
+
getCustomPay(): boolean;
|
|
137
|
+
getFastPlay(): boolean;
|
|
136
138
|
getInit(): TInitConfig;
|
|
137
139
|
getConfiguration(): TConfiguration;
|
|
138
140
|
getBonus(): TBonusConfig;
|
|
@@ -170,6 +172,8 @@ declare class ConfigManager {
|
|
|
170
172
|
saveWelcome(config?: TWelcomeConfig): void;
|
|
171
173
|
saveWelcomeBackground(config: string): void;
|
|
172
174
|
savePanel(config?: TPanelConfig): void;
|
|
175
|
+
saveCustomPay(customPay?: boolean): void;
|
|
176
|
+
saveFastPlay(fastPlay?: boolean): void;
|
|
173
177
|
saveMenu(config?: TMenuConfig): void;
|
|
174
178
|
saveBonus(config?: TBonusConfig): void;
|
|
175
179
|
saveSkip(config?: TSkipConfig): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { EStakeType, TApiConfigError, TApiConfigFake, TApiConfigPayload, TApiConfigResponse, TBets, TComplianceSettings, TGameSettings, TSessionMode, TSessionSettings, TStakeAmountsMap, TStakeAmountsMapByLevels, TStakeMode, } from './types';
|
|
1
|
+
export { EStakeName, EStakeType, TApiConfigError, TApiConfigFake, TApiConfigPayload, TApiConfigResponse, TBets, TComplianceSettings, TGameSettings, TSessionMode, TSessionSettings, TStakeAmountsMap, TStakeAmountsMapByLevels, TStakeMode, } from './types';
|