cecon-interfaces 1.5.36 → 1.5.38

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,5 +16,7 @@ export declare class GlobalSettingMasterEntity implements IGlobalSettingMaster {
16
16
  waServerInstanceName: string;
17
17
  waServerNumber: string;
18
18
  id: string;
19
+ billingDays: number;
20
+ resumeVersion: string;
19
21
  constructor(data?: Partial<GlobalSettingMasterEntity>);
20
22
  }
@@ -22,6 +22,8 @@ var GlobalSettingMasterEntity = /** @class */ (function () {
22
22
  this.waServerInstanceName = '';
23
23
  this.waServerNumber = '';
24
24
  this.id = '';
25
+ this.billingDays = 6;
26
+ this.resumeVersion = '1.0.0';
25
27
  if (data) {
26
28
  for (var key in data) {
27
29
  if (data.hasOwnProperty(key) && key in this) {
@@ -15,4 +15,6 @@ export interface IGlobalSettingMaster {
15
15
  waServerInstanceName: string;
16
16
  id: string;
17
17
  waServerNumber: string;
18
+ billingDays: number;
19
+ resumeVersion: string;
18
20
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.36",
3
+ "version": "1.5.38",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,5 +37,6 @@ export declare class TransactionEntity implements ITransaction {
37
37
  desenfilaInfo: IDesenfilaInfo | null;
38
38
  natiInfo: INatiInfo | null;
39
39
  mobyoInfo: IMobyoInfo | null;
40
+ resumeVersion: string;
40
41
  constructor(data?: Partial<TransactionEntity>);
41
42
  }
@@ -39,6 +39,7 @@ var TransactionEntity = /** @class */ (function () {
39
39
  this.desenfilaInfo = new general_1.DesenfilaInfoEntity();
40
40
  this.natiInfo = new general_1.NatiInfoEntity();
41
41
  this.mobyoInfo = new general_1.MobyoInfoEntity();
42
+ this.resumeVersion = '';
42
43
  if (data) {
43
44
  for (var key in data) {
44
45
  if (data.hasOwnProperty(key) && key in this) {
@@ -36,4 +36,5 @@ export interface ITransaction {
36
36
  transactionAmountRefunded: number;
37
37
  transactionStatus: ETransactionStatus;
38
38
  updatedAt: Date;
39
+ resumeVersion: string;
39
40
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.5.36",
3
+ "version": "1.5.38",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",