@mtgame/core 0.1.74 → 0.1.76

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.
@@ -21,4 +21,5 @@ export declare const VolleyballGameLogTypeLocalization: {
21
21
  17: string;
22
22
  21: string;
23
23
  22: string;
24
+ 23: string;
24
25
  };
@@ -18,6 +18,7 @@ export declare class GameBill extends BaseModel {
18
18
  status: GameBillStatuses;
19
19
  price: number;
20
20
  paidDate: Date;
21
+ createdAt: Date;
21
22
  static toFront(data: any): any;
22
23
  static toBack(data: any): any;
23
24
  }
@@ -17,6 +17,7 @@ export declare class OrganizationBill extends BaseModel {
17
17
  sum: number;
18
18
  paymentDate: Date;
19
19
  payTillDate: Date;
20
+ createdAt: Date;
20
21
  static toFront(data: any): any;
21
22
  static toBack(data: any): any;
22
23
  }
@@ -23,7 +23,8 @@ export declare enum VolleyballGameLogType {
23
23
  serve_receive_fault = 19,
24
24
  excellent_serve_receive = 20,
25
25
  timeout = 21,
26
- yellow_card = 22
26
+ yellow_card = 22,
27
+ tie_ball = 23
27
28
  }
28
29
  export declare const SCORE_LOG_TYPES: VolleyballGameLogType[];
29
30
  export declare const FAULT_LOG_TYPES: VolleyballGameLogType[];