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.
- package/dist/esm2022/global-settings/entities/global-setting-master.entity.mjs +3 -1
- package/dist/esm2022/global-settings/interfaces/i-global-setting-master.mjs +1 -1
- package/dist/esm2022/transaction/entities/transaction.entity.mjs +2 -1
- package/dist/esm2022/transaction/interfaces/i-transaction.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -0
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/global-settings/entities/global-setting-master.entity.d.ts +2 -0
- package/dist/global-settings/entities/global-setting-master.entity.js +2 -0
- package/dist/global-settings/interfaces/i-global-setting-master.d.ts +2 -0
- package/dist/package.json +1 -1
- package/dist/transaction/entities/transaction.entity.d.ts +1 -0
- package/dist/transaction/entities/transaction.entity.js +1 -0
- package/dist/transaction/interfaces/i-transaction.d.ts +1 -0
- package/package.json +1 -1
@@ -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) {
|
package/dist/package.json
CHANGED
@@ -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) {
|