game_client_logic_deb 1.8.110 → 1.8.117
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-core.js +1 -1
- package/Logic_Debertz-engine.js +7242 -6954
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +2 -1
- package/Logic_Debertz-game_client.js +2087 -2084
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -1040,6 +1040,7 @@ export declare namespace com.debertz.logic.redux.actions.client.from {
|
|
|
1040
1040
|
abstract class FromClientAction implements com.logic.redux.store.definitions.Action {
|
|
1041
1041
|
protected constructor();
|
|
1042
1042
|
abstract get playerId(): string;
|
|
1043
|
+
abstract get fromBot(): boolean;
|
|
1043
1044
|
get actionTag(): string;
|
|
1044
1045
|
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
1045
1046
|
}
|
|
@@ -1272,7 +1273,7 @@ export declare interface ParserHelper {
|
|
|
1272
1273
|
encodeFromClientEvent(action: com.debertz.logic.redux.actions.client.from.FromClientAction): string;
|
|
1273
1274
|
decodeFromClientEvent(fromPlayerId: string, json: string): com.debertz.logic.redux.actions.client.from.FromClientAction;
|
|
1274
1275
|
encodeToClientEvent(action: com.debertz.logic.redux.actions.client.to.ToClientAction): string;
|
|
1275
|
-
|
|
1276
|
+
decodeToClientEventToMechanicActions(playerId: string, engine: com.debertz.logic.GameStoreContract, json: string): Array<com.debertz.logic.redux.actions.mechanic.MechanicAction>;
|
|
1276
1277
|
encodeGameRound(round: com.debertz.logic.data.models.table.history.RoundHistory): string;
|
|
1277
1278
|
encodeGameRoundItems(round: com.debertz.logic.data.models.table.history.RoundHistory): string;
|
|
1278
1279
|
readonly __doNotUseOrImplementIt: {
|