client_plugin_logic_deb 1.8.379 → 1.8.380
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 +14 -8
- package/Logic_Debertz-client_plugin.js +1979 -1979
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +549 -548
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +5710 -5710
- package/Logic_Debertz-game_server.js +832 -749
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +4 -4
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -380,7 +380,7 @@
|
|
|
380
380
|
function addFormatStructureForTime(structure) {
|
|
381
381
|
this.q5z(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) {
|
|
@@ -2993,6 +2993,7 @@ export declare namespace games.jass.logic.server.data.models.config {
|
|
|
2993
2993
|
}
|
|
2994
2994
|
export declare namespace games.jass.logic.server.data.models.serializable {
|
|
2995
2995
|
interface ServerStateUpdateDto {
|
|
2996
|
+
readonly roomId: string;
|
|
2996
2997
|
readonly __doNotUseOrImplementIt: {
|
|
2997
2998
|
readonly "games.jass.logic.server.data.models.serializable.ServerStateUpdateDto": unique symbol;
|
|
2998
2999
|
};
|
|
@@ -3007,9 +3008,10 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
3007
3008
|
}
|
|
3008
3009
|
}
|
|
3009
3010
|
class TableStateUpdateDto implements games.jass.logic.server.data.models.serializable.ServerStateUpdateDto {
|
|
3010
|
-
constructor(table: string);
|
|
3011
|
+
constructor(roomId: string, table: string);
|
|
3012
|
+
get roomId(): string;
|
|
3011
3013
|
get table(): string;
|
|
3012
|
-
copy(table?: string): games.jass.logic.server.data.models.serializable.TableStateUpdateDto;
|
|
3014
|
+
copy(roomId?: string, table?: string): games.jass.logic.server.data.models.serializable.TableStateUpdateDto;
|
|
3013
3015
|
toString(): string;
|
|
3014
3016
|
hashCode(): number;
|
|
3015
3017
|
equals(other: Nullable<any>): boolean;
|
|
@@ -3031,9 +3033,10 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
3031
3033
|
}
|
|
3032
3034
|
}
|
|
3033
3035
|
class ActionsStateUpdateDto implements games.jass.logic.server.data.models.serializable.ServerStateUpdateDto {
|
|
3034
|
-
constructor(actions: string);
|
|
3036
|
+
constructor(roomId: string, actions: string);
|
|
3037
|
+
get roomId(): string;
|
|
3035
3038
|
get actions(): string;
|
|
3036
|
-
copy(actions?: string): games.jass.logic.server.data.models.serializable.ActionsStateUpdateDto;
|
|
3039
|
+
copy(roomId?: string, actions?: string): games.jass.logic.server.data.models.serializable.ActionsStateUpdateDto;
|
|
3037
3040
|
toString(): string;
|
|
3038
3041
|
hashCode(): number;
|
|
3039
3042
|
equals(other: Nullable<any>): boolean;
|
|
@@ -3057,14 +3060,16 @@ export declare namespace games.jass.logic.server.data.models.serializable {
|
|
|
3057
3060
|
}
|
|
3058
3061
|
export declare namespace games.jass.logic.server.data.models.state {
|
|
3059
3062
|
interface ServerStateUpdate {
|
|
3063
|
+
readonly roomId: string;
|
|
3060
3064
|
readonly __doNotUseOrImplementIt: {
|
|
3061
3065
|
readonly "games.jass.logic.server.data.models.state.ServerStateUpdate": unique symbol;
|
|
3062
3066
|
};
|
|
3063
3067
|
}
|
|
3064
3068
|
class TableStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
3065
|
-
constructor(table: games.jass.logic.data.models.table.JassTable);
|
|
3069
|
+
constructor(roomId: string, table: games.jass.logic.data.models.table.JassTable);
|
|
3070
|
+
get roomId(): string;
|
|
3066
3071
|
get table(): games.jass.logic.data.models.table.JassTable;
|
|
3067
|
-
copy(table?: games.jass.logic.data.models.table.JassTable): games.jass.logic.server.data.models.state.TableStateUpdate;
|
|
3072
|
+
copy(roomId?: string, table?: games.jass.logic.data.models.table.JassTable): games.jass.logic.server.data.models.state.TableStateUpdate;
|
|
3068
3073
|
toString(): string;
|
|
3069
3074
|
hashCode(): number;
|
|
3070
3075
|
equals(other: Nullable<any>): boolean;
|
|
@@ -3075,9 +3080,10 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
3075
3080
|
const constructor: abstract new () => TableStateUpdate;
|
|
3076
3081
|
}
|
|
3077
3082
|
class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
3078
|
-
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
|
|
3083
|
+
constructor(roomId: string, actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>);
|
|
3084
|
+
get roomId(): string;
|
|
3079
3085
|
get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
|
|
3080
|
-
copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>): games.jass.logic.server.data.models.state.ActionsStateUpdate;
|
|
3086
|
+
copy(roomId?: string, actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>): games.jass.logic.server.data.models.state.ActionsStateUpdate;
|
|
3081
3087
|
toString(): string;
|
|
3082
3088
|
hashCode(): number;
|
|
3083
3089
|
equals(other: Nullable<any>): boolean;
|