client_plugin_logic_deb 1.8.336 → 1.8.340
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 +2 -2
- package/Logic_Debertz-client_plugin.d.ts +9 -6
- package/Logic_Debertz-client_plugin.js +2070 -2070
- package/Logic_Debertz-core.js +121 -120
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +11143 -11106
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +5816 -5781
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +821 -734
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +6 -6
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +7 -7
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
function addFormatStructureForTime(structure) {
|
|
325
325
|
this.v5d(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;
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
return tmp;
|
|
378
378
|
}
|
|
379
379
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
380
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
380
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithDate, WithTime, WithUtcOffset]);
|
|
381
381
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
382
382
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
383
383
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
|
@@ -516,14 +516,15 @@ export declare namespace games.jass.logic {
|
|
|
516
516
|
}
|
|
517
517
|
export declare namespace games.jass.logic.data.models {
|
|
518
518
|
class DealerConfig {
|
|
519
|
-
constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean);
|
|
519
|
+
constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean);
|
|
520
520
|
get dealerStrategy(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
521
521
|
get isBotsAreHappy(): boolean;
|
|
522
522
|
get cards(): Nullable<Array<number>>;
|
|
523
|
+
get shuffleCardsPlayerNumber(): Nullable<number>;
|
|
523
524
|
get shouldDisplayDealerStrategy(): boolean;
|
|
524
525
|
equals(other: Nullable<any>): boolean;
|
|
525
526
|
hashCode(): number;
|
|
526
|
-
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
527
|
+
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
527
528
|
toString(): string;
|
|
528
529
|
static get Companion(): {
|
|
529
530
|
getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;
|
|
@@ -2213,18 +2214,20 @@ export declare namespace games.jass.logic.server.data.models.state {
|
|
|
2213
2214
|
};
|
|
2214
2215
|
}
|
|
2215
2216
|
class TableStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2216
|
-
constructor(table: games.jass.logic.data.models.table.JassTable);
|
|
2217
|
+
constructor(table: games.jass.logic.data.models.table.JassTable, tableJson: string);
|
|
2217
2218
|
get table(): games.jass.logic.data.models.table.JassTable;
|
|
2218
|
-
|
|
2219
|
+
get tableJson(): string;
|
|
2220
|
+
copy(table?: games.jass.logic.data.models.table.JassTable, tableJson?: string): games.jass.logic.server.data.models.state.TableStateUpdate;
|
|
2219
2221
|
toString(): string;
|
|
2220
2222
|
hashCode(): number;
|
|
2221
2223
|
equals(other: Nullable<any>): boolean;
|
|
2222
2224
|
readonly __doNotUseOrImplementIt: games.jass.logic.server.data.models.state.ServerStateUpdate["__doNotUseOrImplementIt"];
|
|
2223
2225
|
}
|
|
2224
2226
|
class ActionsStateUpdate implements games.jass.logic.server.data.models.state.ServerStateUpdate {
|
|
2225
|
-
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction
|
|
2227
|
+
constructor(actions: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson: string);
|
|
2226
2228
|
get actions(): kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>;
|
|
2227
|
-
|
|
2229
|
+
get actionsJson(): string;
|
|
2230
|
+
copy(actions?: kotlin.collections.KtList<games.jass.logic.redux.actions.client.from.FromClientAction>, actionsJson?: string): games.jass.logic.server.data.models.state.ActionsStateUpdate;
|
|
2228
2231
|
toString(): string;
|
|
2229
2232
|
hashCode(): number;
|
|
2230
2233
|
equals(other: Nullable<any>): boolean;
|