game_client_logic_deb 1.8.117 → 1.8.131
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/Logic_Debertz-core.js +41 -31
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +3802 -3633
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +13 -13
- package/Logic_Debertz-game_client.js +2176 -2148
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +7 -7
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -975,14 +975,18 @@ export declare namespace com.debertz.logic.data.models.table.history {
|
|
|
975
975
|
}
|
|
976
976
|
export declare namespace com.debertz.logic.data.models.table.history {
|
|
977
977
|
class RoundHistory {
|
|
978
|
-
constructor(roundNumber: number, items: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem
|
|
978
|
+
constructor(roundNumber: number, items: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>, roundCommitted: Nullable<Array<string>>, roundContractState: Nullable<com.debertz.logic.data.models.player.state.RoundContractState>, roundWinners: Nullable<Array<string>>);
|
|
979
979
|
get roundNumber(): number;
|
|
980
980
|
get items(): Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>;
|
|
981
|
+
get roundCommitted(): Nullable<Array<string>>;
|
|
982
|
+
get roundContractState(): Nullable<com.debertz.logic.data.models.player.state.RoundContractState>;
|
|
983
|
+
get roundWinners(): Nullable<Array<string>>;
|
|
984
|
+
get roundContractStateName(): Nullable<string>;
|
|
981
985
|
get isRoundEmpty(): boolean;
|
|
982
986
|
equals(other: Nullable<any>): boolean;
|
|
983
987
|
hashCode(): number;
|
|
984
988
|
toStringShort(): string;
|
|
985
|
-
copy(roundNumber?: number, items?: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem
|
|
989
|
+
copy(roundNumber?: number, items?: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>, roundCommitted?: Nullable<Array<string>>, roundContractState?: Nullable<com.debertz.logic.data.models.player.state.RoundContractState>, roundWinners?: Nullable<Array<string>>): com.debertz.logic.data.models.table.history.RoundHistory;
|
|
986
990
|
toString(): string;
|
|
987
991
|
static get Companion(): {
|
|
988
992
|
initial(roundNumber: number): com.debertz.logic.data.models.table.history.RoundHistory;
|
|
@@ -1116,25 +1120,21 @@ export declare namespace com.debertz.logic.redux.actions.game {
|
|
|
1116
1120
|
get actionTag(): string;
|
|
1117
1121
|
}
|
|
1118
1122
|
class RoundEndedAction extends com.debertz.logic.redux.actions.game.GameAction {
|
|
1119
|
-
constructor(id: string, gameId: string, roundNumber: number, earnedBiggestPointPlayerId: string,
|
|
1123
|
+
constructor(id: string, gameId: string, roundNumber: number, earnedBiggestPointPlayerId: string, gameLosers: Nullable<Array<string>> | undefined, gameWinners: Nullable<Array<string>> | undefined, playersGameAnalytics: Nullable<Array<com.debertz.logic.data.models.player.hand.PlayerAnalytics>> | undefined, playersRoundAnalytics: Nullable<Array<com.debertz.logic.data.models.player.hand.PlayerAnalytics>> | undefined, gameHistory: com.debertz.logic.data.models.table.history.GameHistory);
|
|
1120
1124
|
get id(): string;
|
|
1121
1125
|
get gameId(): string;
|
|
1122
1126
|
get roundNumber(): number;
|
|
1123
1127
|
get earnedBiggestPointPlayerId(): string;
|
|
1124
|
-
get roundCommitted(): Array<string>;
|
|
1125
|
-
get roundContractState(): com.debertz.logic.data.models.player.state.RoundContractState;
|
|
1126
|
-
get roundWinners(): Array<string>;
|
|
1127
1128
|
get gameLosers(): Nullable<Array<string>>;
|
|
1128
1129
|
get gameWinners(): Nullable<Array<string>>;
|
|
1129
1130
|
get playersGameAnalytics(): Nullable<Array<com.debertz.logic.data.models.player.hand.PlayerAnalytics>>;
|
|
1130
1131
|
get playersRoundAnalytics(): Nullable<Array<com.debertz.logic.data.models.player.hand.PlayerAnalytics>>;
|
|
1131
1132
|
get gameHistory(): com.debertz.logic.data.models.table.history.GameHistory;
|
|
1132
|
-
get roundContractStateName(): string;
|
|
1133
1133
|
get isGameFinished(): boolean;
|
|
1134
1134
|
toString(): string;
|
|
1135
1135
|
equals(other: Nullable<any>): boolean;
|
|
1136
1136
|
hashCode(): number;
|
|
1137
|
-
copy(id?: string, gameId?: string, roundNumber?: number, earnedBiggestPointPlayerId?: string,
|
|
1137
|
+
copy(id?: string, gameId?: string, roundNumber?: number, earnedBiggestPointPlayerId?: string, gameLosers?: Nullable<Array<string>>, gameWinners?: Nullable<Array<string>>, playersGameAnalytics?: Nullable<Array<com.debertz.logic.data.models.player.hand.PlayerAnalytics>>, playersRoundAnalytics?: Nullable<Array<com.debertz.logic.data.models.player.hand.PlayerAnalytics>>, gameHistory?: com.debertz.logic.data.models.table.history.GameHistory): com.debertz.logic.redux.actions.game.RoundEndedAction;
|
|
1138
1138
|
get actionTag(): string;
|
|
1139
1139
|
}
|
|
1140
1140
|
class PartyRestartedAction implements com.logic.redux.store.definitions.Action {
|
|
@@ -1344,17 +1344,17 @@ export declare namespace com.debertz.logic.client.data.models.vm {
|
|
|
1344
1344
|
copy(gameId?: string, createdAt?: any/* kotlinx.datetime.Instant */, gameType?: com.debertz.logic.client.data.models.config.GameType, users?: Array<com.logic.data.models.player.GameUserInfo>, config?: com.debertz.logic.data.models.table.config.ConfigLite, gameWinners?: Nullable<Array<string>>): com.debertz.logic.client.data.models.vm.GameHistoryViewModel;
|
|
1345
1345
|
}
|
|
1346
1346
|
class RoundEndedHistoryViewModel /* extends com.debertz.logic.client.data.models.vm.HistoryViewModel */ {
|
|
1347
|
-
constructor(gameId: string, roundNumber: number, items: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>, roundContractState: com.debertz.logic.data.models.player.state.RoundContractState
|
|
1347
|
+
constructor(gameId: string, roundNumber: number, items: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>, roundContractState: Nullable<com.debertz.logic.data.models.player.state.RoundContractState>, roundCommitted: Nullable<Array<string>>, roundWinners: Nullable<Array<string>>, gameEndedHistory: Nullable<com.debertz.logic.client.data.models.vm.GameHistoryViewModel>);
|
|
1348
1348
|
get gameId(): string;
|
|
1349
1349
|
get roundNumber(): number;
|
|
1350
1350
|
get items(): Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>;
|
|
1351
|
-
get roundContractState(): com.debertz.logic.data.models.player.state.RoundContractState
|
|
1352
|
-
get roundCommitted(): Array<string
|
|
1353
|
-
get roundWinners(): Array<string
|
|
1351
|
+
get roundContractState(): Nullable<com.debertz.logic.data.models.player.state.RoundContractState>;
|
|
1352
|
+
get roundCommitted(): Nullable<Array<string>>;
|
|
1353
|
+
get roundWinners(): Nullable<Array<string>>;
|
|
1354
1354
|
get gameEndedHistoryViewModel(): Nullable<com.debertz.logic.client.data.models.vm.GameHistoryViewModel>;
|
|
1355
1355
|
equals(other: Nullable<any>): boolean;
|
|
1356
1356
|
hashCode(): number;
|
|
1357
|
-
copy(gameId?: string, roundNumber?: number, items?: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>, roundContractState?: com.debertz.logic.data.models.player.state.RoundContractState
|
|
1357
|
+
copy(gameId?: string, roundNumber?: number, items?: Array<com.debertz.logic.data.models.table.history.RoundHistoryItem>, roundContractState?: Nullable<com.debertz.logic.data.models.player.state.RoundContractState>, roundCommitted?: Nullable<Array<string>>, roundWinners?: Nullable<Array<string>>, gameEndedHistory?: Nullable<com.debertz.logic.client.data.models.vm.GameHistoryViewModel>): com.debertz.logic.client.data.models.vm.RoundEndedHistoryViewModel;
|
|
1358
1358
|
toString(): string;
|
|
1359
1359
|
}
|
|
1360
1360
|
}
|