raspberry_games_engine_helpers 1.8.382 → 1.8.383
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.
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
function addFormatStructureForTime(structure) {
|
|
381
381
|
this.h1c(structure);
|
|
382
382
|
}
|
|
383
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
383
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
|
|
384
384
|
initMetadataForClass(Builder_0, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder]);
|
|
385
385
|
initMetadataForClass(LocalDateTimeFormat, 'LocalDateTimeFormat', VOID, AbstractDateTimeFormat);
|
|
386
386
|
function set_fractionOfSecond(value) {
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -216,7 +216,7 @@
|
|
|
216
216
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
|
|
217
217
|
//endregion
|
|
218
218
|
function GameEngineConfig() {
|
|
219
|
-
this.version = '1.8.
|
|
219
|
+
this.version = '1.8.383';
|
|
220
220
|
}
|
|
221
221
|
protoOf(GameEngineConfig).k17 = function () {
|
|
222
222
|
return this.version;
|
|
@@ -2305,6 +2305,14 @@ export declare namespace games.jass.logic.domain.interactors.dealer {
|
|
|
2305
2305
|
}
|
|
2306
2306
|
}
|
|
2307
2307
|
}
|
|
2308
|
+
export declare namespace games.jass.logic.redux {
|
|
2309
|
+
interface AppStatePayload {
|
|
2310
|
+
readonly metadata: Nullable<any>;
|
|
2311
|
+
readonly __doNotUseOrImplementIt: {
|
|
2312
|
+
readonly "games.jass.logic.redux.AppStatePayload": unique symbol;
|
|
2313
|
+
};
|
|
2314
|
+
}
|
|
2315
|
+
}
|
|
2308
2316
|
export declare namespace games.jass.logic.redux.actions {
|
|
2309
2317
|
class ClearAction implements com.logic.redux.store.definitions.Action, com.logic.redux.actions.validation.NotValidateIfGameFinishing, com.logic.redux.actions.validation.NotValidateIfGameFinished {
|
|
2310
2318
|
constructor(transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>);
|
|
@@ -2546,6 +2554,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2546
2554
|
readonly users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2547
2555
|
readonly config: games.jass.logic.data.models.table.config.Config;
|
|
2548
2556
|
readonly gameCreatorPlayerId: string;
|
|
2557
|
+
readonly metadata: Nullable<any>;
|
|
2549
2558
|
readonly __doNotUseOrImplementIt: {
|
|
2550
2559
|
readonly "games.jass.logic.redux.actions.mechanic.FirstMechanicAction": unique symbol;
|
|
2551
2560
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"] & com.logic.redux.actions.IgnoreBufferForAction["__doNotUseOrImplementIt"];
|
|
@@ -2557,7 +2566,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2557
2566
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|
|
2558
2567
|
}
|
|
2559
2568
|
class StartGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction.$metadata$.constructor implements games.jass.logic.redux.actions.mechanic.FirstMechanicAction, games.jass.logic.redux.actions.mechanic.PlayerOrderChangeMechanicAction {
|
|
2560
|
-
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>);
|
|
2569
|
+
constructor(config: games.jass.logic.data.models.table.config.Config, roomId: string, version: string, gameCreatorPlayerId: string, users: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid: Nullable<string> | undefined, spectators: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, metadata: Nullable<any>);
|
|
2561
2570
|
get config(): games.jass.logic.data.models.table.config.Config;
|
|
2562
2571
|
get id(): string;
|
|
2563
2572
|
get version(): string;
|
|
@@ -2565,8 +2574,9 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
2565
2574
|
get users(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2566
2575
|
get aid(): Nullable<string>;
|
|
2567
2576
|
get spectators(): kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>;
|
|
2577
|
+
get metadata(): Nullable<any>;
|
|
2568
2578
|
get usersOrder(): kotlin.collections.KtList<string>;
|
|
2569
|
-
copy(config?: games.jass.logic.data.models.table.config.Config, roomId?: string, version?: string, gameCreatorPlayerId?: string, users?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid?: Nullable<string>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>): games.jass.logic.redux.actions.mechanic.StartGameMechanicAction;
|
|
2579
|
+
copy(config?: games.jass.logic.data.models.table.config.Config, roomId?: string, version?: string, gameCreatorPlayerId?: string, users?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, aid?: Nullable<string>, spectators?: kotlin.collections.KtList<com.logic.data.models.player.GameUserInfo>, metadata?: Nullable<any>): games.jass.logic.redux.actions.mechanic.StartGameMechanicAction;
|
|
2570
2580
|
toString(): string;
|
|
2571
2581
|
hashCode(): number;
|
|
2572
2582
|
equals(other: Nullable<any>): boolean;
|