game_client_logic_deb 1.8.70 → 1.8.72

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.
@@ -11,10 +11,15 @@ export declare namespace com.logic.data.models {
11
11
  get deleteFilesOnClear(): boolean;
12
12
  get logsDirectoryPath(): Nullable<string>;
13
13
  get fileNameFormat(): string;
14
+ get requireDirectoryPath(): string;
14
15
  copy(fileLogsEnabled?: boolean, deleteFilesOnClear?: boolean, logsDirectoryPath?: Nullable<string>, fileNameFormat?: string): com.logic.data.models.CoreConfig;
15
16
  toString(): string;
16
17
  hashCode(): number;
17
18
  equals(other: Nullable<any>): boolean;
19
+ static get Companion(): {
20
+ getClientEngineTestMode(fileLogsEnabled: boolean, logsDirectoryPath: string, fileNameFormat?: string): com.logic.data.models.CoreConfig;
21
+ formatter(segment: string, gameId: string, roomId: string, userId: string): string;
22
+ };
18
23
  }
19
24
  }
20
25
  export declare namespace com.logic.data.models {
@@ -478,6 +483,9 @@ export declare namespace com.debertz.logic.data.models {
478
483
  toString(): string;
479
484
  hashCode(): number;
480
485
  equals(other: Nullable<any>): boolean;
486
+ static get Companion(): {
487
+ getClientEngineTestMode(): com.debertz.logic.data.models.EngineLogicConfig;
488
+ };
481
489
  }
482
490
  }
483
491
  export declare namespace com.debertz.logic.data.models {
@@ -996,21 +1004,21 @@ export declare namespace com.debertz.logic.redux.actions.mechanic {
996
1004
  interface NavigationMechanicAction extends com.logic.redux.store.definitions.Action {
997
1005
  readonly sceneId: string;
998
1006
  readonly actId: Nullable<string>;
999
- readonly actPayload: Nullable<com.debertz.logic.data.models.scenes.ActData>;
1007
+ readonly actData: Nullable<com.debertz.logic.data.models.scenes.ActData>;
1000
1008
  readonly actionTag: string;
1001
1009
  readonly __doNotUseOrImplementIt: {
1002
1010
  readonly "com.debertz.logic.redux.actions.mechanic.NavigationMechanicAction": unique symbol;
1003
1011
  } & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
1004
1012
  }
1005
1013
  class SceneMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.debertz.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, com.debertz.logic.redux.actions.mechanic.NextPlayerTurnAction */ {
1006
- constructor(sceneId: string, actId?: Nullable<string>, scenePayload?: Nullable<com.debertz.logic.data.models.scenes.SceneData>, actPayload?: Nullable<com.debertz.logic.data.models.scenes.ActData>);
1014
+ constructor(sceneId: string, actId?: Nullable<string>, sceneData?: Nullable<com.debertz.logic.data.models.scenes.SceneData>, actData?: Nullable<com.debertz.logic.data.models.scenes.ActData>);
1007
1015
  get sceneId(): string;
1008
1016
  get actId(): Nullable<string>;
1009
- get scenePayload(): Nullable<com.debertz.logic.data.models.scenes.SceneData>;
1010
- get actPayload(): Nullable<com.debertz.logic.data.models.scenes.ActData>;
1017
+ get sceneData(): Nullable<com.debertz.logic.data.models.scenes.SceneData>;
1018
+ get actData(): Nullable<com.debertz.logic.data.models.scenes.ActData>;
1011
1019
  notValidateWhenFinished(): boolean;
1012
1020
  notValidateWhenFinishing(): boolean;
1013
- copy(sceneId?: string, actId?: Nullable<string>, scenePayload?: Nullable<com.debertz.logic.data.models.scenes.SceneData>, actPayload?: Nullable<com.debertz.logic.data.models.scenes.ActData>): com.debertz.logic.redux.actions.mechanic.SceneMechanicAction;
1021
+ copy(sceneId?: string, actId?: Nullable<string>, sceneData?: Nullable<com.debertz.logic.data.models.scenes.SceneData>, actData?: Nullable<com.debertz.logic.data.models.scenes.ActData>): com.debertz.logic.redux.actions.mechanic.SceneMechanicAction;
1014
1022
  toString(): string;
1015
1023
  hashCode(): number;
1016
1024
  equals(other: Nullable<any>): boolean;
@@ -1101,6 +1109,9 @@ export declare namespace com.debertz.logic.client.data.models.config {
1101
1109
  toString(): string;
1102
1110
  hashCode(): number;
1103
1111
  equals(other: Nullable<any>): boolean;
1112
+ static get Companion(): {
1113
+ getClientEngineTestMode(): com.debertz.logic.client.data.models.config.GameClientConfig;
1114
+ };
1104
1115
  }
1105
1116
  }
1106
1117
  export declare namespace com.debertz.logic.client.data.models.vm {