game_client_logic_deb 1.4.92 → 1.4.93
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 +298 -1
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +6804 -6804
- package/Logic_Debertz-game_client.d.ts +44 -0
- package/Logic_Debertz-game_client.js +2183 -2183
- package/package.json +1 -1
|
@@ -211,6 +211,30 @@ export declare namespace com.logic.utils.logger.game {
|
|
|
211
211
|
};
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
|
+
export declare namespace com.logic.utils.logger.outputs {
|
|
215
|
+
abstract class LogType {
|
|
216
|
+
private constructor();
|
|
217
|
+
static get DEBUG(): com.logic.utils.logger.outputs.LogType & {
|
|
218
|
+
get name(): "DEBUG";
|
|
219
|
+
get ordinal(): 0;
|
|
220
|
+
};
|
|
221
|
+
static get ERROR(): com.logic.utils.logger.outputs.LogType & {
|
|
222
|
+
get name(): "ERROR";
|
|
223
|
+
get ordinal(): 1;
|
|
224
|
+
};
|
|
225
|
+
static get WARN(): com.logic.utils.logger.outputs.LogType & {
|
|
226
|
+
get name(): "WARN";
|
|
227
|
+
get ordinal(): 2;
|
|
228
|
+
};
|
|
229
|
+
static values(): Array<com.logic.utils.logger.outputs.LogType>;
|
|
230
|
+
static valueOf(value: string): com.logic.utils.logger.outputs.LogType;
|
|
231
|
+
get name(): "DEBUG" | "ERROR" | "WARN";
|
|
232
|
+
get ordinal(): 0 | 1 | 2;
|
|
233
|
+
static get Companion(): {
|
|
234
|
+
serializer(): any/* kotlinx.serialization.KSerializer<com.logic.utils.logger.outputs.LogType> */;
|
|
235
|
+
} & any/* kotlinx.serialization.internal.SerializerFactory */;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
214
238
|
export declare namespace com.logic.utils.logger.outputs {
|
|
215
239
|
interface LoggerEnabledTrigger extends com.logic.utils.logger.game.GameLogger {
|
|
216
240
|
enabled: boolean;
|
|
@@ -234,6 +258,7 @@ export declare namespace com.logic.utils.logger.outputs {
|
|
|
234
258
|
}
|
|
235
259
|
export declare namespace com.logic.utils.logger.outputs {
|
|
236
260
|
interface ObservableLoggerOutput extends com.logic.utils.logger.outputs.LoggerOutput, com.logic.utils.logger.outputs.LoggerEnabledTrigger {
|
|
261
|
+
observe(types?: Array<com.logic.utils.logger.outputs.LogType>): any/* kotlinx.coroutines.flow.Flow<com.logic.utils.logger.outputs.LoggerOutputDataDto> */;
|
|
237
262
|
d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
238
263
|
e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
|
|
239
264
|
w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
@@ -242,6 +267,23 @@ export declare namespace com.logic.utils.logger.outputs {
|
|
|
242
267
|
readonly "com.logic.utils.logger.outputs.ObservableLoggerOutput": unique symbol;
|
|
243
268
|
} & com.logic.utils.logger.outputs.LoggerOutput["__doNotUseOrImplementIt"] & com.logic.utils.logger.outputs.LoggerEnabledTrigger["__doNotUseOrImplementIt"];
|
|
244
269
|
}
|
|
270
|
+
class LoggerOutputDataDto {
|
|
271
|
+
constructor(type: com.logic.utils.logger.outputs.LogType, tag: Nullable<string>, message: Nullable<string>, stackTrace: Nullable<string>);
|
|
272
|
+
get type(): com.logic.utils.logger.outputs.LogType;
|
|
273
|
+
get tag(): Nullable<string>;
|
|
274
|
+
get message(): Nullable<string>;
|
|
275
|
+
get stackTrace(): Nullable<string>;
|
|
276
|
+
copy(type?: com.logic.utils.logger.outputs.LogType, tag?: Nullable<string>, message?: Nullable<string>, stackTrace?: Nullable<string>): com.logic.utils.logger.outputs.LoggerOutputDataDto;
|
|
277
|
+
toString(): string;
|
|
278
|
+
hashCode(): number;
|
|
279
|
+
equals(other: Nullable<any>): boolean;
|
|
280
|
+
static LoggerOutputDataDto_init_$Create$(seen1: number, type: Nullable<com.logic.utils.logger.outputs.LogType>, tag: Nullable<string>, message: Nullable<string>, stackTrace: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): com.logic.utils.logger.outputs.LoggerOutputDataDto;
|
|
281
|
+
static get Companion(): {
|
|
282
|
+
serializer(): any/* kotlinx.serialization.KSerializer<com.logic.utils.logger.outputs.LoggerOutputDataDto> */;
|
|
283
|
+
};
|
|
284
|
+
static get $serializer(): {
|
|
285
|
+
} & any/* kotlinx.serialization.internal.GeneratedSerializer<com.logic.utils.logger.outputs.LoggerOutputDataDto> */;
|
|
286
|
+
}
|
|
245
287
|
}
|
|
246
288
|
export declare namespace com.debertz.logic {
|
|
247
289
|
interface GameStoreContract {
|
|
@@ -816,6 +858,8 @@ export declare namespace com.debertz.logic.client.redux.state {
|
|
|
816
858
|
}
|
|
817
859
|
export declare namespace com.debertz.logic.client.utils {
|
|
818
860
|
interface ShowClientErrorLoggerOutput extends com.logic.utils.logger.outputs.LoggerOutput {
|
|
861
|
+
skipWarnings: boolean;
|
|
862
|
+
gameClientProvider: Nullable<() => any/* com.debertz.logic.client.GameClient */>;
|
|
819
863
|
d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|
|
820
864
|
e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
|
|
821
865
|
w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
|