@truelab/truelogic-plinko 0.0.9 → 0.0.10

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.
@@ -272,6 +272,7 @@ export declare const rootReducer: import("redux").Reducer<{
272
272
  freeRounds: {
273
273
  isActive: boolean;
274
274
  displayCount: number;
275
+ displayWin: number;
275
276
  displayTotalWon: number;
276
277
  current: import("../shared/api/round/open").TPromoTool;
277
278
  initial: import("../shared/api/round/open").TPromoTool;
@@ -626,6 +627,7 @@ export declare const rootReducer: import("redux").Reducer<{
626
627
  freeRounds: {
627
628
  isActive: boolean;
628
629
  displayCount: number;
630
+ displayWin: number;
629
631
  displayTotalWon: number;
630
632
  current: import("../shared/api/round/open").TPromoTool;
631
633
  initial: import("../shared/api/round/open").TPromoTool;
@@ -981,6 +983,7 @@ export declare const persistedReducer: import("redux").Reducer<{
981
983
  freeRounds: {
982
984
  isActive: boolean;
983
985
  displayCount: number;
986
+ displayWin: number;
984
987
  displayTotalWon: number;
985
988
  current: import("../shared/api/round/open").TPromoTool;
986
989
  initial: import("../shared/api/round/open").TPromoTool;
@@ -1336,6 +1339,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
1336
1339
  freeRounds: {
1337
1340
  isActive: boolean;
1338
1341
  displayCount: number;
1342
+ displayWin: number;
1339
1343
  displayTotalWon: number;
1340
1344
  current: import("../shared/api/round/open").TPromoTool;
1341
1345
  initial: import("../shared/api/round/open").TPromoTool;
@@ -1691,6 +1695,7 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
1691
1695
  freeRounds: {
1692
1696
  isActive: boolean;
1693
1697
  displayCount: number;
1698
+ displayWin: number;
1694
1699
  displayTotalWon: number;
1695
1700
  current: import("../shared/api/round/open").TPromoTool;
1696
1701
  initial: import("../shared/api/round/open").TPromoTool;
@@ -271,6 +271,7 @@ export declare const getAutoPlayIsSupported: ((state: {
271
271
  freeRounds: {
272
272
  isActive: boolean;
273
273
  displayCount: number;
274
+ displayWin: number;
274
275
  displayTotalWon: number;
275
276
  current: import("../../../shared/api/round/open").TPromoTool;
276
277
  initial: import("../../../shared/api/round/open").TPromoTool;
@@ -275,6 +275,7 @@ export declare const getBonusIsConfirmDisabled: ((state: {
275
275
  freeRounds: {
276
276
  isActive: boolean;
277
277
  displayCount: number;
278
+ displayWin: number;
278
279
  displayTotalWon: number;
279
280
  current: import("../../../shared/api/round/open").TPromoTool;
280
281
  initial: import("../../../shared/api/round/open").TPromoTool;
@@ -633,6 +634,7 @@ export declare const getBonusCashPrice: ((state: {
633
634
  freeRounds: {
634
635
  isActive: boolean;
635
636
  displayCount: number;
637
+ displayWin: number;
636
638
  displayTotalWon: number;
637
639
  current: import("../../../shared/api/round/open").TPromoTool;
638
640
  initial: import("../../../shared/api/round/open").TPromoTool;
@@ -1,3 +1,3 @@
1
- export { clearFreeRounds, endFreeRounds, finishFreeRound, freeRoundsReducer, getFreeRoundsIsFinished, restoreFreeRounds, restoreFreeRoundsError, setFreeRounds, setFreeRoundsInitial, setFreeRoundsModalVersion, startFreeRound, startFreeRounds, } from './model/freeRoundsSlice';
1
+ export { clearFreeRounds, endFreeRounds, finishFreeRound, freeRoundsReducer, getFreeRoundsIsFinished, restoreFreeRounds, restoreFreeRoundsError, setFreeRounds, setFreeRoundsDisplayWin, setFreeRoundsInitial, setFreeRoundsModalVersion, startFreeRound, startFreeRounds, } from './model/freeRoundsSlice';
2
2
  export { TFreeRoundsConfig } from './model/types';
3
3
  export { FreeRoundLabel } from './ui/FreeRoundLabel/FreeRoundLabel';
@@ -3,12 +3,13 @@ import { EVersion } from "../../../shared/lib/types/theme";
3
3
  type TRoundState = {
4
4
  isActive: boolean;
5
5
  displayCount: number;
6
+ displayWin: number;
6
7
  displayTotalWon: number;
7
8
  current: TPromoTool;
8
9
  initial: TPromoTool;
9
10
  version: `${EVersion}`;
10
11
  };
11
- export declare const startFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRounds">, setFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRounds">, startFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRound">, finishFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/finishFreeRound">, endFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/endFreeRounds">, clearFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/clearFreeRounds">, setFreeRoundsModalVersion: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<"default" | "defaultV3" | "pro", "freeRounds/setFreeRoundsModalVersion">, setFreeRoundsInitial: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRoundsInitial">, restoreFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRounds">, restoreFreeRoundsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRoundsError">;
12
+ export declare const startFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRounds">, setFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRounds">, startFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/startFreeRound">, finishFreeRound: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/finishFreeRound">, endFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/endFreeRounds">, clearFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/clearFreeRounds">, setFreeRoundsModalVersion: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<"default" | "defaultV3" | "pro", "freeRounds/setFreeRoundsModalVersion">, setFreeRoundsInitial: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<TPromoTool, "freeRounds/setFreeRoundsInitial">, restoreFreeRounds: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRounds">, restoreFreeRoundsError: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"freeRounds/restoreFreeRoundsError">, setFreeRoundsDisplayWin: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<number, "freeRounds/setFreeRoundsDisplayWin">;
12
13
  export declare const getFreeRoundsIsFinished: import("reselect").Selector<{
13
14
  freeRounds: TRoundState;
14
15
  }, boolean, []> & {
@@ -272,6 +272,7 @@ export declare const useAppDispatch: import("react-redux").UseDispatch<import("r
272
272
  freeRounds: {
273
273
  isActive: boolean;
274
274
  displayCount: number;
275
+ displayWin: number;
275
276
  displayTotalWon: number;
276
277
  current: import("../../api/round/open").TPromoTool;
277
278
  initial: import("../../api/round/open").TPromoTool;
@@ -627,6 +628,7 @@ export declare const useAppSelector: import("react-redux").UseSelector<{
627
628
  freeRounds: {
628
629
  isActive: boolean;
629
630
  displayCount: number;
631
+ displayWin: number;
630
632
  displayTotalWon: number;
631
633
  current: import("../../api/round/open").TPromoTool;
632
634
  initial: import("../../api/round/open").TPromoTool;
@@ -272,6 +272,7 @@ export declare const getPreloadedState: (storePartial?: DeepPartial<TRootState>)
272
272
  freeRounds: {
273
273
  isActive: boolean;
274
274
  displayCount: number;
275
+ displayWin: number;
275
276
  displayTotalWon: number;
276
277
  current: import("../../../api/round/open").TPromoTool;
277
278
  initial: import("../../../api/round/open").TPromoTool;
@@ -272,6 +272,7 @@ export declare const setupTestStore: (storePartial?: DeepPartial<TRootState>) =>
272
272
  freeRounds: {
273
273
  isActive: boolean;
274
274
  displayCount: number;
275
+ displayWin: number;
275
276
  displayTotalWon: number;
276
277
  current: import("../../../api/round/open").TPromoTool;
277
278
  initial: import("../../../api/round/open").TPromoTool;
@@ -627,6 +628,7 @@ export declare const setupTestStore: (storePartial?: DeepPartial<TRootState>) =>
627
628
  freeRounds: {
628
629
  isActive: boolean;
629
630
  displayCount: number;
631
+ displayWin: number;
630
632
  displayTotalWon: number;
631
633
  current: import("../../../api/round/open").TPromoTool;
632
634
  initial: import("../../../api/round/open").TPromoTool;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truelab/truelogic-plinko",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "",
5
5
  "main": "./dist/truelogic.min.js",
6
6
  "types": "./dist/types/src/truelogic.d.ts",