cecon-interfaces 1.2.38 → 1.2.39
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 +9 -8
- package/dist/esm2022/global-settings/interfaces/i-global-setting-master.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +8 -7
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/global-settings/entities/global-setting-master.entity.d.ts +6 -5
- package/dist/global-settings/entities/global-setting-master.entity.js +8 -7
- package/dist/global-settings/interfaces/i-global-setting-master.d.ts +6 -5
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -1,14 +1,15 @@
|
|
1
1
|
import { IGlobalSettingMaster } from '../interfaces/i-global-setting-master';
|
2
2
|
export declare class GlobalSettingMasterEntity implements IGlobalSettingMaster {
|
3
|
-
billingDays: number;
|
4
3
|
deleteInvoicesPlacedDays: number;
|
5
|
-
|
4
|
+
deleteSubscriptionsCompanyPlacedDays: number;
|
5
|
+
deleteSubscriptionsCustomerPlacedDays: number;
|
6
6
|
subscriptionSuspendedTimes: number;
|
7
|
-
|
7
|
+
subscriptionsCompanyBillingDays: number;
|
8
|
+
subscriptionsCompanyCancelDays: number;
|
9
|
+
subscriptionsCompanyExpireDays: number;
|
10
|
+
subscriptionsCompanySuspendDays: number;
|
8
11
|
subscriptionsCustomerBillingDays: number;
|
9
12
|
subscriptionsCustomerSuspendDays: number;
|
10
|
-
subscriptionsExpireDays: number;
|
11
|
-
subscriptionsSuspendDays: number;
|
12
13
|
waServerApikey: string;
|
13
14
|
waServerBaseUrl: string;
|
14
15
|
waServerGlobalKey: string;
|
@@ -2,19 +2,20 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.GlobalSettingMasterEntity = void 0;
|
4
4
|
var GlobalSettingMasterEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (20)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function GlobalSettingMasterEntity(data) {
|
8
|
-
// #region Properties (
|
9
|
-
this.billingDays = 10;
|
8
|
+
// #region Properties (20)
|
10
9
|
this.deleteInvoicesPlacedDays = 10;
|
11
|
-
this.
|
10
|
+
this.deleteSubscriptionsCompanyPlacedDays = 2;
|
11
|
+
this.deleteSubscriptionsCustomerPlacedDays = 2;
|
12
12
|
this.subscriptionSuspendedTimes = 3;
|
13
|
-
this.
|
13
|
+
this.subscriptionsCompanyBillingDays = 6;
|
14
|
+
this.subscriptionsCompanyCancelDays = 1;
|
15
|
+
this.subscriptionsCompanyExpireDays = 1;
|
16
|
+
this.subscriptionsCompanySuspendDays = 1;
|
14
17
|
this.subscriptionsCustomerBillingDays = 7;
|
15
18
|
this.subscriptionsCustomerSuspendDays = 1;
|
16
|
-
this.subscriptionsExpireDays = 1;
|
17
|
-
this.subscriptionsSuspendDays = 1;
|
18
19
|
this.waServerApikey = '';
|
19
20
|
this.waServerBaseUrl = '';
|
20
21
|
this.waServerGlobalKey = '';
|
@@ -1,13 +1,14 @@
|
|
1
1
|
export interface IGlobalSettingMaster {
|
2
|
-
billingDays: number;
|
3
2
|
deleteInvoicesPlacedDays: number;
|
4
|
-
|
3
|
+
deleteSubscriptionsCompanyPlacedDays: number;
|
4
|
+
deleteSubscriptionsCustomerPlacedDays: number;
|
5
5
|
subscriptionSuspendedTimes: number;
|
6
|
-
|
6
|
+
subscriptionsCompanyBillingDays: number;
|
7
|
+
subscriptionsCompanyCancelDays: number;
|
8
|
+
subscriptionsCompanyExpireDays: number;
|
9
|
+
subscriptionsCompanySuspendDays: number;
|
7
10
|
subscriptionsCustomerBillingDays: number;
|
8
11
|
subscriptionsCustomerSuspendDays: number;
|
9
|
-
subscriptionsExpireDays: number;
|
10
|
-
subscriptionsSuspendDays: number;
|
11
12
|
waServerApikey: string;
|
12
13
|
waServerBaseUrl: string;
|
13
14
|
waServerGlobalKey: string;
|
package/dist/package.json
CHANGED