client_plugin_logic_deb 1.8.495 → 1.8.497

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.
@@ -2729,6 +2729,7 @@ export declare namespace games.jass.logic.redux.actions.client.to {
2729
2729
  abstract class constructor {
2730
2730
  userFromTable(aid: string, table: games.jass.logic.data.models.table.JassTable, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2731
2731
  user(aid: string, tableId: string, sendToPlayerId: string): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2732
+ roomExceptUsers(aid: string, tableId: string, excludePlayerIds: kotlin.collections.KtList<string>): games.jass.logic.redux.actions.client.to.ActionDeliveryPayload;
2732
2733
  private constructor();
2733
2734
  }
2734
2735
  }
@@ -2744,12 +2745,16 @@ export declare namespace games.jass.logic.redux.actions.client.to {
2744
2745
  get name(): "ROOM_EXCEPT_USER";
2745
2746
  get ordinal(): 1;
2746
2747
  };
2748
+ static get ROOM_EXCEPT_USERS(): games.jass.logic.redux.actions.client.to.ActionDeliveryType & {
2749
+ get name(): "ROOM_EXCEPT_USERS";
2750
+ get ordinal(): 2;
2751
+ };
2747
2752
  static get USER(): games.jass.logic.redux.actions.client.to.ActionDeliveryType & {
2748
2753
  get name(): "USER";
2749
- get ordinal(): 2;
2754
+ get ordinal(): 3;
2750
2755
  };
2751
- get name(): "ROOM_ALL" | "ROOM_EXCEPT_USER" | "USER";
2752
- get ordinal(): 0 | 1 | 2;
2756
+ get name(): "ROOM_ALL" | "ROOM_EXCEPT_USER" | "ROOM_EXCEPT_USERS" | "USER";
2757
+ get ordinal(): 0 | 1 | 2 | 3;
2753
2758
  static values(): Array<games.jass.logic.redux.actions.client.to.ActionDeliveryType>;
2754
2759
  static valueOf(value: string): games.jass.logic.redux.actions.client.to.ActionDeliveryType;
2755
2760
  }
@@ -2917,6 +2922,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2917
2922
  readonly id: string;
2918
2923
  readonly version: string;
2919
2924
  readonly users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2925
+ readonly spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2920
2926
  readonly config: games.jass.logic.data.models.table.config.Config;
2921
2927
  readonly gameCreatorPlayerId: string;
2922
2928
  readonly __doNotUseOrImplementIt: {
@@ -2977,6 +2983,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2977
2983
  get aid(): Nullable<string>;
2978
2984
  get id(): string;
2979
2985
  get users(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2986
+ get spectators(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2980
2987
  get usersOrder(): Array<string>;
2981
2988
  get gameCreatorPlayerId(): string;
2982
2989
  get version(): string;
@@ -3375,7 +3382,7 @@ export declare namespace games.jass.logic.client.domain.mechanic {
3375
3382
  getConfig(): games.jass.logic.data.models.table.config.Config;
3376
3383
  getClientConfig(): any/* games.jass.logic.client.data.models.config.ClientConfig */;
3377
3384
  observeConfig(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.data.models.table.config.Config> */;
3378
- observeUsers(): any/* kotlinx.coroutines.flow.Flow<kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>> */;
3385
+ observeUsers(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.GameUsersInfo> */;
3379
3386
  observeClientConfig(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.config.ClientConfig> */;
3380
3387
  observePlayersHandsMetadata(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.PlayersHandsMetadataViewModel> */;
3381
3388
  observeGameLifecycle(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.GameLifecycleViewModel> */;