raspberry_games_engine_helpers 1.8.334 → 1.8.336
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.
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
function addFormatStructureForTime(structure) {
|
|
325
325
|
this.c1l(structure);
|
|
326
326
|
}
|
|
327
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
327
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
328
328
|
function offsetHours$default(padding, $super) {
|
|
329
329
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
330
330
|
var tmp;
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
|
|
216
216
|
//endregion
|
|
217
217
|
function GameEngineConfig() {
|
|
218
|
-
this.version = '1.8.
|
|
218
|
+
this.version = '1.8.336';
|
|
219
219
|
}
|
|
220
220
|
protoOf(GameEngineConfig).o25 = function () {
|
|
221
221
|
return this.version;
|
|
@@ -778,7 +778,7 @@ export declare namespace games.jass.logic.data.models.player.achievements {
|
|
|
778
778
|
constructor(oldRating: number, newRating: number);
|
|
779
779
|
get oldRating(): number;
|
|
780
780
|
get newRating(): number;
|
|
781
|
-
get
|
|
781
|
+
get isRatingUpOrNull(): Nullable<boolean>;
|
|
782
782
|
copy(oldRating?: number, newRating?: number): games.jass.logic.data.models.player.achievements.Achievements;
|
|
783
783
|
toString(): string;
|
|
784
784
|
hashCode(): number;
|
|
@@ -1394,8 +1394,9 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1394
1394
|
}
|
|
1395
1395
|
export declare namespace games.jass.logic.data.models.table.config {
|
|
1396
1396
|
class ConfigLite {
|
|
1397
|
-
constructor(mode: games.jass.logic.data.models.table.config.RoomMode, players: games.jass.logic.data.models.table.config.PlayersMode, points: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis: number, rulesPreset: games.jass.logic.data.models.rules.RulesSetType, isPrivate: boolean, isChatEnabled: boolean, isBotsEnabled: boolean, rules: Nullable<games.jass.logic.data.models.rules.Rules>);
|
|
1397
|
+
constructor(mode: games.jass.logic.data.models.table.config.RoomMode, league: Nullable<games.jass.logic.data.models.leagues.League>, players: games.jass.logic.data.models.table.config.PlayersMode, points: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis: number, rulesPreset: games.jass.logic.data.models.rules.RulesSetType, isPrivate: boolean, isChatEnabled: boolean, isBotsEnabled: boolean, rules: Nullable<games.jass.logic.data.models.rules.Rules>);
|
|
1398
1398
|
get mode(): games.jass.logic.data.models.table.config.RoomMode;
|
|
1399
|
+
get league(): Nullable<games.jass.logic.data.models.leagues.League>;
|
|
1399
1400
|
get players(): games.jass.logic.data.models.table.config.PlayersMode;
|
|
1400
1401
|
get points(): games.jass.logic.data.models.table.config.PointsMode;
|
|
1401
1402
|
get timeoutTimeMillis(): number;
|
|
@@ -1404,7 +1405,7 @@ export declare namespace games.jass.logic.data.models.table.config {
|
|
|
1404
1405
|
get isChatEnabled(): boolean;
|
|
1405
1406
|
get isBotsEnabled(): boolean;
|
|
1406
1407
|
get rules(): Nullable<games.jass.logic.data.models.rules.Rules>;
|
|
1407
|
-
copy(mode?: games.jass.logic.data.models.table.config.RoomMode, players?: games.jass.logic.data.models.table.config.PlayersMode, points?: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis?: number, rulesPreset?: games.jass.logic.data.models.rules.RulesSetType, isPrivate?: boolean, isChatEnabled?: boolean, isBotsEnabled?: boolean, rules?: Nullable<games.jass.logic.data.models.rules.Rules>): games.jass.logic.data.models.table.config.ConfigLite;
|
|
1408
|
+
copy(mode?: games.jass.logic.data.models.table.config.RoomMode, league?: Nullable<games.jass.logic.data.models.leagues.League>, players?: games.jass.logic.data.models.table.config.PlayersMode, points?: games.jass.logic.data.models.table.config.PointsMode, timeoutTimeMillis?: number, rulesPreset?: games.jass.logic.data.models.rules.RulesSetType, isPrivate?: boolean, isChatEnabled?: boolean, isBotsEnabled?: boolean, rules?: Nullable<games.jass.logic.data.models.rules.Rules>): games.jass.logic.data.models.table.config.ConfigLite;
|
|
1408
1409
|
toString(): string;
|
|
1409
1410
|
hashCode(): number;
|
|
1410
1411
|
equals(other: Nullable<any>): boolean;
|