raspberry_games_server_game_logic 1.8.430 → 1.8.432
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/Kosi-Kaverit-kaverit.js +2 -2
- package/Kosi-Kodein-kodein-di.js +16 -16
- package/Kotlin-DateTime-library-kotlinx-datetime.js +151 -151
- package/Logic_Debertz-ai_module.js +193 -193
- package/Logic_Debertz-core.js +536 -536
- package/Logic_Debertz-engine.js +12058 -11986
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +5 -0
- package/Logic_Debertz-game_server.js +1068 -1067
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +550 -544
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +13 -13
- package/kotlinx-coroutines-core.js +2164 -2164
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +314 -314
- package/kotlinx-serialization-kotlinx-serialization-core.js +1739 -1739
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1316 -1316
- package/ktor-ktor-client-content-negotiation.js +123 -123
- package/ktor-ktor-client-core.js +1442 -1442
- package/ktor-ktor-client-logging.js +265 -265
- package/ktor-ktor-events.js +6 -6
- package/ktor-ktor-http.js +590 -590
- package/ktor-ktor-io.js +1241 -1241
- package/ktor-ktor-serialization-kotlinx-json.js +6 -6
- package/ktor-ktor-serialization-kotlinx.js +132 -132
- package/ktor-ktor-serialization.js +61 -61
- package/ktor-ktor-utils.js +483 -483
- package/ktor-ktor-websockets.js +42 -42
- package/package.json +1 -1
- package/random-library-crypto-rand.js +1 -1
- package/random-library-secure-random.js +2 -2
- package/raspberry-cardgame-lib-core.js +7 -7
- package/raspberry-cardgame-lib-logger.js +90 -90
- package/raspberry-cardgame-lib-random.js +794 -794
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/uuid.js +12 -12
|
@@ -1414,6 +1414,10 @@ export declare namespace games.jass.logic.data.models.player.state {
|
|
|
1414
1414
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
1415
1415
|
get playerAchievements(): Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>;
|
|
1416
1416
|
get playerGameAnalytics(): Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>;
|
|
1417
|
+
copy(gameId?: string, gameCreatedAt?: any/* kotlin.time.Instant */, config?: games.jass.logic.data.models.table.config.Config, playerAchievements?: Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>, playerGameAnalytics?: Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>): games.jass.logic.data.models.player.state.PlayerLeftResult;
|
|
1418
|
+
toString(): string;
|
|
1419
|
+
hashCode(): number;
|
|
1420
|
+
equals(other: Nullable<any>): boolean;
|
|
1417
1421
|
}
|
|
1418
1422
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
1419
1423
|
namespace PlayerLeftResult.$metadata$ {
|
|
@@ -2903,6 +2907,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2903
2907
|
}
|
|
2904
2908
|
}
|
|
2905
2909
|
export declare interface GameHelper {
|
|
2910
|
+
getBotRatingRange(league: Nullable<string>): Array<number>;
|
|
2906
2911
|
filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
|
|
2907
2912
|
filterLiveDuringGamePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
|
|
2908
2913
|
filterBotPlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
|