client_plugin_logic_deb 1.8.496 → 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.
@@ -2922,6 +2922,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2922
2922
  readonly id: string;
2923
2923
  readonly version: string;
2924
2924
  readonly users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2925
+ readonly spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2925
2926
  readonly config: games.jass.logic.data.models.table.config.Config;
2926
2927
  readonly gameCreatorPlayerId: string;
2927
2928
  readonly __doNotUseOrImplementIt: {
@@ -2982,6 +2983,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
2982
2983
  get aid(): Nullable<string>;
2983
2984
  get id(): string;
2984
2985
  get users(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2986
+ get spectators(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
2985
2987
  get usersOrder(): Array<string>;
2986
2988
  get gameCreatorPlayerId(): string;
2987
2989
  get version(): string;
@@ -3380,7 +3382,7 @@ export declare namespace games.jass.logic.client.domain.mechanic {
3380
3382
  getConfig(): games.jass.logic.data.models.table.config.Config;
3381
3383
  getClientConfig(): any/* games.jass.logic.client.data.models.config.ClientConfig */;
3382
3384
  observeConfig(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.data.models.table.config.Config> */;
3383
- 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> */;
3384
3386
  observeClientConfig(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.config.ClientConfig> */;
3385
3387
  observePlayersHandsMetadata(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.PlayersHandsMetadataViewModel> */;
3386
3388
  observeGameLifecycle(): any/* kotlinx.coroutines.flow.Flow<games.jass.logic.client.data.models.GameLifecycleViewModel> */;