client_plugin_logic_deb 1.8.455 → 1.8.457

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.z6r(structure);
382
382
  }
383
- initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithDate, WithTime]);
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) {
@@ -2390,19 +2390,20 @@ export declare namespace games.jass.logic.data.models.table.history {
2390
2390
  }
2391
2391
  export declare namespace games.jass.logic.data.models.table.history {
2392
2392
  class RoundHistory {
2393
- constructor(round: number, items: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed: Nullable<Array<string>>, contractState: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners: Nullable<Array<string>>, createdAt: any/* kotlin.time.Instant */);
2393
+ constructor(round: number, items: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed: Nullable<Array<string>>, contractState: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners: Nullable<Array<string>>, failedContractsCount: Nullable<number>, createdAt: any/* kotlin.time.Instant */);
2394
2394
  get round(): number;
2395
2395
  get items(): Array<games.jass.logic.data.models.table.history.RoundHistoryItem>;
2396
2396
  get committed(): Nullable<Array<string>>;
2397
2397
  get contractState(): Nullable<games.jass.logic.data.models.player.state.RoundContractState>;
2398
2398
  get winners(): Nullable<Array<string>>;
2399
+ get failedContractsCount(): Nullable<number>;
2399
2400
  get createdAt(): any/* kotlin.time.Instant */;
2400
2401
  isFailedRoundForPlayer(playerId: string): boolean;
2401
2402
  get contractStateName(): Nullable<string>;
2402
2403
  equals(other: Nullable<any>): boolean;
2403
2404
  hashCode(): number;
2404
2405
  toStringShort(): string;
2405
- copy(round?: number, items?: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed?: Nullable<Array<string>>, contractState?: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners?: Nullable<Array<string>>, createdAt?: any/* kotlin.time.Instant */): games.jass.logic.data.models.table.history.RoundHistory;
2406
+ copy(round?: number, items?: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, committed?: Nullable<Array<string>>, contractState?: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, winners?: Nullable<Array<string>>, failedContractsCount?: Nullable<number>, createdAt?: any/* kotlin.time.Instant */): games.jass.logic.data.models.table.history.RoundHistory;
2406
2407
  toString(): string;
2407
2408
  }
2408
2409
  namespace RoundHistory {
@@ -3225,17 +3226,18 @@ export declare namespace games.jass.logic.client.data.models.vm {
3225
3226
  }
3226
3227
  }
3227
3228
  class RoundEndedHistoryViewModel /* extends games.jass.logic.client.data.models.vm.HistoryViewModel */ {
3228
- constructor(gameId: string, roundNumber: number, items: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, roundContractState: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, roundCommitted: Nullable<Array<string>>, roundWinners: Nullable<Array<string>>, gameEndedHistory: Nullable<games.jass.logic.client.data.models.vm.GameHistoryViewModel>);
3229
+ constructor(gameId: string, roundNumber: number, items: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, roundContractState: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, roundCommitted: Nullable<Array<string>>, roundWinners: Nullable<Array<string>>, failedContractsCount: Nullable<number>, gameEndedHistory: Nullable<games.jass.logic.client.data.models.vm.GameHistoryViewModel>);
3229
3230
  get gameId(): string;
3230
3231
  get roundNumber(): number;
3231
3232
  get items(): Array<games.jass.logic.data.models.table.history.RoundHistoryItem>;
3232
3233
  get roundContractState(): Nullable<games.jass.logic.data.models.player.state.RoundContractState>;
3233
3234
  get roundCommitted(): Nullable<Array<string>>;
3234
3235
  get roundWinners(): Nullable<Array<string>>;
3236
+ get failedContractsCount(): Nullable<number>;
3235
3237
  get gameEndedHistoryViewModel(): Nullable<games.jass.logic.client.data.models.vm.GameHistoryViewModel>;
3236
3238
  equals(other: Nullable<any>): boolean;
3237
3239
  hashCode(): number;
3238
- copy(gameId?: string, roundNumber?: number, items?: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, roundContractState?: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, roundCommitted?: Nullable<Array<string>>, roundWinners?: Nullable<Array<string>>, gameEndedHistory?: Nullable<games.jass.logic.client.data.models.vm.GameHistoryViewModel>): games.jass.logic.client.data.models.vm.RoundEndedHistoryViewModel;
3240
+ copy(gameId?: string, roundNumber?: number, items?: Array<games.jass.logic.data.models.table.history.RoundHistoryItem>, roundContractState?: Nullable<games.jass.logic.data.models.player.state.RoundContractState>, roundCommitted?: Nullable<Array<string>>, roundWinners?: Nullable<Array<string>>, failedContractsCount?: Nullable<number>, gameEndedHistory?: Nullable<games.jass.logic.client.data.models.vm.GameHistoryViewModel>): games.jass.logic.client.data.models.vm.RoundEndedHistoryViewModel;
3239
3241
  toString(): string;
3240
3242
  }
3241
3243
  namespace RoundEndedHistoryViewModel {