cecon-interfaces 1.8.14 → 1.8.16
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/firebank/interfaces/payment/i-payment-response.mjs +2 -0
- package/dist/esm2022/firebank/interfaces/payment/index.mjs +1 -1
- package/dist/esm2022/global-settings/entities/global-setting-firebank.entity.mjs +19 -0
- package/dist/esm2022/global-settings/entities/index.mjs +2 -1
- package/dist/esm2022/global-settings/interfaces/i-global-setting-firebank.mjs +2 -0
- package/dist/esm2022/global-settings/interfaces/index.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +20 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/firebank/interfaces/payment/i-payment-response.d.ts +11 -0
- package/dist/firebank/interfaces/payment/i-payment-response.js +2 -0
- package/dist/firebank/interfaces/payment/index.d.ts +1 -0
- package/dist/global-settings/entities/global-setting-firebank.entity.d.ts +11 -0
- package/dist/global-settings/entities/global-setting-firebank.entity.js +23 -0
- package/dist/global-settings/entities/index.d.ts +1 -0
- package/dist/global-settings/entities/index.js +3 -1
- package/dist/global-settings/interfaces/i-global-setting-firebank.d.ts +9 -0
- package/dist/global-settings/interfaces/i-global-setting-firebank.js +2 -0
- package/dist/global-settings/interfaces/index.d.ts +1 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -1,3 +1,4 @@
|
|
1
1
|
export { IFirebankCallback } from './i-callback';
|
2
2
|
export { IFirebankCallbackError } from './i-callback-error';
|
3
3
|
export { IFirebankPaymentPost, IFirebankPaymentPostAddress, IFirebankPaymentPostContact, IFirebankPaymentPostPayer, IFirebankPaymentPostSplit, IFirebankPaymentPostTransaction, } from './i-payment-post';
|
4
|
+
export { IFirebankPaymentResponse } from './i-payment-response';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { IGlobalSettingFirebank } from '../interfaces/i-global-setting-firebank';
|
2
|
+
export declare class GlobalSettingFirebankEntity implements IGlobalSettingFirebank {
|
3
|
+
active: boolean;
|
4
|
+
apiKey: string;
|
5
|
+
baseUrl: string;
|
6
|
+
basicAuth64: string;
|
7
|
+
id: string;
|
8
|
+
password: string;
|
9
|
+
userName: string;
|
10
|
+
constructor(data?: Partial<GlobalSettingFirebankEntity>);
|
11
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.GlobalSettingFirebankEntity = void 0;
|
4
|
+
var GlobalSettingFirebankEntity = /** @class */ (function () {
|
5
|
+
function GlobalSettingFirebankEntity(data) {
|
6
|
+
this.active = false;
|
7
|
+
this.apiKey = '';
|
8
|
+
this.baseUrl = '';
|
9
|
+
this.basicAuth64 = '';
|
10
|
+
this.id = 'FIREBANK';
|
11
|
+
this.password = '';
|
12
|
+
this.userName = '';
|
13
|
+
if (data) {
|
14
|
+
for (var key in data) {
|
15
|
+
if (data.hasOwnProperty(key) && key in this) {
|
16
|
+
this[key] = data[key];
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
}
|
21
|
+
return GlobalSettingFirebankEntity;
|
22
|
+
}());
|
23
|
+
exports.GlobalSettingFirebankEntity = GlobalSettingFirebankEntity;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
export { GlobalSettingFirebankEntity } from './global-setting-firebank.entity';
|
1
2
|
export { GlobalSettingIuguEntity } from './global-setting-iugu.entity';
|
2
3
|
export { GlobalSettingMasterEntity } from './global-setting-master.entity';
|
3
4
|
export { GlobalSettingMercadoPagoEntity } from './global-setting-mercado-pago.entity';
|
@@ -1,6 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.GlobalSettingEntity = exports.GlobalSettingTaxesEntity = exports.GlobalSettingNatiPayEntity = exports.GlobalSettingMercadoPagoEntity = exports.GlobalSettingMasterEntity = exports.GlobalSettingIuguEntity = void 0;
|
3
|
+
exports.GlobalSettingEntity = exports.GlobalSettingTaxesEntity = exports.GlobalSettingNatiPayEntity = exports.GlobalSettingMercadoPagoEntity = exports.GlobalSettingMasterEntity = exports.GlobalSettingIuguEntity = exports.GlobalSettingFirebankEntity = void 0;
|
4
|
+
var global_setting_firebank_entity_1 = require("./global-setting-firebank.entity");
|
5
|
+
Object.defineProperty(exports, "GlobalSettingFirebankEntity", { enumerable: true, get: function () { return global_setting_firebank_entity_1.GlobalSettingFirebankEntity; } });
|
4
6
|
var global_setting_iugu_entity_1 = require("./global-setting-iugu.entity");
|
5
7
|
Object.defineProperty(exports, "GlobalSettingIuguEntity", { enumerable: true, get: function () { return global_setting_iugu_entity_1.GlobalSettingIuguEntity; } });
|
6
8
|
var global_setting_master_entity_1 = require("./global-setting-master.entity");
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export { IGlobalSetting } from './i-global-setting';
|
2
|
+
export { IGlobalSettingFirebank } from './i-global-setting-firebank';
|
2
3
|
export { IGlobalSettingIugu } from './i-global-setting-iugu';
|
3
4
|
export { IGlobalSettingMaster } from './i-global-setting-master';
|
4
5
|
export { IGlobalSettingMercadoPago } from './i-global-setting-mercado-pago';
|
package/dist/package.json
CHANGED