client_plugin_logic_deb 1.8.350 → 1.8.352
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 +70 -70
- package/Kosi-Kodein-kodein-di.js +562 -562
- package/Kotlin-DateTime-library-kotlinx-datetime.js +1591 -1591
- package/Logic_Debertz-client_plugin.d.ts +4 -4
- package/Logic_Debertz-client_plugin.js +3728 -3559
- package/Logic_Debertz-client_plugin.js.map +1 -1
- package/Logic_Debertz-core.js +1749 -1749
- package/Logic_Debertz-engine.js +17906 -17818
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +10885 -10041
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +1131 -1130
- package/Logic_Debertz-game_server.js.map +1 -1
- package/error-library-error.js +5 -5
- package/kotlin-kotlin-stdlib.js +343 -330
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +5 -5
- package/kotlinx-coroutines-core.js +2652 -1686
- package/kotlinx-coroutines-core.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +338 -338
- package/kotlinx-serialization-kotlinx-serialization-core.js +1915 -1915
- package/kotlinx-serialization-kotlinx-serialization-json.js +1428 -1428
- package/ktor-ktor-client-content-negotiation.js +157 -157
- package/ktor-ktor-client-core.js +1623 -1623
- package/ktor-ktor-client-logging.js +318 -318
- package/ktor-ktor-events.js +11 -11
- package/ktor-ktor-http.js +683 -683
- package/ktor-ktor-io.js +1301 -1301
- package/ktor-ktor-serialization-kotlinx-json.js +7 -7
- package/ktor-ktor-serialization-kotlinx.js +169 -169
- package/ktor-ktor-serialization.js +85 -85
- package/ktor-ktor-utils.js +560 -560
- package/ktor-ktor-websockets.js +56 -56
- package/package.json +1 -1
- package/random-library-crypto-rand.js +11 -11
- package/random-library-secure-random.js +6 -6
- package/raspberry-cardgame-lib-core.js +225 -225
- package/raspberry-cardgame-lib-core.js.map +1 -1
- package/raspberry-cardgame-lib-logger.js +13 -13
- package/raspberry-cardgame-lib-logger.js.map +1 -1
- package/raspberry-cardgame-lib-random.js +870 -870
- package/raspberry-cardgame-lib-random.js.map +1 -1
- package/uuid.js +26 -26
|
@@ -870,8 +870,8 @@ export declare namespace games.jass.logic.data.models {
|
|
|
870
870
|
}
|
|
871
871
|
export declare namespace games.jass.logic.data.models.config {
|
|
872
872
|
class ServerReduxConfig {
|
|
873
|
-
constructor(
|
|
874
|
-
get
|
|
873
|
+
constructor(finishGameWhenNotLiveStrategy?: any/* games.jass.logic.data.models.config.FinishGameWhenNotLiveStrategy */, waitForPlayerToReconnect?: boolean, waitForPlayerToReconnectTimeOutMillis?: number, closeIfBotsAtFinish?: boolean, botReplacesPlayerAfterTimeout?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number);
|
|
874
|
+
get finishGameWhenNotLiveStrategy(): any/* games.jass.logic.data.models.config.FinishGameWhenNotLiveStrategy */;
|
|
875
875
|
get waitForPlayerToReconnect(): boolean;
|
|
876
876
|
get waitForPlayerToReconnectTimeOutMillis(): number;
|
|
877
877
|
get closeIfBotsAtFinish(): boolean;
|
|
@@ -880,7 +880,7 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
880
880
|
get delayToAskBotMillis(): number;
|
|
881
881
|
get combinedEventsIntervalMillis(): number;
|
|
882
882
|
get serverStateUpdateIntervalMillis(): number;
|
|
883
|
-
copy(
|
|
883
|
+
copy(finishGameWhenNotLiveStrategy?: any/* games.jass.logic.data.models.config.FinishGameWhenNotLiveStrategy */, waitForPlayerToReconnect?: boolean, waitForPlayerToReconnectTimeOutMillis?: number, closeIfBotsAtFinish?: boolean, botReplacesPlayerAfterTimeout?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number): games.jass.logic.data.models.config.ServerReduxConfig;
|
|
884
884
|
toString(): string;
|
|
885
885
|
hashCode(): number;
|
|
886
886
|
equals(other: Nullable<any>): boolean;
|
|
@@ -898,7 +898,7 @@ export declare namespace games.jass.logic.data.models.config {
|
|
|
898
898
|
abstract class constructor {
|
|
899
899
|
get DELAY_TO_BUFFER_EVENTS_MILLIS(): number;
|
|
900
900
|
get DELAY_TO_BUFFER_STATE_UPDATES_MILLIS(): number;
|
|
901
|
-
getServerEngineMode(
|
|
901
|
+
getServerEngineMode(botReplacesPlayerAfterTimeout: boolean, closeIfBotsAtFinish?: boolean, enabledCombinedEvents?: boolean, delayToAskBotMillis?: number, combinedEventsIntervalMillis?: number, serverStateUpdateIntervalMillis?: number): games.jass.logic.data.models.config.ServerReduxConfig;
|
|
902
902
|
private constructor();
|
|
903
903
|
}
|
|
904
904
|
}
|