game_client_logic_deb 1.3.73 → 1.3.76
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/Kaverit-kaverit-js-ir.js +60 -60
- package/Kodein-kodein-di-js-ir.js +505 -505
- package/Kotlin-DateTime-library-kotlinx-datetime-js-ir.js +36 -36
- package/Logic_Debertz-core.js +1072 -1077
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +8360 -8387
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +2 -10
- package/Logic_Debertz-game_client.js +3255 -3057
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core-js-ir.js +1724 -1724
- package/kotlinx-serialization-kotlinx-serialization-json-js-ir.js +1225 -1225
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +67 -163
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/package.json +1 -1
- package/uuid-js-ir.js +13 -13
|
@@ -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
|
};
|
|
@@ -180,7 +179,6 @@ export namespace com.logic.domain.engine.definitions {
|
|
|
180
179
|
}
|
|
181
180
|
export namespace com.logic.redux.actions {
|
|
182
181
|
interface BufferedAction extends com.logic.domain.engine.definitions.Action {
|
|
183
|
-
ignoreBuffer(): boolean;
|
|
184
182
|
readonly actionTag: string;
|
|
185
183
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
186
184
|
}
|
|
@@ -523,7 +521,6 @@ export namespace com.debertz.logic.redux.actions.game {
|
|
|
523
521
|
export namespace com.debertz.logic.redux.actions.mechanic {
|
|
524
522
|
abstract class MechanicAction implements com.logic.redux.actions.BufferedAction {
|
|
525
523
|
protected constructor();
|
|
526
|
-
ignoreBuffer(): boolean;
|
|
527
524
|
get actionTag(): string;
|
|
528
525
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
529
526
|
}
|
|
@@ -535,7 +532,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
535
532
|
toString(): string;
|
|
536
533
|
hashCode(): number;
|
|
537
534
|
equals(other: Nullable<any>): boolean;
|
|
538
|
-
ignoreBuffer(): boolean;
|
|
539
535
|
get actionTag(): string;
|
|
540
536
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
541
537
|
}
|
|
@@ -547,7 +543,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
547
543
|
toString(): string;
|
|
548
544
|
hashCode(): number;
|
|
549
545
|
equals(other: Nullable<any>): boolean;
|
|
550
|
-
ignoreBuffer(): boolean;
|
|
551
546
|
get actionTag(): string;
|
|
552
547
|
notValidateWhenFinishing(): boolean;
|
|
553
548
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
@@ -575,13 +570,11 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
575
570
|
toString(): string;
|
|
576
571
|
hashCode(): number;
|
|
577
572
|
equals(other: Nullable<any>): boolean;
|
|
578
|
-
ignoreBuffer(): boolean;
|
|
579
573
|
get actionTag(): string;
|
|
580
574
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
581
575
|
}
|
|
582
|
-
interface TerminatedAction
|
|
583
|
-
|
|
584
|
-
readonly actionTag: string;
|
|
576
|
+
interface TerminatedAction {
|
|
577
|
+
readonly reason: com.logic.data.models.TerminationGameReason;
|
|
585
578
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
586
579
|
}
|
|
587
580
|
class PlayerConnectionChangedMechanicAction extends com.debertz.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
@@ -602,7 +595,6 @@ export namespace com.debertz.logic.redux.actions.mechanic {
|
|
|
602
595
|
toString(): string;
|
|
603
596
|
hashCode(): number;
|
|
604
597
|
equals(other: Nullable<any>): boolean;
|
|
605
|
-
ignoreBuffer(): boolean;
|
|
606
598
|
get actionTag(): string;
|
|
607
599
|
notValidateWhenFinishing(): boolean;
|
|
608
600
|
notValidateWhenFinished(): boolean;
|