cecon-interfaces 1.1.49 → 1.1.50
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 +5 -3
- package/dist/esm2022/global-settings/interfaces/i-global-setting-master.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +4 -2
- 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 +4 -2
- package/dist/global-settings/interfaces/i-global-setting-master.d.ts +2 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -4,6 +4,8 @@ export declare class GlobalSettingMasterEntity implements IGlobalSettingMaster {
|
|
4
4
|
* Prazo de dias para o vencimento da fatura.
|
5
5
|
*/
|
6
6
|
billingDays: number;
|
7
|
+
deleteInvoicesPlacedDays: number;
|
8
|
+
deleteSubscriptionsPlacedDays: number;
|
7
9
|
/**
|
8
10
|
* Dias em que a fatura expira após o vencimento
|
9
11
|
*
|
@@ -2,14 +2,16 @@
|
|
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 (5)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function GlobalSettingMasterEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (5)
|
9
9
|
/**
|
10
10
|
* Prazo de dias para o vencimento da fatura.
|
11
11
|
*/
|
12
12
|
this.billingDays = 10;
|
13
|
+
this.deleteInvoicesPlacedDays = 10;
|
14
|
+
this.deleteSubscriptionsPlacedDays = 10;
|
13
15
|
/**
|
14
16
|
* Dias em que a fatura expira após o vencimento
|
15
17
|
*
|
package/dist/package.json
CHANGED