raspberry_games_server_game_logic 1.8.391 → 1.8.393
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 +13 -13
- package/Kosi-Kodein-kodein-di.js +37 -37
- package/Kotlin-DateTime-library-kotlinx-datetime.js +90 -90
- package/Logic_Debertz-core.js +58 -58
- package/Logic_Debertz-engine.js +104 -104
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +23 -26
- package/Logic_Debertz-game_server.js +402 -432
- package/Logic_Debertz-game_server.js.map +1 -1
- package/error-library-error.js +5 -5
- package/kotlin-kotlin-stdlib.js +288 -301
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-atomicfu.js +9 -9
- package/kotlinx-coroutines-core.js +71 -71
- package/kotlinx-io-kotlinx-io-core.js +30 -30
- package/kotlinx-serialization-kotlinx-serialization-core.js +79 -79
- package/kotlinx-serialization-kotlinx-serialization-json.js +88 -88
- package/ktor-ktor-client-content-negotiation.js +21 -21
- package/ktor-ktor-client-core.js +67 -67
- package/ktor-ktor-client-logging.js +23 -23
- package/ktor-ktor-events.js +5 -5
- package/ktor-ktor-http.js +72 -72
- package/ktor-ktor-io.js +50 -50
- package/ktor-ktor-serialization-kotlinx.js +15 -15
- package/ktor-ktor-serialization.js +15 -15
- package/ktor-ktor-utils.js +45 -45
- package/ktor-ktor-websockets.js +13 -13
- package/package.json +1 -1
- package/random-library-crypto-rand.js +11 -11
- package/random-library-secure-random.js +5 -5
- package/raspberry-cardgame-lib-core.js +34 -34
- package/raspberry-cardgame-lib-logger.js +12 -12
- package/raspberry-cardgame-lib-random.js +39 -39
- package/uuid.js +12 -12
|
@@ -2789,32 +2789,6 @@ export declare namespace di {
|
|
|
2789
2789
|
const constructor: abstract new () => EngineHelpersFactory;
|
|
2790
2790
|
}
|
|
2791
2791
|
}
|
|
2792
|
-
export declare namespace games.jass.logic.server.data.models {
|
|
2793
|
-
class RoomMetadata {
|
|
2794
|
-
constructor(games?: kotlin.collections.KtMap<string, games.jass.logic.server.data.models.GameMetadata>);
|
|
2795
|
-
get games(): kotlin.collections.KtMap<string, games.jass.logic.server.data.models.GameMetadata>;
|
|
2796
|
-
copy(games?: kotlin.collections.KtMap<string, games.jass.logic.server.data.models.GameMetadata>): games.jass.logic.server.data.models.RoomMetadata;
|
|
2797
|
-
toString(): string;
|
|
2798
|
-
hashCode(): number;
|
|
2799
|
-
equals(other: Nullable<any>): boolean;
|
|
2800
|
-
}
|
|
2801
|
-
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2802
|
-
namespace RoomMetadata.$metadata$ {
|
|
2803
|
-
const constructor: abstract new () => RoomMetadata;
|
|
2804
|
-
}
|
|
2805
|
-
class GameMetadata {
|
|
2806
|
-
constructor(gameId: string);
|
|
2807
|
-
get gameId(): string;
|
|
2808
|
-
copy(gameId?: string): games.jass.logic.server.data.models.GameMetadata;
|
|
2809
|
-
toString(): string;
|
|
2810
|
-
hashCode(): number;
|
|
2811
|
-
equals(other: Nullable<any>): boolean;
|
|
2812
|
-
}
|
|
2813
|
-
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2814
|
-
namespace GameMetadata.$metadata$ {
|
|
2815
|
-
const constructor: abstract new () => GameMetadata;
|
|
2816
|
-
}
|
|
2817
|
-
}
|
|
2818
2792
|
export declare namespace games.jass.logic.server.data.models.config {
|
|
2819
2793
|
class ServerConfig {
|
|
2820
2794
|
constructor(fromRound: Nullable<number>, canStartNewGame: boolean);
|
|
@@ -3028,4 +3002,27 @@ export declare interface TestHelper {
|
|
|
3028
3002
|
readonly TestHelper: unique symbol;
|
|
3029
3003
|
};
|
|
3030
3004
|
}
|
|
3005
|
+
export declare namespace games.jass.logic.server.data.models {
|
|
3006
|
+
class RoomMetadata {
|
|
3007
|
+
constructor();
|
|
3008
|
+
get extras(): any;
|
|
3009
|
+
get extras(): kotlin.collections.KtMap<string, games.jass.logic.server.data.models.GameMetadata>;
|
|
3010
|
+
getGame(gameId: string): games.jass.logic.server.data.models.GameMetadata;
|
|
3011
|
+
getGameOrNull(gameId: string): Nullable<games.jass.logic.server.data.models.GameMetadata>;
|
|
3012
|
+
addGame(gameId: string, game: games.jass.logic.server.data.models.GameMetadata): void;
|
|
3013
|
+
}
|
|
3014
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3015
|
+
namespace RoomMetadata.$metadata$ {
|
|
3016
|
+
const constructor: abstract new () => RoomMetadata;
|
|
3017
|
+
}
|
|
3018
|
+
class GameMetadata {
|
|
3019
|
+
constructor(gameId: string);
|
|
3020
|
+
get gameId(): string;
|
|
3021
|
+
get extras(): any;
|
|
3022
|
+
}
|
|
3023
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3024
|
+
namespace GameMetadata.$metadata$ {
|
|
3025
|
+
const constructor: abstract new () => GameMetadata;
|
|
3026
|
+
}
|
|
3027
|
+
}
|
|
3031
3028
|
export as namespace io_raspberryapps_game_engine_game_server;
|