raspberry_games_server_game_logic 1.8.285 → 1.8.287
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/Kotlin-DateTime-library-kotlinx-datetime.js +2 -2
- package/Logic_Debertz-core.js +3 -3
- package/Logic_Debertz-engine.js +10294 -10122
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +12 -0
- package/Logic_Debertz-game_server.js +681 -681
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +2 -2
- package/package.json +1 -1
|
@@ -834,6 +834,7 @@ export declare namespace games.jass.logic.data.models.player.analytics {
|
|
|
834
834
|
get liveDurationPercentage(): Nullable<number>;
|
|
835
835
|
get combinations(): Nullable<kotlin.collections.KtList<games.jass.logic.data.models.player.analytics.CombinationAnalytics>>;
|
|
836
836
|
get achievements(): Nullable<games.jass.logic.data.models.player.achievements.Achievements>;
|
|
837
|
+
get wasPlayerOffline(): boolean;
|
|
837
838
|
copy(playerId?: string, liveDurationPercentage?: Nullable<number>, combinations?: Nullable<kotlin.collections.KtList<games.jass.logic.data.models.player.analytics.CombinationAnalytics>>, achievements?: Nullable<games.jass.logic.data.models.player.achievements.Achievements>): games.jass.logic.data.models.player.analytics.PlayerHistoryAnalytics;
|
|
838
839
|
toString(): string;
|
|
839
840
|
hashCode(): number;
|
|
@@ -1481,6 +1482,17 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1481
1482
|
static valueOf(value: string): games.jass.logic.data.models.table.config.RoomMode;
|
|
1482
1483
|
}
|
|
1483
1484
|
}
|
|
1485
|
+
export declare namespace games.jass.logic.data.models.table.history {
|
|
1486
|
+
class ClientGameHistory {
|
|
1487
|
+
constructor(roundNumber: Nullable<number>, metadata: Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>);
|
|
1488
|
+
get roundNumber(): Nullable<number>;
|
|
1489
|
+
get metadata(): Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>;
|
|
1490
|
+
copy(roundNumber?: Nullable<number>, metadata?: Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>): games.jass.logic.data.models.table.history.ClientGameHistory;
|
|
1491
|
+
toString(): string;
|
|
1492
|
+
hashCode(): number;
|
|
1493
|
+
equals(other: Nullable<any>): boolean;
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1484
1496
|
export declare namespace games.jass.logic.data.models.table.history {
|
|
1485
1497
|
class GameHistory {
|
|
1486
1498
|
constructor(gameId: string, createdAt: any/* kotlinx.datetime.Instant */, rounds: Array<games.jass.logic.data.models.table.history.RoundHistory>, gameWinners: Nullable<Array<string>>, metadata: Nullable<games.jass.logic.data.models.table.history.GameHistoryMetadata>);
|