client_plugin_logic_deb 1.8.382 → 1.8.383
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/Logic_Debertz-client_plugin.d.ts +21 -9
- package/Logic_Debertz-client_plugin.js +1980 -1980
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +10816 -10761
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +6332 -6310
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +863 -819
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -2305,6 +2305,14 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
2305
2305
|
}
|
|
2306
2306
|
}
|
|
2307
2307
|
}
|
|
2308
|
+
export declare namespace games.jass.logic.redux {
|
|
2309
|
+
interface AppStatePayload {
|
|
2310
|
+
readonly metadata: Nullable<any>;
|
|
2311
|
+
readonly __doNotUseOrImplementIt: {
|
|
2312
|
+
readonly "games.jass.logic.redux.AppStatePayload": unique symbol;
|
|
2313
|
+
};
|
|
2314
|
+
}
|
|
2315
|
+
}
|
|
2308
2316
|
export declare namespace games.jass.logic.redux.actions {
|
|
2309
2317
|
class ClearAction implements com.logic.redux.store.definitions.Action, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
2310
2318
|
constructor(transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>);
|
|
@@ -2546,6 +2554,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2546
2554
|
readonly users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2547
2555
|
readonly config: games.jass.logic.data.models.table.config.Config;
|
|
2548
2556
|
readonly gameCreatorPlayerId: string;
|
|
2557
|
+
readonly metadata: Nullable<any>;
|
|
2549
2558
|
readonly __doNotUseOrImplementIt: {
|
|
2550
2559
|
readonly "games.jass.logic.redux.actions.mechanic.FirstMechanicAction": unique symbol;
|
|
2551
2560
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
|
|
@@ -2557,7 +2566,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2557
2566
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
2558
2567
|
}
|
|
2559
2568
|
class StartGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.FirstMechanicAction, games.jass.logic.redux.actions.mechanic.PlayerOrderChangeMechanicAction {
|
|
2560
|
-
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>);
|
|
2569
|
+
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, metadata: Nullable<any>);
|
|
2561
2570
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
2562
2571
|
get id(): string;
|
|
2563
2572
|
get version(): string;
|
|
@@ -2565,8 +2574,9 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2565
2574
|
get users(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2566
2575
|
get aid(): Nullable<string>;
|
|
2567
2576
|
get spectators(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2577
|
+
get metadata(): Nullable<any>;
|
|
2568
2578
|
get usersOrder(): kotlin.collections.KtList<string>;
|
|
2569
|
-
copy(config?: games.jass.logic.data.models.table.config.Config, roomId?: string, version?: string, gameCreatorPlayerId?: string, users?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid?: Nullable<string>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>): games.jass.logic.redux.actions.mechanic.StartGameMechanicAction;
|
|
2579
|
+
copy(config?: games.jass.logic.data.models.table.config.Config, roomId?: string, version?: string, gameCreatorPlayerId?: string, users?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid?: Nullable<string>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, metadata?: Nullable<any>): games.jass.logic.redux.actions.mechanic.StartGameMechanicAction;
|
|
2570
2580
|
toString(): string;
|
|
2571
2581
|
hashCode(): number;
|
|
2572
2582
|
equals(other: Nullable<any>): boolean;
|
|
@@ -3096,9 +3106,9 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
3096
3106
|
}
|
|
3097
3107
|
export declare namespace games.jass.logic.server.domain {
|
|
3098
3108
|
interface ServerGameEngineContract extends games.jass.logic.GameStoreContract {
|
|
3099
|
-
roomOnCreate(roomId: string, gameCreatorId: string, config: games.jass.logic.data.models.table.config.Config, usersArray: Array<com.logic.data.models.player.GameUserInfo>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, spectators?: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
3100
|
-
roomOnContinueFromState(roomId: string, state: games.jass.logic.data.models.table.TableStateWithActions): void;
|
|
3101
|
-
roomOnContinueFromRound(roomId: string, tableLite: games.jass.logic.data.models.table.JassTableLite): void;
|
|
3109
|
+
roomOnCreate(roomId: string, gameCreatorId: string, config: games.jass.logic.data.models.table.config.Config, usersArray: Array<com.logic.data.models.player.GameUserInfo>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, metadata?: Nullable<any>, spectators?: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
3110
|
+
roomOnContinueFromState(roomId: string, state: games.jass.logic.data.models.table.TableStateWithActions, metadata?: Nullable<any>): void;
|
|
3111
|
+
roomOnContinueFromRound(roomId: string, tableLite: games.jass.logic.data.models.table.JassTableLite, metadata?: Nullable<any>): void;
|
|
3102
3112
|
addSpectatorsToRoom(spectators: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
3103
3113
|
removeSpectatorsFromRoom(spectators: Array<com.logic.data.models.player.GameUserInfo>): void;
|
|
3104
3114
|
roomRefreshPlayerState(playerId: string): void;
|
|
@@ -3120,13 +3130,15 @@ export declare namespace games.jass.logic.server.domain {
|
|
|
3120
3130
|
}
|
|
3121
3131
|
}
|
|
3122
3132
|
export declare namespace games.jass.logic.server.redux.state {
|
|
3123
|
-
class ServerStatePayload
|
|
3124
|
-
constructor(config: games.jass.logic.server.data.models.config.ServerConfig);
|
|
3133
|
+
class ServerStatePayload implements games.jass.logic.redux.AppStatePayload {
|
|
3134
|
+
constructor(config: games.jass.logic.server.data.models.config.ServerConfig, metadata: Nullable<any>);
|
|
3125
3135
|
get config(): games.jass.logic.server.data.models.config.ServerConfig;
|
|
3126
|
-
|
|
3136
|
+
get metadata(): Nullable<any>;
|
|
3137
|
+
copy(config?: games.jass.logic.server.data.models.config.ServerConfig, metadata?: Nullable<any>): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
3127
3138
|
toString(): string;
|
|
3128
3139
|
hashCode(): number;
|
|
3129
3140
|
equals(other: Nullable<any>): boolean;
|
|
3141
|
+
readonly __doNotUseOrImplementIt: games.jass.logic.redux.AppStatePayload["__doNotUseOrImplementIt"];
|
|
3130
3142
|
}
|
|
3131
3143
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3132
3144
|
namespace ServerStatePayload.$metadata$ {
|
|
@@ -3139,7 +3151,7 @@ export declare namespace games.jass.logic.server.redux.state {
|
|
|
3139
3151
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
3140
3152
|
namespace Companion.$metadata$ {
|
|
3141
3153
|
abstract class constructor {
|
|
3142
|
-
initial(config?: games.jass.logic.server.data.models.config.ServerConfig): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
3154
|
+
initial(config?: games.jass.logic.server.data.models.config.ServerConfig, metadata?: Nullable<any>): games.jass.logic.server.redux.state.ServerStatePayload;
|
|
3143
3155
|
private constructor();
|
|
3144
3156
|
}
|
|
3145
3157
|
}
|