game_client_logic_deb 1.4.91 → 1.4.92
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.
- package/Logic_Debertz-core.js +295 -279
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +6702 -6702
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +52 -0
- package/Logic_Debertz-game_client.js +2205 -2196
- package/Logic_Debertz-game_client.js.map +1 -1
- package/package.json +1 -1
|
@@ -194,6 +194,16 @@ export declare namespace com.logic.redux.actions.validation {
|
|
|
194
194
|
};
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
|
+
export declare namespace com.logic.utils.logger.game {
|
|
198
|
+
interface GameLogger extends com.logic.utils.logger.outputs.LoggerOutput {
|
|
199
|
+
d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
200
|
+
e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
|
|
201
|
+
w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
202
|
+
readonly __doNotUseOrImplementIt: {
|
|
203
|
+
readonly "com.logic.utils.logger.game.GameLogger": unique symbol;
|
|
204
|
+
} & com.logic.utils.logger.outputs.LoggerOutput["__doNotUseOrImplementIt"];
|
|
205
|
+
}
|
|
206
|
+
}
|
|
197
207
|
export declare namespace com.logic.utils.logger.game {
|
|
198
208
|
interface LoggerPayload {
|
|
199
209
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -201,6 +211,38 @@ export declare namespace com.logic.utils.logger.game {
|
|
|
201
211
|
};
|
|
202
212
|
}
|
|
203
213
|
}
|
|
214
|
+
export declare namespace com.logic.utils.logger.outputs {
|
|
215
|
+
interface LoggerEnabledTrigger extends com.logic.utils.logger.game.GameLogger {
|
|
216
|
+
enabled: boolean;
|
|
217
|
+
d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
218
|
+
e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
|
|
219
|
+
w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
220
|
+
readonly __doNotUseOrImplementIt: {
|
|
221
|
+
readonly "com.logic.utils.logger.outputs.LoggerEnabledTrigger": unique symbol;
|
|
222
|
+
} & com.logic.utils.logger.game.GameLogger["__doNotUseOrImplementIt"];
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
export declare namespace com.logic.utils.logger.outputs {
|
|
226
|
+
interface LoggerOutput {
|
|
227
|
+
d(tag?: Nullable<string>, message: string, payload?: Nullable<any>): void;
|
|
228
|
+
e(tag?: Nullable<string>, message?: Nullable<string>, exception?: Nullable<Error>, payload?: Nullable<any>): void;
|
|
229
|
+
w(tag?: Nullable<string>, message: string, payload?: Nullable<any>): void;
|
|
230
|
+
readonly __doNotUseOrImplementIt: {
|
|
231
|
+
readonly "com.logic.utils.logger.outputs.LoggerOutput": unique symbol;
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
export declare namespace com.logic.utils.logger.outputs {
|
|
236
|
+
interface ObservableLoggerOutput extends com.logic.utils.logger.outputs.LoggerOutput, com.logic.utils.logger.outputs.LoggerEnabledTrigger {
|
|
237
|
+
d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
238
|
+
e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
|
|
239
|
+
w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
240
|
+
enabled: boolean;
|
|
241
|
+
readonly __doNotUseOrImplementIt: {
|
|
242
|
+
readonly "com.logic.utils.logger.outputs.ObservableLoggerOutput": unique symbol;
|
|
243
|
+
} & com.logic.utils.logger.outputs.LoggerOutput["__doNotUseOrImplementIt"] & com.logic.utils.logger.outputs.LoggerEnabledTrigger["__doNotUseOrImplementIt"];
|
|
244
|
+
}
|
|
245
|
+
}
|
|
204
246
|
export declare namespace com.debertz.logic {
|
|
205
247
|
interface GameStoreContract {
|
|
206
248
|
readonly id: string;
|
|
@@ -772,6 +814,16 @@ export declare namespace com.debertz.logic.client.redux.state {
|
|
|
772
814
|
equals(other: Nullable<any>): boolean;
|
|
773
815
|
}
|
|
774
816
|
}
|
|
817
|
+
export declare namespace com.debertz.logic.client.utils {
|
|
818
|
+
interface ShowClientErrorLoggerOutput extends com.logic.utils.logger.outputs.LoggerOutput {
|
|
819
|
+
d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
820
|
+
e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
|
|
821
|
+
w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
822
|
+
readonly __doNotUseOrImplementIt: {
|
|
823
|
+
readonly "com.debertz.logic.client.utils.ShowClientErrorLoggerOutput": unique symbol;
|
|
824
|
+
} & com.logic.utils.logger.outputs.LoggerOutput["__doNotUseOrImplementIt"];
|
|
825
|
+
}
|
|
826
|
+
}
|
|
775
827
|
export declare interface GameClientEngineController {
|
|
776
828
|
readonly parser: ParserHelper;
|
|
777
829
|
setEnableLogger(enabled: boolean): void;
|