cecon-interfaces 1.2.8 → 1.2.9
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-iugu.entity.mjs +6 -3
- package/dist/esm2022/global-settings/interfaces/i-global-setting-iugu.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +5 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/global-settings/entities/global-setting-iugu.entity.d.ts +3 -0
- package/dist/global-settings/entities/global-setting-iugu.entity.js +5 -2
- package/dist/global-settings/interfaces/i-global-setting-iugu.d.ts +3 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -35,6 +35,7 @@ export declare class GlobalSettingIuguEntity implements IGlobalSettingIugu {
|
|
35
35
|
* cobrada para pagamentos efetuados após a data de vencimento
|
36
36
|
*/
|
37
37
|
latePaymentFineCents: number;
|
38
|
+
liveApiToken: string;
|
38
39
|
/**
|
39
40
|
* determina se cobra ou não juros por dia de atraso.
|
40
41
|
* 1% ao mês pro rata. Necessário passar a multa como true
|
@@ -52,5 +53,7 @@ export declare class GlobalSettingIuguEntity implements IGlobalSettingIugu {
|
|
52
53
|
* calculados são menores que 1 centavo.
|
53
54
|
*/
|
54
55
|
perDayInterestValue: number;
|
56
|
+
testApiToken: string;
|
57
|
+
userApiToken: string;
|
55
58
|
constructor(data?: Partial<GlobalSettingIuguEntity>);
|
56
59
|
}
|
@@ -2,10 +2,10 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.GlobalSettingIuguEntity = void 0;
|
4
4
|
var GlobalSettingIuguEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (
|
5
|
+
// #endregion Properties (13)
|
6
6
|
// #region Constructors (1)
|
7
7
|
function GlobalSettingIuguEntity(data) {
|
8
|
-
// #region Properties (
|
8
|
+
// #region Properties (13)
|
9
9
|
/**
|
10
10
|
* Prazo máximo para pagamento do boleto após o vencimento.
|
11
11
|
* O prazo máximo para pagamento deve ser entre "1" e "30"
|
@@ -41,6 +41,7 @@ var GlobalSettingIuguEntity = /** @class */ (function () {
|
|
41
41
|
* cobrada para pagamentos efetuados após a data de vencimento
|
42
42
|
*/
|
43
43
|
this.latePaymentFineCents = 0;
|
44
|
+
this.liveApiToken = '';
|
44
45
|
/**
|
45
46
|
* determina se cobra ou não juros por dia de atraso.
|
46
47
|
* 1% ao mês pro rata. Necessário passar a multa como true
|
@@ -58,6 +59,8 @@ var GlobalSettingIuguEntity = /** @class */ (function () {
|
|
58
59
|
* calculados são menores que 1 centavo.
|
59
60
|
*/
|
60
61
|
this.perDayInterestValue = 1;
|
62
|
+
this.testApiToken = '';
|
63
|
+
this.userApiToken = '';
|
61
64
|
if (data) {
|
62
65
|
for (var key in data) {
|
63
66
|
if (data.hasOwnProperty(key) && key in this) {
|
@@ -5,6 +5,9 @@ export interface IGlobalSettingIugu {
|
|
5
5
|
fines: boolean;
|
6
6
|
latePaymentFine: number;
|
7
7
|
latePaymentFineCents: number;
|
8
|
+
liveApiToken: string;
|
9
|
+
testApiToken: string;
|
10
|
+
userApiToken: string;
|
8
11
|
perDayInterest: boolean;
|
9
12
|
perDayInterestCents: number;
|
10
13
|
perDayInterestValue: number;
|
package/dist/package.json
CHANGED