client_plugin_logic_deb 1.8.493 → 1.8.496

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
  }