cecon-interfaces 1.1.49 → 1.1.51
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.
- package/dist/esm2022/global-settings/entities/global-setting-master.entity.mjs +9 -5
- package/dist/esm2022/global-settings/interfaces/i-global-setting-master.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +8 -4
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/global-settings/entities/global-setting-master.entity.d.ts +6 -2
- package/dist/global-settings/entities/global-setting-master.entity.js +7 -4
- package/dist/global-settings/interfaces/i-global-setting-master.d.ts +5 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -3,15 +3,19 @@ export declare class GlobalSettingMasterEntity implements IGlobalSettingMaster {
|
|
3
3
|
/**
|
4
4
|
* Prazo de dias para o vencimento da fatura.
|
5
5
|
*/
|
6
|
-
|
6
|
+
deleteInvoicesPlacedDays: number;
|
7
|
+
deleteSubscriptionsPlacedDays: number;
|
7
8
|
/**
|
8
9
|
* Dias em que a fatura expira após o vencimento
|
9
10
|
*
|
10
11
|
* */
|
11
|
-
|
12
|
+
subscriptionsCancelDays: number;
|
13
|
+
subscriptionsExpireDays: number;
|
14
|
+
subscriptionsSuspendDays: number;
|
12
15
|
/**
|
13
16
|
* Dias em que a fatura é suspensa após o vencimento
|
14
17
|
*/
|
15
18
|
suspendDays: number;
|
16
19
|
constructor(data?: Partial<GlobalSettingMasterEntity>);
|
20
|
+
billingDays: number;
|
17
21
|
}
|
@@ -2,19 +2,22 @@
|
|
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 (6)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function GlobalSettingMasterEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (6)
|
9
9
|
/**
|
10
10
|
* Prazo de dias para o vencimento da fatura.
|
11
11
|
*/
|
12
|
-
this.
|
12
|
+
this.deleteInvoicesPlacedDays = 10;
|
13
|
+
this.deleteSubscriptionsPlacedDays = 10;
|
13
14
|
/**
|
14
15
|
* Dias em que a fatura expira após o vencimento
|
15
16
|
*
|
16
17
|
* */
|
17
|
-
this.
|
18
|
+
this.subscriptionsCancelDays = 3;
|
19
|
+
this.subscriptionsExpireDays = 1;
|
20
|
+
this.subscriptionsSuspendDays = 1;
|
18
21
|
/**
|
19
22
|
* Dias em que a fatura é suspensa após o vencimento
|
20
23
|
*/
|
@@ -1,5 +1,8 @@
|
|
1
1
|
export interface IGlobalSettingMaster {
|
2
|
-
expireDays: number;
|
3
|
-
suspendDays: number;
|
4
2
|
billingDays: number;
|
3
|
+
deleteInvoicesPlacedDays: number;
|
4
|
+
deleteSubscriptionsPlacedDays: number;
|
5
|
+
subscriptionsCancelDays: number;
|
6
|
+
subscriptionsSuspendDays: number;
|
7
|
+
subscriptionsExpireDays: number;
|
5
8
|
}
|
package/dist/package.json
CHANGED