cecon-interfaces 1.1.46 → 1.1.47

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,6 +11,10 @@ export declare class GlobalSettingIuguEntity implements IGlobalSettingIugu {
11
11
  * e não em sábados ou domingos.
12
12
  */
13
13
  ensureWorkdayDueDate: boolean;
14
+ /**
15
+ * Prazo de dias para o vencimento da fatura.
16
+ */
17
+ billingDays: number;
14
18
  /**
15
19
  * Expira uma fatura e impossibilita o seu pagamento depois 'x' dias após o vencimento.
16
20
  * Valor enviado precisa estar entre 0 e 30. Se for enviado "0", a fatura ficará
@@ -17,6 +17,10 @@ var GlobalSettingIuguEntity = /** @class */ (function () {
17
17
  * e não em sábados ou domingos.
18
18
  */
19
19
  this.ensureWorkdayDueDate = true;
20
+ /**
21
+ * Prazo de dias para o vencimento da fatura.
22
+ */
23
+ this.billingDays = 10;
20
24
  /**
21
25
  * Expira uma fatura e impossibilita o seu pagamento depois 'x' dias após o vencimento.
22
26
  * Valor enviado precisa estar entre 0 e 30. Se for enviado "0", a fatura ficará
@@ -2,5 +2,6 @@ import { IGlobalSetting } from '../interfaces';
2
2
  import { GlobalSettingIuguEntity } from './global-setting-iugu.entity';
3
3
  export declare class GlobalSettingEntity implements IGlobalSetting {
4
4
  iugu: GlobalSettingIuguEntity;
5
+ billingDays: number;
5
6
  constructor(data?: Partial<GlobalSettingEntity>);
6
7
  }
@@ -8,6 +8,7 @@ var GlobalSettingEntity = /** @class */ (function () {
8
8
  function GlobalSettingEntity(data) {
9
9
  // #region Properties (1)
10
10
  this.iugu = new global_setting_iugu_entity_1.GlobalSettingIuguEntity();
11
+ this.billingDays = 3;
11
12
  if (data) {
12
13
  for (var key in data) {
13
14
  if (data.hasOwnProperty(key) && key in this) {
@@ -8,4 +8,5 @@ export interface IGlobalSettingIugu {
8
8
  perDayInterest: boolean;
9
9
  perDayInterestCents: number;
10
10
  perDayInterestValue: number;
11
+ billingDays: number;
11
12
  }
@@ -1,4 +1,5 @@
1
1
  import { IGlobalSettingIugu } from './i-global-setting-iugu';
2
2
  export interface IGlobalSetting {
3
+ billingDays: number;
3
4
  iugu: IGlobalSettingIugu;
4
5
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.1.46",
3
+ "version": "1.1.47",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",