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