client_plugin_logic_deb 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.
@@ -2214,18 +2214,20 @@ export declare namespace games.jass.logic.server.data.models.state {
2214
2214
  };
2215
2215
  }
2216
2216
  class TableStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
2217
- constructor(table: games.jass.logic.data.models.table.JassTable);
2217
+ constructor(table: games.jass.logic.data.models.table.JassTable, tableJson: string);
2218
2218
  get table(): games.jass.logic.data.models.table.JassTable;
2219
- copy(table?: games.jass.logic.data.models.table.JassTable): games.jass.logic.server.data.models.state.TableStateUpdate;
2219
+ get tableJson(): string;
2220
+ copy(table?: games.jass.logic.data.models.table.JassTable, tableJson?: string): games.jass.logic.server.data.models.state.TableStateUpdate;
2220
2221
  toString(): string;
2221
2222
  hashCode(): number;
2222
2223
  equals(other: Nullable<any>): boolean;
2223
2224
  readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.state.ServerStateUpdate["__doNotUseOrImplementIt"];
2224
2225
  }
2225
2226
  class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
2226
- constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
2227
+ constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson: string);
2227
2228
  get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
2228
- copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>): games.jass.logic.server.data.models.state.ActionsStateUpdate;
2229
+ get actionsJson(): string;
2230
+ copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson?: string): games.jass.logic.server.data.models.state.ActionsStateUpdate;
2229
2231
  toString(): string;
2230
2232
  hashCode(): number;
2231
2233
  equals(other: Nullable<any>): boolean;