client_plugin_logic_deb 1.8.424 → 1.8.426
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 +5 -2
- package/Logic_Debertz-client_plugin.js +1864 -1864
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +7444 -7432
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +148 -148
- package/Logic_Debertz-game_server.js +157 -150
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +8 -8
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -1408,7 +1408,10 @@ export declare namespace games.jass.logic.data.models.player.points {
|
|
|
1408
1408
|
}
|
|
1409
1409
|
export declare namespace games.jass.logic.data.models.player.state {
|
|
1410
1410
|
class PlayerLeftResult {
|
|
1411
|
-
constructor(playerAchievements: Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>, playerGameAnalytics: Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>);
|
|
1411
|
+
constructor(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>);
|
|
1412
|
+
get gameId(): string;
|
|
1413
|
+
get gameCreatedAt(): any/* kotlin.time.Instant */;
|
|
1414
|
+
get config(): games.jass.logic.data.models.table.config.Config;
|
|
1412
1415
|
get playerAchievements(): Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>;
|
|
1413
1416
|
get playerGameAnalytics(): Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>;
|
|
1414
1417
|
}
|
|
@@ -3302,7 +3305,7 @@ export declare namespace games.jass.logic.server.domain {
|
|
|
3302
3305
|
shutdown(reason: string, roomId?: Nullable<string>): void;
|
|
3303
3306
|
playerLostConnection(playerId: string): void;
|
|
3304
3307
|
playerLive(playerId: string): void;
|
|
3305
|
-
playerLeft(playerId: string, permanently?: boolean): games.jass.logic.data.models.player.state.PlayerLeftResult
|
|
3308
|
+
playerLeft(playerId: string, permanently?: boolean): Nullable<games.jass.logic.data.models.player.state.PlayerLeftResult>;
|
|
3306
3309
|
fromClientEvent(action: games.jass.logic.redux.actions.client.from.FromClientAction): void;
|
|
3307
3310
|
roomRefreshPlayerState(playerId: string): void;
|
|
3308
3311
|
getToClientFinishActionBeforeDisconnect(playerId: string, previousState: com.logic.data.models.player.PlayerConnectionState, originState: com.logic.data.models.player.PlayerConnectionState): Nullable<games.jass.logic.redux.actions.client.to.ToClientAction>;
|