client_plugin_logic_deb 1.8.352 → 1.8.355

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.
@@ -816,6 +816,11 @@ export declare namespace games.jass.logic.data.models {
816
816
  };
817
817
  get name(): "CREATED" | "CREATING" | "FINISHING" | "FINISHED";
818
818
  get ordinal(): 0 | 1 | 2 | 3;
819
+ get isActive(): boolean;
820
+ get isFinishing(): boolean;
821
+ get isFinished(): boolean;
822
+ get isCreated(): boolean;
823
+ get isCreating(): boolean;
819
824
  static values(): Array<games.jass.logic.data.models.GameLifecycleState>;
820
825
  static valueOf(value: string): games.jass.logic.data.models.GameLifecycleState;
821
826
  }
@@ -2673,8 +2678,8 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2673
2678
  }
2674
2679
  }
2675
2680
  export declare interface GameHelper {
2676
- filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
2677
- filterLiveDuringGamePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
2681
+ filterLivePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
2682
+ filterLiveDuringGamePlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>, includeBots?: boolean): Array<string>;
2678
2683
  filterBotPlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
2679
2684
  filterRealPlayers(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerIds: Array<string>): Array<string>;
2680
2685
  getUserSocketId(store: com.logic.redux.store.definitions.Store<any/* games.jass.logic.redux.AppState */>, playerId: string): Nullable<string>;
@@ -2887,7 +2892,8 @@ export declare namespace games.jass.logic.client.domain.mechanic {
2887
2892
  switchGameInfo(open: boolean): void;
2888
2893
  switchSettings(open: boolean): void;
2889
2894
  switchChat(open: boolean): void;
2890
- foreground(foreground: boolean): void;
2895
+ uiCreated(created: boolean): void;
2896
+ uiFocused(focused: boolean): void;
2891
2897
  updateConfig(updateConfig: any/* games.jass.logic.client.data.models.config.UpdateConfigModel */): void;
2892
2898
  clientMessage(message: any/* games.jass.logic.data.models.messages.Message */): void;
2893
2899
  observeShowTutorial(): any/* kotlinx.coroutines.flow.Flow<boolean> */;