raspberry_games_server_game_logic 1.8.338 → 1.8.341

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.
@@ -2066,18 +2066,20 @@ export declare namespace games.jass.logic.server.data.models.state {
2066
2066
  };
2067
2067
  }
2068
2068
  class TableStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
2069
- constructor(table: games.jass.logic.data.models.table.JassTable);
2069
+ constructor(table: games.jass.logic.data.models.table.JassTable, tableJson: string);
2070
2070
  get table(): games.jass.logic.data.models.table.JassTable;
2071
- copy(table?: games.jass.logic.data.models.table.JassTable): games.jass.logic.server.data.models.state.TableStateUpdate;
2071
+ get tableJson(): string;
2072
+ copy(table?: games.jass.logic.data.models.table.JassTable, tableJson?: string): games.jass.logic.server.data.models.state.TableStateUpdate;
2072
2073
  toString(): string;
2073
2074
  hashCode(): number;
2074
2075
  equals(other: Nullable<any>): boolean;
2075
2076
  readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.state.ServerStateUpdate["__doNotUseOrImplementIt"];
2076
2077
  }
2077
2078
  class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
2078
- constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
2079
+ constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson: string);
2079
2080
  get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
2080
- copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>): games.jass.logic.server.data.models.state.ActionsStateUpdate;
2081
+ get actionsJson(): string;
2082
+ copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson?: string): games.jass.logic.server.data.models.state.ActionsStateUpdate;
2081
2083
  toString(): string;
2082
2084
  hashCode(): number;
2083
2085
  equals(other: Nullable<any>): boolean;