jp.ms.common.engine 1.0.2 → 1.0.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.
|
@@ -3,8 +3,8 @@ import { ScheduledTournamentRoom } from './scheduled-tournament-room';
|
|
|
3
3
|
import { SimpleRoom } from './simple-room';
|
|
4
4
|
import { ITournamentParticipant } from './tournament-participant';
|
|
5
5
|
import { TournamentPrizes } from './tournament-prize';
|
|
6
|
-
import { TournamentRoom } from './tournament-room';
|
|
6
|
+
import { TournamentRoom, TournamentRoomConfig } from './tournament-room';
|
|
7
7
|
import { TournamentState } from './tournament-state';
|
|
8
8
|
import { ITournamentWinner } from './tournament-winner';
|
|
9
|
-
export { FastTournamentRoom, SimpleRoom, ITournamentParticipant, TournamentPrizes, ScheduledTournamentRoom, TournamentRoom, TournamentState, ITournamentWinner, };
|
|
9
|
+
export { TournamentRoomConfig, FastTournamentRoom, SimpleRoom, ITournamentParticipant, TournamentPrizes, ScheduledTournamentRoom, TournamentRoom, TournamentState, ITournamentWinner, };
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/base-rooms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/base-rooms/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,6BAA6B,CAAC;AACtE,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AAClE,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,OAAO,EACH,oBAAoB,EACpB,kBAAkB,EAClB,UAAU,EACV,sBAAsB,EACtB,gBAAgB,EAChB,uBAAuB,EACvB,cAAc,EACd,eAAe,EACf,iBAAiB,GACpB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/base-rooms/index.ts"],"names":[],"mappings":";;;AAAA,iEAA4D;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/base-rooms/index.ts"],"names":[],"mappings":";;;AAAA,iEAA4D;AAWxD,mGAXK,yCAAkB,OAWL;AAVtB,2EAAsE;AAclE,wGAdK,mDAAuB,OAcL;AAb3B,+CAA2C;AAUvC,2FAVK,wBAAU,OAUL;AAPd,uDAAyE;AAWrE,+FAXK,gCAAc,OAWL;AAVlB,yDAAqD;AAWjD,gGAXK,kCAAe,OAWL"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jp.ms.common.engine",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"node-schedule": "2.1.1",
|
|
13
13
|
"seedrandom": "3.0.5",
|
|
14
14
|
"shuffle-array": "1.0.1",
|
|
15
|
-
"uuid": "
|
|
15
|
+
"uuid": "11.1.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/jest": "^29.5.14",
|
package/src/base-rooms/index.ts
CHANGED
|
@@ -3,11 +3,12 @@ import { ScheduledTournamentRoom } from './scheduled-tournament-room';
|
|
|
3
3
|
import { SimpleRoom } from './simple-room';
|
|
4
4
|
import { ITournamentParticipant } from './tournament-participant';
|
|
5
5
|
import { TournamentPrizes } from './tournament-prize';
|
|
6
|
-
import { TournamentRoom } from './tournament-room';
|
|
6
|
+
import { TournamentRoom, TournamentRoomConfig } from './tournament-room';
|
|
7
7
|
import { TournamentState } from './tournament-state';
|
|
8
8
|
import { ITournamentWinner } from './tournament-winner';
|
|
9
9
|
|
|
10
10
|
export {
|
|
11
|
+
TournamentRoomConfig,
|
|
11
12
|
FastTournamentRoom,
|
|
12
13
|
SimpleRoom,
|
|
13
14
|
ITournamentParticipant,
|