game_client_logic_deb 1.3.72 → 1.3.75

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.
@@ -128,7 +128,6 @@ export namespace com.logic.data.models.rules {
128
128
  kharkiv(): com.logic.data.models.rules.Rules;
129
129
  klabor(): com.logic.data.models.rules.Rules;
130
130
  debertzCommon(): com.logic.data.models.rules.Rules;
131
- moscow(): com.logic.data.models.rules.Rules;
132
131
  belot(): com.logic.data.models.rules.Rules;
133
132
  custom(): com.logic.data.models.rules.Rules;
134
133
  };
@@ -153,18 +152,14 @@ export namespace com.logic.data.models.rules {
153
152
  get name(): "debertzKharkiv";
154
153
  get ordinal(): 3;
155
154
  };
156
- static get debertzMoscow(): com.logic.data.models.rules.RulesSetType & {
157
- get name(): "debertzMoscow";
158
- get ordinal(): 4;
159
- };
160
155
  static get custom(): com.logic.data.models.rules.RulesSetType & {
161
156
  get name(): "custom";
162
- get ordinal(): 5;
157
+ get ordinal(): 4;
163
158
  };
164
159
  static values(): Array<com.logic.data.models.rules.RulesSetType>;
165
160
  static valueOf(value: string): com.logic.data.models.rules.RulesSetType;
166
- get name(): "belot" | "klabor" | "debertzCommon" | "debertzKharkiv" | "debertzMoscow" | "custom";
167
- get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
161
+ get name(): "belot" | "klabor" | "debertzCommon" | "debertzKharkiv" | "custom";
162
+ get ordinal(): 0 | 1 | 2 | 3 | 4;
168
163
  }
169
164
  }
170
165
  export namespace com.logic.domain.engine.definitions {
@@ -184,7 +179,6 @@ export namespace com.logic.domain.engine.definitions {
184
179
  }
185
180
  export namespace com.logic.redux.actions {
186
181
  interface BufferedAction extends com.logic.domain.engine.definitions.Action {
187
- ignoreBuffer(): boolean;
188
182
  readonly actionTag: string;
189
183
  readonly __doNotUseIt: __doNotImplementIt;
190
184
  }
@@ -527,7 +521,6 @@ export namespace com.debertz.logic.redux.actions.game {
527
521
  export namespace com.debertz.logic.redux.actions.mechanic {
528
522
  abstract class MechanicAction implements com.logic.redux.actions.BufferedAction {
529
523
  protected constructor();
530
- ignoreBuffer(): boolean;
531
524
  get actionTag(): string;
532
525
  readonly __doNotUseIt: __doNotImplementIt;
533
526
  }
@@ -539,7 +532,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
539
532
  toString(): string;
540
533
  hashCode(): number;
541
534
  equals(other: Nullable<any>): boolean;
542
- ignoreBuffer(): boolean;
543
535
  get actionTag(): string;
544
536
  readonly __doNotUseIt: __doNotImplementIt;
545
537
  }
@@ -551,7 +543,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
551
543
  toString(): string;
552
544
  hashCode(): number;
553
545
  equals(other: Nullable<any>): boolean;
554
- ignoreBuffer(): boolean;
555
546
  get actionTag(): string;
556
547
  notValidateWhenFinishing(): boolean;
557
548
  readonly __doNotUseIt: __doNotImplementIt;
@@ -579,13 +570,11 @@ export namespace com.debertz.logic.redux.actions.mechanic {
579
570
  toString(): string;
580
571
  hashCode(): number;
581
572
  equals(other: Nullable<any>): boolean;
582
- ignoreBuffer(): boolean;
583
573
  get actionTag(): string;
584
574
  readonly __doNotUseIt: __doNotImplementIt;
585
575
  }
586
- interface TerminatedAction extends com.logic.redux.actions.BufferedAction {
587
- ignoreBuffer(): boolean;
588
- readonly actionTag: string;
576
+ interface TerminatedAction {
577
+ readonly reason: com.logic.data.models.TerminationGameReason;
589
578
  readonly __doNotUseIt: __doNotImplementIt;
590
579
  }
591
580
  class PlayerConnectionChangedMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
@@ -606,7 +595,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
606
595
  toString(): string;
607
596
  hashCode(): number;
608
597
  equals(other: Nullable<any>): boolean;
609
- ignoreBuffer(): boolean;
610
598
  get actionTag(): string;
611
599
  notValidateWhenFinishing(): boolean;
612
600
  notValidateWhenFinished(): boolean;