@vankosoft/game-platform 0.1.2 → 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 CHANGED
@@ -1,3 +1,10 @@
1
+ 0.1.3 | Release date: **14.08.2026**
2
+ ============================================
3
+ * New Features:
4
+ * Bug-Fixes:
5
+
6
+
7
+
1
8
  0.1.2 | Release date: **14.08.2026**
2
9
  ============================================
3
10
  * New Features:
package/README.md CHANGED
@@ -1 +1,18 @@
1
- # game-platform
1
+ # game-platform
2
+
3
+ ## I. Build
4
+
5
+ ```
6
+ npm adduser<<!
7
+ $NPM_USER
8
+ $NPM_PASS
9
+ $NPM_EMAIL
10
+ !
11
+ ```
12
+
13
+ 3. Publish Package
14
+
15
+ ```
16
+ npm-auth
17
+ npm publish --access=public
18
+ ```
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -1,8 +1,9 @@
1
1
  import BidType from './CardGame/bidType';
2
- interface CardGameAnnounceSymbolModel {
2
+
3
+ export interface CardGameAnnounceSymbolModel
4
+ {
3
5
  id: BidType;
4
6
  key: string;
5
7
  tooltip: string;
6
8
  value: string;
7
- }
8
- export default CardGameAnnounceSymbolModel;
9
+ }
@@ -1,9 +1,10 @@
1
- interface IGame {
1
+ export interface IGame
2
+ {
2
3
  id: number;
3
4
  slug: string;
4
5
  title: string;
5
6
  url: string;
7
+
6
8
  room?: any;
7
9
  deck?: any;
8
- }
9
- export default IGame;
10
+ }
@@ -1,6 +1,7 @@
1
- import IGameRoom from './GameRoomInterface';
2
- interface IGamePlay {
1
+ import { IGameRoom } from './GameRoomInterface';
2
+
3
+ export interface IGamePlay
4
+ {
3
5
  id: any;
4
6
  room: null | IGameRoom;
5
- }
6
- export default IGamePlay;
7
+ }
@@ -1,7 +1,8 @@
1
- interface IGamePlayer {
1
+ export interface IGamePlayer
2
+ {
2
3
  id: string;
3
- containerId: string;
4
- name: string;
5
- type: string;
6
- }
7
- export default IGamePlayer;
4
+
5
+ containerId: string;
6
+ name: string;
7
+ type: string;
8
+ }
@@ -1,11 +1,12 @@
1
- import IGame from './GameInterface';
2
- import IPlayer from './PlayerInterface';
3
- interface IGameRoom {
1
+ import { IGame } from './GameInterface'
2
+ import { IPlayer } from './PlayerInterface'
3
+
4
+ export interface IGameRoom
5
+ {
4
6
  id: number;
5
7
  isPlaying: boolean;
6
8
  game: IGame;
7
9
  slug: string;
8
10
  name: string;
9
11
  players: IPlayer[];
10
- }
11
- export default IGameRoom;
12
+ }
@@ -1,6 +1,7 @@
1
- import IGamePlayer from './GamePlayerModel';
2
- interface IGameRoom {
1
+ import { IGamePlayer } from './GamePlayerModel';
2
+
3
+ export interface IGameRoom
4
+ {
3
5
  id: string;
4
6
  players: Array<IGamePlayer>;
5
- }
6
- export default IGameRoom;
7
+ }
@@ -1,9 +1,11 @@
1
- import IGameRoom from './GameRoomInterface';
2
- interface IPlayer {
1
+ import { IGameRoom } from './GameRoomInterface';
2
+
3
+ export interface IPlayer
4
+ {
3
5
  rooms: IGameRoom[];
6
+
4
7
  id: number;
5
8
  type: string;
6
9
  name: string;
7
10
  connected: any;
8
- }
9
- export default IPlayer;
11
+ }
@@ -1,4 +1,5 @@
1
- export * from "./Model/GameInterface";
2
- export * from "./Model/GamePlayInterface";
3
- export * from "./Model/PlayerInterface";
4
- export * from "./Model/GameRoomInterface";
1
+ import { IGame } from "./Model/GameInterface";
2
+ import { IGamePlay } from "./Model/GamePlayInterface";
3
+ import { IPlayer } from "./Model/PlayerInterface";
4
+ import { IGameRoom } from "./Model/GameRoomInterface";
5
+ export { IGame, IGamePlay, IPlayer, IGameRoom };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vankosoft/game-platform",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Game Platform",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,5 +36,8 @@
36
36
  },
37
37
  "dependencies": {
38
38
 
39
+ },
40
+ "resolutions": {
41
+ "@types/minimatch": "5.1.2"
39
42
  }
40
43
  }
@@ -1,11 +0,0 @@
1
- import BidType from './CardGame/bidType';
2
-
3
- interface CardGameAnnounceSymbolModel
4
- {
5
- id: BidType;
6
- key: string;
7
- tooltip: string;
8
- value: string;
9
- }
10
-
11
- export default CardGameAnnounceSymbolModel;
@@ -1,12 +0,0 @@
1
- interface IGame
2
- {
3
- id: number;
4
- slug: string;
5
- title: string;
6
- url: string;
7
-
8
- room?: any;
9
- deck?: any;
10
- }
11
-
12
- export default IGame;
@@ -1,9 +0,0 @@
1
- import IGameRoom from './GameRoomInterface';
2
-
3
- interface IGamePlay
4
- {
5
- id: any;
6
- room: null | IGameRoom;
7
- }
8
-
9
- export default IGamePlay;
@@ -1,10 +0,0 @@
1
- interface IGamePlayer
2
- {
3
- id: string;
4
-
5
- containerId: string;
6
- name: string;
7
- type: string;
8
- }
9
-
10
- export default IGamePlayer;
@@ -1,14 +0,0 @@
1
- import IGame from './GameInterface'
2
- import IPlayer from './PlayerInterface'
3
-
4
- interface IGameRoom
5
- {
6
- id: number;
7
- isPlaying: boolean;
8
- game: IGame;
9
- slug: string;
10
- name: string;
11
- players: IPlayer[];
12
- }
13
-
14
- export default IGameRoom;
@@ -1,9 +0,0 @@
1
- import IGamePlayer from './GamePlayerModel';
2
-
3
- interface IGameRoom
4
- {
5
- id: string;
6
- players: Array<IGamePlayer>;
7
- }
8
-
9
- export default IGameRoom;
@@ -1,13 +0,0 @@
1
- import IGameRoom from './GameRoomInterface';
2
-
3
- interface IPlayer
4
- {
5
- rooms: IGameRoom[];
6
-
7
- id: number;
8
- type: string;
9
- name: string;
10
- connected: any;
11
- }
12
-
13
- export default IPlayer;