jp.ui.app.toolkit 1.0.19 → 1.0.20

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.
@@ -133,4 +133,15 @@ export declare function getBaseSlices(): (import("@reduxjs/toolkit").Slice<impor
133
133
  }, "wsConnectorSlice", "wsConnectorSlice", {
134
134
  getIsConnected: (sliceState: import("./ws-connector-slice").WsConnectorState) => boolean;
135
135
  }>)[];
136
- export declare function getBaseSlicesReducer(): any;
136
+ export declare function getBaseSlicesReducer(): {
137
+ appSlice: import("redux").Reducer<import("./app-slice").AppSlice>;
138
+ menuScreenSlice: import("redux").Reducer<import("./menu-screen-slice").MenuScreenState>;
139
+ shopScreenSlice: import("redux").Reducer<import("./shop-screen-slice").ShopScreenState>;
140
+ tablesScreenSlice: import("redux").Reducer<import("./tables-screen-slice").TablesScreenState>;
141
+ raiseBottomSheetBlockSlice: import("redux").Reducer<import("./raise-bottom-sheet-block-slice").RaiseBottomSheetBlockState>;
142
+ reactionBottomSheetBlockSlice: import("redux").Reducer<import("./reaction-bottom-sheet-block-slice").ReactionBottomSheetBlockState>;
143
+ wsConnectorSlice: import("redux").Reducer<import("./ws-connector-slice").WsConnectorState>;
144
+ gameTableScreenSlice: import("redux").Reducer<import("./game-table-screen-slice/reducer").IBaseTableScreenState> & {
145
+ getInitialState: () => import("./game-table-screen-slice/reducer").IBaseTableScreenState;
146
+ };
147
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jp.ui.app.toolkit",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
@@ -1,2 +0,0 @@
1
- import * as React from 'react';
2
- export declare const AppRouter: () => React.JSX.Element;
@@ -1,2 +0,0 @@
1
- declare const App: () => import("react").JSX.Element;
2
- export default App;
@@ -1,3 +0,0 @@
1
- import { AxiosResponse } from 'axios';
2
- import type { TableGameStateType } from './table-game-state.type';
3
- export declare function enterTheTableRequest(roomId: string, tableId: string): Promise<AxiosResponse<TableGameStateType>>;
@@ -1,3 +0,0 @@
1
- import { AxiosResponse } from 'axios';
2
- import type { TableGameStateType } from './table-game-state.type';
3
- export declare function moveOnTheTableRequest(roomId: string, tableId: string): Promise<AxiosResponse<TableGameStateType>>;
@@ -1,8 +0,0 @@
1
- export type TableGameStateType = {
2
- roomId: string;
3
- tableId: string;
4
- gameId: string;
5
- pot: number;
6
- players: Array<string>;
7
- actions: Array<string>;
8
- };
@@ -1,3 +0,0 @@
1
- import { AxiosResponse } from 'axios';
2
- import type { TableGameStateType } from './table-game-state.type';
3
- export declare function watchTheTableRequest(roomId: string, tableId: string): Promise<AxiosResponse<TableGameStateType>>;
@@ -1,9 +0,0 @@
1
- export declare enum ChannelTypes {
2
- VK = "VK",
3
- YA = "YA",
4
- OK = "OK",
5
- WEB = "WEB",
6
- AT = "AT",
7
- VKIOS = "VKIOS",
8
- TG = "TG"
9
- }
@@ -1,6 +0,0 @@
1
- export declare enum GameTypes {
2
- JUST_POKER = "JUST_POKER",
3
- JUST_FOOL = "JUST_FOOL",
4
- JUST_BLACK_JACK = "JUST_BLACK_JACK",
5
- JUST_SPADES = "JUST_SPADES"
6
- }
@@ -1,5 +0,0 @@
1
- import { JSX } from 'react';
2
- export type RouteType = {
3
- route: string;
4
- screen: JSX.Element;
5
- };
@@ -1,4 +0,0 @@
1
- import type { AppScreenTypes } from 'jp.common.view';
2
- export type ScreenResponse = {
3
- screen?: AppScreenTypes;
4
- };
@@ -1,7 +0,0 @@
1
- export declare class GlobalStorage {
2
- private static instance;
3
- private data;
4
- static getInstance(): GlobalStorage;
5
- getValue(key: string): string;
6
- setValue(key: string, value: string): void;
7
- }