grapp-common-se 0.6.60 → 0.6.63

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.
@@ -103,7 +103,9 @@ export declare enum SuccessCallTypeStatus {
103
103
  }
104
104
  export declare enum TransferStatus {
105
105
  TRANSFERRED = 0,
106
- CANCELED = 1
106
+ CANCELED = 1,
107
+ OFFERED = 2,
108
+ RETURN = 3
107
109
  }
108
110
  export declare enum OrderStatus {
109
111
  APROOVED = 0,
@@ -16,6 +16,8 @@ var TransferStatus;
16
16
  (function (TransferStatus) {
17
17
  TransferStatus[TransferStatus["TRANSFERRED"] = 0] = "TRANSFERRED";
18
18
  TransferStatus[TransferStatus["CANCELED"] = 1] = "CANCELED";
19
+ TransferStatus[TransferStatus["OFFERED"] = 2] = "OFFERED";
20
+ TransferStatus[TransferStatus["RETURN"] = 3] = "RETURN";
19
21
  })(TransferStatus = exports.TransferStatus || (exports.TransferStatus = {}));
20
22
  var OrderStatus;
21
23
  (function (OrderStatus) {
@@ -312,15 +312,15 @@ export interface Contract {
312
312
  code?: string;
313
313
  tag?: string;
314
314
  active?: boolean;
315
- topContractMoney?: number;
315
+ topContractMoney?: string;
316
316
  initialDate?: Timestamp;
317
317
  finalDate?: Timestamp;
318
318
  monthlyCheck?: boolean;
319
- topMonthly?: number;
320
- monthlyAlertPercent?: number;
319
+ topMonthly?: string;
320
+ monthlyAlertPercent?: string;
321
321
  weeklyCheck?: boolean;
322
- topWeekly?: number;
323
- weeklyAlertPercent?: number;
322
+ topWeekly?: string;
323
+ weeklyAlertPercent?: string;
324
324
  priceControl?: boolean;
325
325
  }
326
326
  export interface epsGroup {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.60",
3
+ "version": "0.6.63",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {