client_plugin_logic_deb 1.8.388 → 1.8.389
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/Kotlin-DateTime-library-kotlinx-datetime.js +1 -1
- package/Logic_Debertz-client_plugin.d.ts +16 -18
- package/Logic_Debertz-client_plugin.js +4 -4
- package/Logic_Debertz-core.js +10 -11
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +1367 -1352
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +117 -123
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +27 -27
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
function addFormatStructureForTime(structure) {
|
|
381
381
|
this.s5z(structure);
|
|
382
382
|
}
|
|
383
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
383
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
384
384
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
385
385
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
386
386
|
function set_fractionOfSecond(value) {
|
|
@@ -584,16 +584,16 @@ export declare namespace com.logic.redux.actions {
|
|
|
584
584
|
}
|
|
585
585
|
}
|
|
586
586
|
export declare namespace com.logic.redux.actions.validation {
|
|
587
|
-
interface NotValidateIfGameFinished {
|
|
588
|
-
|
|
587
|
+
interface NotValidateIfGameFinished extends com.logic.redux.actions.validation.NotValidateIfGameFinishing {
|
|
588
|
+
ignoreValidation(): boolean;
|
|
589
589
|
readonly __doNotUseOrImplementIt: {
|
|
590
590
|
readonly "com.logic.redux.actions.validation.NotValidateIfGameFinished": unique symbol;
|
|
591
|
-
};
|
|
591
|
+
} & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"];
|
|
592
592
|
}
|
|
593
593
|
}
|
|
594
594
|
export declare namespace com.logic.redux.actions.validation {
|
|
595
595
|
interface NotValidateIfGameFinishing {
|
|
596
|
-
|
|
596
|
+
ignoreValidation(): boolean;
|
|
597
597
|
readonly __doNotUseOrImplementIt: {
|
|
598
598
|
readonly "com.logic.redux.actions.validation.NotValidateIfGameFinishing": unique symbol;
|
|
599
599
|
};
|
|
@@ -1552,6 +1552,7 @@ export declare namespace games.jass.logic.data.models.table {
|
|
|
1552
1552
|
get requestedCardDecks(): kotlin.collections.KtList<any/* games.jass.logic.data.models.table.cards.CardDeck */>;
|
|
1553
1553
|
get gameInfo(): any/* games.jass.logic.data.models.table.GameInfo */;
|
|
1554
1554
|
get gameHistory(): games.jass.logic.data.models.table.history.GameHistory;
|
|
1555
|
+
get roomId(): string;
|
|
1555
1556
|
get gameId(): string;
|
|
1556
1557
|
get gameDuration(): any/* kotlin.time.Duration */;
|
|
1557
1558
|
get gameCreatedAt(): any/* kotlin.time.Instant */;
|
|
@@ -2313,7 +2314,7 @@ export declare namespace games.jass.logic.redux {
|
|
|
2313
2314
|
}
|
|
2314
2315
|
}
|
|
2315
2316
|
export declare namespace games.jass.logic.redux.actions {
|
|
2316
|
-
class ClearAction implements com.logic.redux.store.definitions.Action, com.logic.redux.actions.validation.
|
|
2317
|
+
class ClearAction implements com.logic.redux.store.definitions.Action, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
2317
2318
|
constructor(transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>);
|
|
2318
2319
|
get transition(): Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>;
|
|
2319
2320
|
copy(transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>): games.jass.logic.redux.actions.ClearAction;
|
|
@@ -2321,9 +2322,8 @@ export declare namespace games.jass.logic.redux.actions {
|
|
|
2321
2322
|
hashCode(): number;
|
|
2322
2323
|
equals(other: Nullable<any>): boolean;
|
|
2323
2324
|
get actionTag(): string;
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
2325
|
+
ignoreValidation(): boolean;
|
|
2326
|
+
readonly __doNotUseOrImplementIt: com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
2327
2327
|
}
|
|
2328
2328
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2329
2329
|
namespace ClearAction.$metadata$ {
|
|
@@ -2613,7 +2613,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2613
2613
|
hashCode(): number;
|
|
2614
2614
|
equals(other: Nullable<any>): boolean;
|
|
2615
2615
|
get actionTag(): string;
|
|
2616
|
-
|
|
2616
|
+
ignoreValidation(): boolean;
|
|
2617
2617
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.TerminatedAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"];
|
|
2618
2618
|
}
|
|
2619
2619
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -2644,7 +2644,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2644
2644
|
hashCode(): number;
|
|
2645
2645
|
equals(other: Nullable<any>): boolean;
|
|
2646
2646
|
get actionTag(): string;
|
|
2647
|
-
|
|
2647
|
+
ignoreValidation(): boolean;
|
|
2648
2648
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.TerminatedAction["__doNotUseOrImplementIt"];
|
|
2649
2649
|
}
|
|
2650
2650
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
@@ -2659,22 +2659,21 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2659
2659
|
readonly "games.jass.logic.redux.actions.mechanic.NavigationMechanicAction": unique symbol;
|
|
2660
2660
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
2661
2661
|
}
|
|
2662
|
-
class SceneMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.data.models.player.PlayerIdContract, com.logic.redux.actions.validation.
|
|
2662
|
+
class SceneMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.NavigationMechanicAction, com.logic.redux.store.definitions.Action, com.logic.redux.actions.ReleaseBufferTriggerAction, com.logic.data.models.player.PlayerIdContract, com.logic.redux.actions.validation.NotValidateIfGameFinished/*, games.jass.logic.redux.actions.mechanic.NextPlayerTurnAction, games.jass.logic.redux.actions.mechanic.PlayerTurnIdAnswerAction */ {
|
|
2663
2663
|
constructor(currentTurnPlayerId: Nullable<string>, sceneId: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>);
|
|
2664
2664
|
get sceneId(): string;
|
|
2665
2665
|
get actId(): Nullable<string>;
|
|
2666
2666
|
get sceneData(): Nullable<games.jass.logic.data.models.scenes.SceneData>;
|
|
2667
2667
|
get actData(): Nullable<games.jass.logic.data.models.scenes.ActData>;
|
|
2668
2668
|
get aid(): Nullable<string>;
|
|
2669
|
-
|
|
2670
|
-
notValidateWhenFinishing(): boolean;
|
|
2669
|
+
ignoreValidation(): boolean;
|
|
2671
2670
|
toString(): string;
|
|
2672
2671
|
get playerId(): string;
|
|
2673
2672
|
copy(currentTurnPlayerId?: Nullable<string>, sceneId?: string, actId?: Nullable<string>, sceneData?: Nullable<games.jass.logic.data.models.scenes.SceneData>, actData?: Nullable<games.jass.logic.data.models.scenes.ActData>, aid?: Nullable<string>): games.jass.logic.redux.actions.mechanic.SceneMechanicAction;
|
|
2674
2673
|
hashCode(): number;
|
|
2675
2674
|
equals(other: Nullable<any>): boolean;
|
|
2676
2675
|
get actionTag(): string;
|
|
2677
|
-
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.NavigationMechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.ReleaseBufferTriggerAction["__doNotUseOrImplementIt"] & com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.
|
|
2676
|
+
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.NavigationMechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.ReleaseBufferTriggerAction["__doNotUseOrImplementIt"] & com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
2678
2677
|
}
|
|
2679
2678
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2680
2679
|
namespace SceneMechanicAction.$metadata$ {
|
|
@@ -2688,7 +2687,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2688
2687
|
readonly "games.jass.logic.redux.actions.mechanic.TerminatedAction": unique symbol;
|
|
2689
2688
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
2690
2689
|
}
|
|
2691
|
-
class PlayerConnectionChangedMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements com.logic.redux.actions.validation.
|
|
2690
|
+
class PlayerConnectionChangedMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
2692
2691
|
constructor(playerId: string, state: com.logic.data.models.player.PlayerConnectionState, causeState?: Nullable<com.logic.data.models.player.PlayerConnectionState>, isNoneActivePlayers?: boolean, reconnectUntilTime?: Nullable<string>, aid?: Nullable<string>);
|
|
2693
2692
|
get playerId(): string;
|
|
2694
2693
|
get state(): com.logic.data.models.player.PlayerConnectionState;
|
|
@@ -2703,9 +2702,8 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2703
2702
|
hashCode(): number;
|
|
2704
2703
|
equals(other: Nullable<any>): boolean;
|
|
2705
2704
|
get actionTag(): string;
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
2705
|
+
ignoreValidation(): boolean;
|
|
2706
|
+
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinished["__doNotUseOrImplementIt"];
|
|
2709
2707
|
}
|
|
2710
2708
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
2711
2709
|
namespace PlayerConnectionChangedMechanicAction.$metadata$ {
|
|
@@ -4235,7 +4235,7 @@
|
|
|
4235
4235
|
var tmp$ret$2 = this_0.fp(tmp$ret$1, json);
|
|
4236
4236
|
var ratingInput = mapFromDto_8(tmp$ret$2);
|
|
4237
4237
|
var tmp0_elvis_lhs = ratingInput.f7c_1;
|
|
4238
|
-
var ratingOutputs = this.weg_1.
|
|
4238
|
+
var ratingOutputs = this.weg_1.d9a(ratingInput.c7c_1, ratingInput.d7c_1, ratingInput.e7c_1, tmp0_elvis_lhs == null ? new RatingConfig() : tmp0_elvis_lhs);
|
|
4239
4239
|
var tmp0 = this.xeg_1;
|
|
4240
4240
|
// Inline function 'kotlin.collections.map' call
|
|
4241
4241
|
// Inline function 'kotlin.collections.mapTo' call
|
|
@@ -4254,8 +4254,8 @@
|
|
|
4254
4254
|
var tmp$ret$7 = isInterface(this_4, KSerializer) ? this_4 : THROW_CCE();
|
|
4255
4255
|
return tmp0.ep(tmp$ret$7, destination);
|
|
4256
4256
|
};
|
|
4257
|
-
protoOf(GameEngineUtilsService).
|
|
4258
|
-
var config = this.weg_1.
|
|
4257
|
+
protoOf(GameEngineUtilsService).b9a = function () {
|
|
4258
|
+
var config = this.weg_1.b9a();
|
|
4259
4259
|
var tmp0 = this.xeg_1;
|
|
4260
4260
|
// Inline function 'kotlinx.serialization.json.Json.encodeToString' call
|
|
4261
4261
|
var value = mapToDto_0(config);
|
|
@@ -4295,7 +4295,7 @@
|
|
|
4295
4295
|
tmp = Companion_instance_13.aeh(data);
|
|
4296
4296
|
break;
|
|
4297
4297
|
case 'getLeaguesConfig':
|
|
4298
|
-
var data_0 = _this__u8e3s4.
|
|
4298
|
+
var data_0 = _this__u8e3s4.b9a();
|
|
4299
4299
|
tmp = Companion_instance_13.aeh(data_0);
|
|
4300
4300
|
break;
|
|
4301
4301
|
case 'getAvailableLeaguesForUser':
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -355,15 +355,15 @@
|
|
|
355
355
|
initMetadataForClass(TimerAction, 'TimerAction', VOID, VOID, [Action]);
|
|
356
356
|
initMetadataForClass(StartTimerAction, 'StartTimerAction', VOID, TimerAction);
|
|
357
357
|
initMetadataForClass(TimerType, 'TimerType', VOID, Enum);
|
|
358
|
-
function
|
|
358
|
+
function ignoreValidation() {
|
|
359
359
|
return true;
|
|
360
360
|
}
|
|
361
361
|
initMetadataForInterface(NotValidateIfGameFinishing, 'NotValidateIfGameFinishing');
|
|
362
|
-
function
|
|
362
|
+
function ignoreValidation_0() {
|
|
363
363
|
return true;
|
|
364
364
|
}
|
|
365
|
-
initMetadataForInterface(NotValidateIfGameFinished, 'NotValidateIfGameFinished');
|
|
366
|
-
initMetadataForClass(StopTimerAction, 'StopTimerAction', VOID, TimerAction, [TimerAction,
|
|
365
|
+
initMetadataForInterface(NotValidateIfGameFinished, 'NotValidateIfGameFinished', VOID, VOID, [NotValidateIfGameFinishing]);
|
|
366
|
+
initMetadataForClass(StopTimerAction, 'StopTimerAction', VOID, TimerAction, [TimerAction, NotValidateIfGameFinished]);
|
|
367
367
|
initMetadataForClass(TimerTickAction, 'TimerTickAction', VOID, TimerAction, [TimerAction, NotValidateIfGameFinished]);
|
|
368
368
|
initMetadataForLambda(timerMiddleware$o$handle$slambda$slambda, CoroutineImpl, VOID, [1]);
|
|
369
369
|
initMetadataForLambda(timerMiddleware$o$handle$slambda$slambda_1, CoroutineImpl, VOID, [1]);
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
426
426
|
//endregion
|
|
427
427
|
function GameEngineConfig() {
|
|
428
|
-
this.version = '1.8.
|
|
428
|
+
this.version = '1.8.389';
|
|
429
429
|
}
|
|
430
430
|
protoOf(GameEngineConfig).g3y = function () {
|
|
431
431
|
return this.version;
|
|
@@ -5286,8 +5286,8 @@
|
|
|
5286
5286
|
this.w6n_1 = timerTag;
|
|
5287
5287
|
this.x6n_1 = type;
|
|
5288
5288
|
}
|
|
5289
|
-
protoOf(TimerTickAction).
|
|
5290
|
-
return this.w6n_1.
|
|
5289
|
+
protoOf(TimerTickAction).ignoreValidation = function () {
|
|
5290
|
+
return this.w6n_1.ignoreValidation();
|
|
5291
5291
|
};
|
|
5292
5292
|
protoOf(TimerTickAction).toString = function () {
|
|
5293
5293
|
return 'TimerTickAction(timerTag=' + toString_0(this.w6n_1) + ', type=' + this.x6n_1.toString() + ')';
|
|
@@ -7823,8 +7823,7 @@
|
|
|
7823
7823
|
defineProp(protoOf(StartTimerAction), 'actionTag', function () {
|
|
7824
7824
|
return this.m6n();
|
|
7825
7825
|
});
|
|
7826
|
-
protoOf(StopTimerAction).
|
|
7827
|
-
protoOf(StopTimerAction).notValidateWhenFinished = notValidateWhenFinished;
|
|
7826
|
+
protoOf(StopTimerAction).ignoreValidation = ignoreValidation_0;
|
|
7828
7827
|
defineProp(protoOf(StopTimerAction), 'actionTag', function () {
|
|
7829
7828
|
return this.m6n();
|
|
7830
7829
|
});
|
|
@@ -8084,9 +8083,9 @@
|
|
|
8084
8083
|
_.$_$.h2 = JobsProvider;
|
|
8085
8084
|
_.$_$.i2 = FileSystem;
|
|
8086
8085
|
_.$_$.j2 = LoggerFactory;
|
|
8087
|
-
_.$_$.k2 =
|
|
8086
|
+
_.$_$.k2 = ignoreValidation_0;
|
|
8088
8087
|
_.$_$.l2 = NotValidateIfGameFinished;
|
|
8089
|
-
_.$_$.m2 =
|
|
8088
|
+
_.$_$.m2 = ignoreValidation;
|
|
8090
8089
|
_.$_$.n2 = NotValidateIfGameFinishing;
|
|
8091
8090
|
_.$_$.o2 = BufferedAction;
|
|
8092
8091
|
_.$_$.p2 = IgnoreBufferForAction;
|