game_client_logic_deb 1.4.95 → 1.5.0

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.
@@ -583,7 +583,8 @@ export declare namespace com.debertz.logic.redux.actions.client.to {
583
583
  get excludePlayers(): Array<string>;
584
584
  get deliveryType(): com.debertz.logic.redux.actions.client.to.ActionDeliveryType;
585
585
  get excludePlayerOrNull(): Nullable<string>;
586
- get excludePlayer(): string;
586
+ get sendToPlayerId(): string;
587
+ get excludePlayerId(): string;
587
588
  equals(other: Nullable<any>): boolean;
588
589
  hashCode(): number;
589
590
  copy(roomId?: string, includePlayers?: Array<string>, excludePlayers?: Array<string>, deliveryType?: com.debertz.logic.redux.actions.client.to.ActionDeliveryType): com.debertz.logic.redux.actions.client.to.ActionDeliveryPayload;
@@ -619,9 +620,6 @@ export declare namespace com.debertz.logic.redux.actions.client.to {
619
620
  abstract class ToClientAction implements com.logic.domain.engine.definitions.Action {
620
621
  protected constructor();
621
622
  abstract get deliveryPayload(): com.debertz.logic.redux.actions.client.to.ActionDeliveryPayload;
622
- get sendToPlayerId(): string;
623
- get sendToPlayerIds(): Array<string>;
624
- get roomId(): string;
625
623
  get actionTag(): string;
626
624
  readonly __doNotUseOrImplementIt: com.logic.domain.engine.definitions.Action["__doNotUseOrImplementIt"];
627
625
  }