raspberry_games_server_game_logic 1.8.265 → 1.8.267

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.
@@ -317,15 +317,16 @@ export declare namespace com.logic.data.models {
317
317
  }
318
318
  export declare namespace com.logic.data.models.player {
319
319
  class GameUserInfo implements com.logic.data.models.player.PlayerIdContract {
320
- constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>);
320
+ constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialRating?: Nullable<number>, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>);
321
321
  get playerId(): string;
322
322
  get name(): string;
323
323
  get avatarUrl(): Nullable<string>;
324
324
  get isBot(): boolean;
325
+ get initialRating(): Nullable<number>;
325
326
  get initialLuckyFactor(): Nullable<number>;
326
327
  get payload(): Nullable<any>;
327
328
  toString(): string;
328
- copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>): com.logic.data.models.player.GameUserInfo;
329
+ copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialRating?: Nullable<number>, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>): com.logic.data.models.player.GameUserInfo;
329
330
  hashCode(): number;
330
331
  equals(other: Nullable<any>): boolean;
331
332
  readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
@@ -1815,8 +1816,8 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
1815
1816
  readonly "games.jass.logic.redux.actions.mechanic.NavigationMechanicAction": unique symbol;
1816
1817
  } & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
1817
1818
  }
1818
- class SceneMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements games.jass.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, games.jass.logic.redux.actions.mechanic.NextPlayerTurnAction */ {
1819
- constructor(sceneId: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>);
1819
+ class SceneMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements games.jass.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.data.models.player.PlayerIdContract, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, games.jass.logic.redux.actions.mechanic.NextPlayerTurnAction, games.jass.logic.redux.actions.mechanic.PlayerTurnIdAnswerAction */ {
1820
+ constructor(currentTurnPlayerId: Nullable<string>, sceneId: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>);
1820
1821
  get sceneId(): string;
1821
1822
  get actId(): Nullable<string>;
1822
1823
  get sceneData(): Nullable<games.jass.logic.data.models.scenes.SceneData>;
@@ -1825,11 +1826,12 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
1825
1826
  notValidateWhenFinished(): boolean;
1826
1827
  notValidateWhenFinishing(): boolean;
1827
1828
  toString(): string;
1828
- copy(sceneId?: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>): games.jass.logic.redux.actions.mechanic.SceneMechanicAction;
1829
+ copy(currentTurnPlayerId?: Nullable<string>, sceneId?: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>): games.jass.logic.redux.actions.mechanic.SceneMechanicAction;
1829
1830
  hashCode(): number;
1830
1831
  equals(other: Nullable<any>): boolean;
1831
1832
  get actionTag(): string;
1832
- readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.NavigationMechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.ReleaseBufferTriggerAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
1833
+ get playerId(): string;
1834
+ readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.NavigationMechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.ReleaseBufferTriggerAction["__doNotUseOrImplementIt"] & com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
1833
1835
  }
1834
1836
  interface TerminatedAction extends com.logic.redux.store.definitions.Action {
1835
1837
  readonly reason: com.logic.data.models.TerminationGameReason;