@vankosoft/game-platform 0.1.1 → 0.1.3
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/CHANGELOG.md +13 -0
- package/README.md +18 -1
- package/VERSION +1 -1
- package/dist/cjs/Model/BoardGame/checkerDto.d.ts +5 -0
- package/dist/cjs/Model/BoardGame/chessMoveDto.d.ts +19 -0
- package/dist/cjs/Model/BoardGame/chessMoveType.d.ts +8 -0
- package/dist/cjs/Model/BoardGame/chessPieceDto.d.ts +8 -0
- package/dist/cjs/Model/BoardGame/chessPieceType.d.ts +9 -0
- package/dist/cjs/Model/BoardGame/chessSquareDto.d.ts +7 -0
- package/dist/cjs/Model/BoardGame/diceDto.d.ts +5 -0
- package/dist/cjs/Model/BoardGame/gameDto.d.ts +21 -0
- package/dist/cjs/Model/BoardGame/moveDto.d.ts +10 -0
- package/dist/cjs/Model/BoardGame/playerColor.d.ts +6 -0
- package/dist/cjs/Model/BoardGame/playerDto.d.ts +9 -0
- package/dist/cjs/Model/BoardGame/pointDto.d.ts +7 -0
- package/dist/cjs/Model/BoardGame/toplist.d.ts +6 -0
- package/dist/cjs/Model/BoardGame/toplistResult.d.ts +7 -0
- package/dist/cjs/Model/CardGame/announceDto.d.ts +9 -0
- package/dist/cjs/Model/CardGame/announceType.d.ts +13 -0
- package/dist/cjs/Model/CardGame/bidDto.d.ts +10 -0
- package/dist/cjs/Model/CardGame/bidType.d.ts +12 -0
- package/dist/cjs/Model/CardGame/bridgeBeloteCardType.d.ts +11 -0
- package/dist/cjs/Model/CardGame/bridgeBeloteScoreDto.d.ts +8 -0
- package/dist/cjs/Model/CardGame/cardDto.d.ts +12 -0
- package/dist/cjs/Model/CardGame/cardGameTeam.d.ts +6 -0
- package/dist/cjs/Model/CardGame/cardSuit.d.ts +7 -0
- package/dist/cjs/Model/CardGame/contractBridgeCardType.d.ts +16 -0
- package/dist/cjs/Model/CardGame/gameDto.d.ts +21 -0
- package/dist/cjs/Model/CardGame/playerDto.d.ts +6 -0
- package/dist/cjs/Model/CardGame/playerPosition.d.ts +8 -0
- package/{lib/Model/CardGameAnnounceSymbolModel.js → dist/cjs/Model/CardGameAnnounceSymbolModel.d.ts} +2 -4
- package/dist/cjs/Model/Core/connectionDto.d.ts +5 -0
- package/dist/cjs/Model/Core/errorReportDto.d.ts +5 -0
- package/dist/cjs/Model/Core/gameCookieDto.d.ts +10 -0
- package/{lib/Model/Core/gameCookieDto.js → dist/cjs/Model/Core/gameCookieDto.ts} +1 -1
- package/dist/cjs/Model/Core/gameDto.d.ts +7 -0
- package/dist/cjs/Model/Core/gameState.d.ts +13 -0
- package/dist/cjs/Model/Core/newScoreDto.d.ts +5 -0
- package/dist/cjs/Model/Core/playerDto.d.ts +6 -0
- package/dist/cjs/Model/Core/userDto.d.ts +22 -0
- package/{lib/Model/GameInterface.js → dist/cjs/Model/GameInterface.d.ts} +2 -4
- package/dist/cjs/Model/GamePlayInterface.d.ts +7 -0
- package/dist/cjs/Model/GamePlayerModel.d.ts +8 -0
- package/dist/cjs/Model/GameRoomInterface.d.ts +12 -0
- package/dist/cjs/Model/GameRoomModel.d.ts +7 -0
- package/{lib/Model/PlayerInterface.js → dist/cjs/Model/PlayerInterface.d.ts} +3 -5
- package/dist/cjs/board-game.d.ts +9 -0
- package/dist/cjs/card-game.d.ts +11 -0
- package/dist/cjs/core.d.ts +8 -0
- package/dist/cjs/index.d.ts +5 -0
- package/dist/cjs/index.js +2 -0
- package/package.json +27 -5
- package/rollup.config.mjs +23 -0
- package/board-game.js +0 -9
- package/card-game.js +0 -11
- package/core.js +0 -8
- package/index.js +0 -4
- package/lib/Model/GamePlayInterface.js +0 -9
- package/lib/Model/GameRoomInterface.js +0 -14
- package/lib/Model/GameRoomModel.js +0 -9
- /package/{lib/Model/BoardGame/checkerDto.js → dist/cjs/Model/BoardGame/checkerDto.ts} +0 -0
- /package/{lib/Model/BoardGame/chessMoveDto.js → dist/cjs/Model/BoardGame/chessMoveDto.ts} +0 -0
- /package/{lib/Model/BoardGame/chessMoveType.js → dist/cjs/Model/BoardGame/chessMoveType.ts} +0 -0
- /package/{lib/Model/BoardGame/chessPieceDto.js → dist/cjs/Model/BoardGame/chessPieceDto.ts} +0 -0
- /package/{lib/Model/BoardGame/chessPieceType.js → dist/cjs/Model/BoardGame/chessPieceType.ts} +0 -0
- /package/{lib/Model/BoardGame/chessSquareDto.js → dist/cjs/Model/BoardGame/chessSquareDto.ts} +0 -0
- /package/{lib/Model/BoardGame/diceDto.js → dist/cjs/Model/BoardGame/diceDto.ts} +0 -0
- /package/{lib/Model/BoardGame/gameDto.js → dist/cjs/Model/BoardGame/gameDto.ts} +0 -0
- /package/{lib/Model/BoardGame/moveDto.js → dist/cjs/Model/BoardGame/moveDto.ts} +0 -0
- /package/{lib/Model/BoardGame/playerColor.js → dist/cjs/Model/BoardGame/playerColor.ts} +0 -0
- /package/{lib/Model/BoardGame/playerDto.js → dist/cjs/Model/BoardGame/playerDto.ts} +0 -0
- /package/{lib/Model/BoardGame/pointDto.js → dist/cjs/Model/BoardGame/pointDto.ts} +0 -0
- /package/{lib/Model/BoardGame/toplist.js → dist/cjs/Model/BoardGame/toplist.ts} +0 -0
- /package/{lib/Model/BoardGame/toplistResult.js → dist/cjs/Model/BoardGame/toplistResult.ts} +0 -0
- /package/{lib/Model/CardGame/announceDto.js → dist/cjs/Model/CardGame/announceDto.ts} +0 -0
- /package/{lib/Model/CardGame/announceType.js → dist/cjs/Model/CardGame/announceType.ts} +0 -0
- /package/{lib/Model/CardGame/bidDto.js → dist/cjs/Model/CardGame/bidDto.ts} +0 -0
- /package/{lib/Model/CardGame/bidType.js → dist/cjs/Model/CardGame/bidType.ts} +0 -0
- /package/{lib/Model/CardGame/bridgeBeloteCardType.js → dist/cjs/Model/CardGame/bridgeBeloteCardType.ts} +0 -0
- /package/{lib/Model/CardGame/bridgeBeloteScoreDto.js → dist/cjs/Model/CardGame/bridgeBeloteScoreDto.ts} +0 -0
- /package/{lib/Model/CardGame/cardDto.js → dist/cjs/Model/CardGame/cardDto.ts} +0 -0
- /package/{lib/Model/CardGame/cardGameTeam.js → dist/cjs/Model/CardGame/cardGameTeam.ts} +0 -0
- /package/{lib/Model/CardGame/cardSuit.js → dist/cjs/Model/CardGame/cardSuit.ts} +0 -0
- /package/{lib/Model/CardGame/contractBridgeCardType.js → dist/cjs/Model/CardGame/contractBridgeCardType.ts} +0 -0
- /package/{lib/Model/CardGame/gameDto.js → dist/cjs/Model/CardGame/gameDto.ts} +0 -0
- /package/{lib/Model/CardGame/playerDto.js → dist/cjs/Model/CardGame/playerDto.ts} +0 -0
- /package/{lib/Model/CardGame/playerPosition.js → dist/cjs/Model/CardGame/playerPosition.ts} +0 -0
- /package/{lib/Model/Core/connectionDto.js → dist/cjs/Model/Core/connectionDto.ts} +0 -0
- /package/{lib/Model/Core/errorReportDto.js → dist/cjs/Model/Core/errorReportDto.ts} +0 -0
- /package/{lib/Model/Core/gameDto.js → dist/cjs/Model/Core/gameDto.ts} +0 -0
- /package/{lib/Model/Core/gameState.js → dist/cjs/Model/Core/gameState.ts} +0 -0
- /package/{lib/Model/Core/newScoreDto.js → dist/cjs/Model/Core/newScoreDto.ts} +0 -0
- /package/{lib/Model/Core/playerDto.js → dist/cjs/Model/Core/playerDto.ts} +0 -0
- /package/{lib/Model/Core/userDto.js → dist/cjs/Model/Core/userDto.ts} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
0.1.3 | Release date: **14.08.2026**
|
|
2
|
+
============================================
|
|
3
|
+
* New Features:
|
|
4
|
+
* Bug-Fixes:
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
0.1.2 | Release date: **14.08.2026**
|
|
9
|
+
============================================
|
|
10
|
+
* New Features:
|
|
11
|
+
- Buit TS Sources.
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
0.1.1 | Release date: **14.08.2026**
|
|
2
15
|
============================================
|
|
3
16
|
* New Features:
|
package/README.md
CHANGED
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.3
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import PlayerColor from './playerColor';
|
|
2
|
+
import ChessMoveType from './chessMoveType';
|
|
3
|
+
import ChessPieceType from './chessPieceType';
|
|
4
|
+
interface ChessMoveDto {
|
|
5
|
+
color: PlayerColor;
|
|
6
|
+
type: ChessMoveType;
|
|
7
|
+
from: string;
|
|
8
|
+
to: string;
|
|
9
|
+
causeCheck: boolean;
|
|
10
|
+
piece: ChessPieceType;
|
|
11
|
+
capturedPiece?: ChessPieceType;
|
|
12
|
+
promoPiece?: ChessPieceType;
|
|
13
|
+
enpassantPiece?: ChessPieceType;
|
|
14
|
+
nextMoves: ChessMoveDto[];
|
|
15
|
+
totalMoves: ChessMoveDto[];
|
|
16
|
+
animate: boolean;
|
|
17
|
+
hint: boolean;
|
|
18
|
+
}
|
|
19
|
+
export default ChessMoveDto;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import GameDto from '../Core/gameDto';
|
|
2
|
+
import BoardGamePlayerDto from './playerDto';
|
|
3
|
+
import PlayerColor from './playerColor';
|
|
4
|
+
import PointDto from './pointDto';
|
|
5
|
+
import MoveDto from './moveDto';
|
|
6
|
+
import ChessSquareDto from './chessSquareDto';
|
|
7
|
+
interface BoardGameDto extends GameDto {
|
|
8
|
+
blackPlayer: BoardGamePlayerDto;
|
|
9
|
+
whitePlayer: BoardGamePlayerDto;
|
|
10
|
+
currentPlayer: PlayerColor;
|
|
11
|
+
winner: PlayerColor;
|
|
12
|
+
points: PointDto[];
|
|
13
|
+
squares: ChessSquareDto[];
|
|
14
|
+
validMoves: MoveDto[];
|
|
15
|
+
thinkTime: number;
|
|
16
|
+
goldMultiplier: number;
|
|
17
|
+
isGoldGame: boolean;
|
|
18
|
+
lastDoubler?: PlayerColor;
|
|
19
|
+
stake: number;
|
|
20
|
+
}
|
|
21
|
+
export default BoardGameDto;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import PlayerPosition from './playerPosition';
|
|
2
|
+
import BidType from './bidType';
|
|
3
|
+
interface BidDto {
|
|
4
|
+
Player: PlayerPosition;
|
|
5
|
+
KontraPlayer?: PlayerPosition;
|
|
6
|
+
ReKontraPlayer?: PlayerPosition;
|
|
7
|
+
Type: BidType;
|
|
8
|
+
NextBids: BidDto[];
|
|
9
|
+
}
|
|
10
|
+
export default BidDto;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import CardSuit from './cardSuit';
|
|
2
|
+
import BridgeBeloteCardType from './bridgeBeloteCardType';
|
|
3
|
+
import ContractBridgeCardType from './contractBridgeCardType';
|
|
4
|
+
import PlayerPosition from './playerPosition';
|
|
5
|
+
interface CardDto {
|
|
6
|
+
Suit: CardSuit;
|
|
7
|
+
Type: BridgeBeloteCardType | ContractBridgeCardType;
|
|
8
|
+
position: PlayerPosition;
|
|
9
|
+
cardIndex: string;
|
|
10
|
+
animate: boolean;
|
|
11
|
+
}
|
|
12
|
+
export default CardDto;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import GameDto from '../Core/gameDto';
|
|
2
|
+
import CardGamePlayerDto from './playerDto';
|
|
3
|
+
import PlayerPosition from './playerPosition';
|
|
4
|
+
import CardGameTeam from './cardGameTeam';
|
|
5
|
+
interface CardGameDto extends GameDto {
|
|
6
|
+
players: CardGamePlayerDto[];
|
|
7
|
+
validBids: any;
|
|
8
|
+
validCards: any;
|
|
9
|
+
contract: any;
|
|
10
|
+
currentPlayer: PlayerPosition;
|
|
11
|
+
winner: CardGameTeam;
|
|
12
|
+
thinkTime: number;
|
|
13
|
+
FirstToPlayInTheRound: PlayerPosition;
|
|
14
|
+
RoundNumber: number;
|
|
15
|
+
TrickNumber: number;
|
|
16
|
+
SouthNorthPoints: number;
|
|
17
|
+
EastWestPoints: number;
|
|
18
|
+
MyCards: any;
|
|
19
|
+
Bids: any;
|
|
20
|
+
}
|
|
21
|
+
export default CardGameDto;
|
package/{lib/Model/CardGameAnnounceSymbolModel.js → dist/cjs/Model/CardGameAnnounceSymbolModel.d.ts}
RENAMED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import BidType from './CardGame/bidType';
|
|
2
2
|
|
|
3
|
-
interface CardGameAnnounceSymbolModel
|
|
3
|
+
export interface CardGameAnnounceSymbolModel
|
|
4
4
|
{
|
|
5
5
|
id: BidType;
|
|
6
6
|
key: string;
|
|
7
7
|
tooltip: string;
|
|
8
8
|
value: string;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export default CardGameAnnounceSymbolModel;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import PlayerColor from '../BoardGame/playerColor';
|
|
2
|
+
import PlayerPosition from '../CardGame/playerPosition';
|
|
3
|
+
interface GameCookieDto {
|
|
4
|
+
id: string;
|
|
5
|
+
game: string;
|
|
6
|
+
color?: PlayerColor;
|
|
7
|
+
position?: PlayerPosition;
|
|
8
|
+
roomSelected: boolean;
|
|
9
|
+
}
|
|
10
|
+
export default GameCookieDto;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
interface UserDto {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
email: string;
|
|
5
|
+
photoUrl: string;
|
|
6
|
+
showPhoto: boolean;
|
|
7
|
+
socialProvider: string;
|
|
8
|
+
socialProviderId: string;
|
|
9
|
+
createdNew: boolean;
|
|
10
|
+
isAdmin: boolean;
|
|
11
|
+
preferredLanguage: string;
|
|
12
|
+
theme: string;
|
|
13
|
+
emailNotification: boolean;
|
|
14
|
+
gold: number;
|
|
15
|
+
lastFreeGold: number;
|
|
16
|
+
elo: number;
|
|
17
|
+
passHash: number;
|
|
18
|
+
localLoginName: string;
|
|
19
|
+
acceptedLanguages: string[];
|
|
20
|
+
muteIntro: boolean;
|
|
21
|
+
}
|
|
22
|
+
export default UserDto;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import IGameRoom from './GameRoomInterface';
|
|
1
|
+
import { IGameRoom } from './GameRoomInterface';
|
|
2
2
|
|
|
3
|
-
interface IPlayer
|
|
3
|
+
export interface IPlayer
|
|
4
4
|
{
|
|
5
5
|
rooms: IGameRoom[];
|
|
6
6
|
|
|
@@ -8,6 +8,4 @@ interface IPlayer
|
|
|
8
8
|
type: string;
|
|
9
9
|
name: string;
|
|
10
10
|
connected: any;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export default IPlayer;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./Model/BoardGame/toplist";
|
|
2
|
+
export * from "./Model/BoardGame/toplistResult";
|
|
3
|
+
export * from "./Model/BoardGame/gameDto";
|
|
4
|
+
export * from "./Model/BoardGame/moveDto";
|
|
5
|
+
export * from "./Model/BoardGame/playerDto";
|
|
6
|
+
export * from "./Model/BoardGame/playerColor";
|
|
7
|
+
export * from "./Model/BoardGame/pointDto";
|
|
8
|
+
export * from "./Model/BoardGame/checkerDto";
|
|
9
|
+
export * from "./Model/BoardGame/diceDto";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./Model/CardGame/gameDto";
|
|
2
|
+
export * from "./Model/CardGame/playerPosition";
|
|
3
|
+
export * from "./Model/CardGame/bidType";
|
|
4
|
+
export * from "./Model/CardGame/cardSuit";
|
|
5
|
+
export * from "./Model/CardGame/bridgeBeloteCardType";
|
|
6
|
+
export * from "./Model/CardGame/contractBridgeCardType";
|
|
7
|
+
export * from "./Model/CardGame/cardGameTeam";
|
|
8
|
+
export * from "./Model/CardGame/playerDto";
|
|
9
|
+
export * from "./Model/CardGame/cardDto";
|
|
10
|
+
export * from "./Model/CardGame/bidDto";
|
|
11
|
+
export * from "./Model/CardGame/bridgeBeloteScoreDto";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./Model/Core/connectionDto";
|
|
2
|
+
export * from "./Model/Core/errorReportDto";
|
|
3
|
+
export * from "./Model/Core/userDto";
|
|
4
|
+
export * from "./Model/Core/gameState";
|
|
5
|
+
export * from "./Model/Core/gameDto";
|
|
6
|
+
export * from "./Model/Core/gameCookieDto";
|
|
7
|
+
export * from "./Model/Core/playerDto";
|
|
8
|
+
export * from "./Model/Core/newScoreDto";
|
package/package.json
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vankosoft/game-platform",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Game Platform",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
-
},
|
|
8
5
|
"repository": {
|
|
9
6
|
"type": "git",
|
|
10
7
|
"url": "git+https://github.com/iatanasov77/game-platform.git"
|
|
@@ -17,5 +14,30 @@
|
|
|
17
14
|
"bugs": {
|
|
18
15
|
"url": "https://github.com/iatanasov77/game-platform/issues"
|
|
19
16
|
},
|
|
20
|
-
"homepage": "https://github.com/iatanasov77/game-platform#readme"
|
|
17
|
+
"homepage": "https://github.com/iatanasov77/game-platform#readme",
|
|
18
|
+
|
|
19
|
+
"main": "dist/cjs/index.js",
|
|
20
|
+
"types": "dist/cjs/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": "./dist/cjs/index.js"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
|
|
26
|
+
"build": "rimraf ./dist && yarn run build:types && rollup -c",
|
|
27
|
+
"prepublishOnly": "yarn run build",
|
|
28
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@rollup/plugin-typescript": "^12.1.1",
|
|
32
|
+
"rollup": "^4.28.0",
|
|
33
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
34
|
+
"tslib": "^2.8.1",
|
|
35
|
+
"typescript": "^5.7.2"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
|
|
39
|
+
},
|
|
40
|
+
"resolutions": {
|
|
41
|
+
"@types/minimatch": "5.1.2"
|
|
42
|
+
}
|
|
21
43
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import typescript from '@rollup/plugin-typescript';
|
|
2
|
+
import copy from 'rollup-plugin-copy'
|
|
3
|
+
|
|
4
|
+
const typescriptOptions = {
|
|
5
|
+
exclude: ["tests/**/*"],
|
|
6
|
+
compilerOptions: { declaration: false },
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
const copyOptions = {
|
|
10
|
+
targets: [
|
|
11
|
+
//{ src: 'src/Model/*', dest: 'dist/esm/Model' },
|
|
12
|
+
{ src: 'src/Model/*', dest: 'dist/cjs/Model' },
|
|
13
|
+
]
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export default [
|
|
17
|
+
{
|
|
18
|
+
external: ["typeorm", "sinon"],
|
|
19
|
+
input: "src/index.ts",
|
|
20
|
+
output: { file: "dist/cjs/index.js", format: "cjs" },
|
|
21
|
+
plugins: [typescript( typescriptOptions ), copy( copyOptions )],
|
|
22
|
+
},
|
|
23
|
+
];
|
package/board-game.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export * from "./lib/Model/BoardGame/toplist";
|
|
2
|
-
export * from "./lib/Model/BoardGame/toplistResult";
|
|
3
|
-
export * from "./lib/Model/BoardGame/gameDto";
|
|
4
|
-
export * from "./lib/Model/BoardGame/moveDto";
|
|
5
|
-
export * from "./lib/Model/BoardGame/playerDto";
|
|
6
|
-
export * from "./lib/Model/BoardGame/playerColor";
|
|
7
|
-
export * from "./lib/Model/BoardGame/pointDto";
|
|
8
|
-
export * from "./lib/Model/BoardGame/checkerDto";
|
|
9
|
-
export * from "./lib/Model/BoardGame/diceDto";
|
package/card-game.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from "./lib/Model/CardGame/gameDto";
|
|
2
|
-
export * from "./lib/Model/CardGame/playerPosition";
|
|
3
|
-
export * from "./lib/Model/CardGame/bidType";
|
|
4
|
-
export * from "./lib/Model/CardGame/cardSuit";
|
|
5
|
-
export * from "./lib/Model/CardGame/bridgeBeloteCardType";
|
|
6
|
-
export * from "./lib/Model/CardGame/contractBridgeCardType";
|
|
7
|
-
export * from "./lib/Model/CardGame/cardGameTeam";
|
|
8
|
-
export * from "./lib/Model/CardGame/playerDto";
|
|
9
|
-
export * from "./lib/Model/CardGame/cardDto";
|
|
10
|
-
export * from "./lib/Model/CardGame/bidDto";
|
|
11
|
-
export * from "./lib/Model/CardGame/bridgeBeloteScoreDto";
|
package/core.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from "./lib/Model/Core/connectionDto";
|
|
2
|
-
export * from "./lib/Model/Core/errorReportDto";
|
|
3
|
-
export * from "./lib/Model/Core/userDto";
|
|
4
|
-
export * from "./lib/Model/Core/gameState";
|
|
5
|
-
export * from "./lib/Model/Core/gameDto";
|
|
6
|
-
export * from "./lib/Model/Core/gameCookieDto";
|
|
7
|
-
export * from "./lib/Model/Core/playerDto";
|
|
8
|
-
export * from "./lib/Model/Core/newScoreDto";
|
package/index.js
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{lib/Model/BoardGame/chessPieceType.js → dist/cjs/Model/BoardGame/chessPieceType.ts}
RENAMED
|
File without changes
|
/package/{lib/Model/BoardGame/chessSquareDto.js → dist/cjs/Model/BoardGame/chessSquareDto.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|