@mtgame/core 1.0.7 → 1.0.9

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.
@@ -11,6 +11,7 @@ export declare const CountryLocalization: {
11
11
  CHN: string;
12
12
  EGY: string;
13
13
  IRN: string;
14
+ GRC: string;
14
15
  };
15
16
  "en-US": {
16
17
  RU: string;
@@ -24,5 +25,6 @@ export declare const CountryLocalization: {
24
25
  CHN: string;
25
26
  EGY: string;
26
27
  IRN: string;
28
+ GRC: string;
27
29
  };
28
30
  };
package/models/city.d.ts CHANGED
@@ -10,7 +10,8 @@ export declare enum Country {
10
10
  AZ = "AZ",
11
11
  CHN = "CHN",
12
12
  EGY = "EGY",
13
- IRN = "IRN"
13
+ IRN = "IRN",
14
+ GRC = "GRC"
14
15
  }
15
16
  export declare class City extends BaseModel {
16
17
  id: number;
@@ -156,6 +156,7 @@ export declare class Tournament extends BaseModel {
156
156
  seasonId: number;
157
157
  gamePrice: number;
158
158
  seasonTournamentId: number;
159
+ sort: number;
159
160
  getEmptyLogoClass(): string;
160
161
  static toFront(data: any): any;
161
162
  static toBack(data: any): any;