game_client_logic_deb 1.8.431 → 1.8.433
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 +152 -152
- package/Logic_Debertz-ai_module.js +193 -193
- package/Logic_Debertz-core.js +500 -500
- package/Logic_Debertz-engine.js +3703 -3642
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +16 -0
- package/Logic_Debertz-game_client.js +2535 -2535
- package/kotlin-kotlin-stdlib.js +556 -550
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +13 -13
- package/kotlinx-coroutines-core.js +2134 -2134
- 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 +756 -756
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/uuid.js +12 -12
|
@@ -2907,6 +2907,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2907
2907
|
}
|
|
2908
2908
|
}
|
|
2909
2909
|
export declare interface GameHelper {
|
|
2910
|
+
getBotRatingRange(league: Nullable<string>): models.BotRatingRange;
|
|
2910
2911
|
filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
|
|
2911
2912
|
filterLiveDuringGamePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
|
|
2912
2913
|
filterBotPlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
|
|
@@ -2983,6 +2984,21 @@ export declare namespace di {
|
|
|
2983
2984
|
const constructor: abstract new () => EngineHelpersFactory;
|
|
2984
2985
|
}
|
|
2985
2986
|
}
|
|
2987
|
+
export declare namespace models {
|
|
2988
|
+
class BotRatingRange {
|
|
2989
|
+
constructor(min: number, max: number);
|
|
2990
|
+
get min(): number;
|
|
2991
|
+
get max(): number;
|
|
2992
|
+
copy(min?: number, max?: number): models.BotRatingRange;
|
|
2993
|
+
toString(): string;
|
|
2994
|
+
hashCode(): number;
|
|
2995
|
+
equals(other: Nullable<any>): boolean;
|
|
2996
|
+
}
|
|
2997
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2998
|
+
namespace BotRatingRange.$metadata$ {
|
|
2999
|
+
const constructor: abstract new () => BotRatingRange;
|
|
3000
|
+
}
|
|
3001
|
+
}
|
|
2986
3002
|
export declare namespace games.jass.logic.client.data.models.config {
|
|
2987
3003
|
abstract class GameType {
|
|
2988
3004
|
private constructor();
|