game_client_logic_deb 1.4.92 → 1.4.95

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.
@@ -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 {
@@ -535,13 +577,16 @@ export declare namespace com.debertz.logic.redux.actions.client.from {
535
577
  }
536
578
  export declare namespace com.debertz.logic.redux.actions.client.to {
537
579
  class ActionDeliveryPayload {
538
- constructor(roomId: string, sendToPlayerIds: Array<string>, deliveryType: com.debertz.logic.redux.actions.client.to.ActionDeliveryType);
580
+ constructor(roomId: string, includePlayers: Array<string>, excludePlayers: Array<string>, deliveryType: com.debertz.logic.redux.actions.client.to.ActionDeliveryType);
539
581
  get roomId(): string;
540
- get sendToPlayerIds(): Array<string>;
582
+ get includePlayers(): Array<string>;
583
+ get excludePlayers(): Array<string>;
541
584
  get deliveryType(): com.debertz.logic.redux.actions.client.to.ActionDeliveryType;
585
+ get excludePlayerOrNull(): Nullable<string>;
586
+ get excludePlayer(): string;
542
587
  equals(other: Nullable<any>): boolean;
543
588
  hashCode(): number;
544
- copy(roomId?: string, sendToPlayerIds?: Array<string>, deliveryType?: com.debertz.logic.redux.actions.client.to.ActionDeliveryType): com.debertz.logic.redux.actions.client.to.ActionDeliveryPayload;
589
+ 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;
545
590
  toString(): string;
546
591
  static get Companion(): {
547
592
  user(roomId: string, sendToPlayerId: string): com.debertz.logic.redux.actions.client.to.ActionDeliveryPayload;
@@ -553,8 +598,8 @@ export declare namespace com.debertz.logic.redux.actions.client.to {
553
598
  get name(): "ROOM_ALL";
554
599
  get ordinal(): 0;
555
600
  };
556
- static get ROOM_EXCEPT_CURRENT(): com.debertz.logic.redux.actions.client.to.ActionDeliveryType & {
557
- get name(): "ROOM_EXCEPT_CURRENT";
601
+ static get ROOM_EXCEPT_USER(): com.debertz.logic.redux.actions.client.to.ActionDeliveryType & {
602
+ get name(): "ROOM_EXCEPT_USER";
558
603
  get ordinal(): 1;
559
604
  };
560
605
  static get USER(): com.debertz.logic.redux.actions.client.to.ActionDeliveryType & {
@@ -563,7 +608,7 @@ export declare namespace com.debertz.logic.redux.actions.client.to {
563
608
  };
564
609
  static values(): Array<com.debertz.logic.redux.actions.client.to.ActionDeliveryType>;
565
610
  static valueOf(value: string): com.debertz.logic.redux.actions.client.to.ActionDeliveryType;
566
- get name(): "ROOM_ALL" | "ROOM_EXCEPT_CURRENT" | "USER";
611
+ get name(): "ROOM_ALL" | "ROOM_EXCEPT_USER" | "USER";
567
612
  get ordinal(): 0 | 1 | 2;
568
613
  static get Companion(): {
569
614
  serializer(): any/* kotlinx.serialization.KSerializer<com.debertz.logic.redux.actions.client.to.ActionDeliveryType> */;
@@ -715,7 +760,6 @@ export declare interface ParserHelper {
715
760
  encodeFromClientEvent(action: com.debertz.logic.redux.actions.client.from.FromClientAction): string;
716
761
  decodeFromClientEvent(fromPlayerId: string, json: string): com.debertz.logic.redux.actions.client.from.FromClientAction;
717
762
  encodeToClientEvent(action: com.debertz.logic.redux.actions.client.to.ToClientAction): string;
718
- decodeToClientEvent(playerId: string, table: com.debertz.logic.data.models.table.DebertzTable, json: string): com.debertz.logic.redux.actions.client.to.ToClientAction;
719
763
  decodeToClientEventToMechanicAction(playerId: string, engine: com.debertz.logic.GameStoreContract, json: string): com.debertz.logic.redux.actions.mechanic.MechanicAction;
720
764
  readonly __doNotUseOrImplementIt: {
721
765
  readonly ParserHelper: unique symbol;
@@ -816,6 +860,8 @@ export declare namespace com.debertz.logic.client.redux.state {
816
860
  }
817
861
  export declare namespace com.debertz.logic.client.utils {
818
862
  interface ShowClientErrorLoggerOutput extends com.logic.utils.logger.outputs.LoggerOutput {
863
+ skipWarnings: boolean;
864
+ gameClientProvider: Nullable<() => any/* com.debertz.logic.client.GameClient */>;
819
865
  d(tag: Nullable<string>, message: string, payload: Nullable<any>): void;
820
866
  e(tag: Nullable<string>, message: Nullable<string>, exception: Nullable<Error>, payload: Nullable<any>): void;
821
867
  w(tag: Nullable<string>, message: string, payload: Nullable<any>): void;