cecon-interfaces 1.8.10 → 1.8.11
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/natipay/company/entities/company.entity.mjs +2 -3
- package/dist/esm2022/natipay/company/interfaces/i-company.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +17 -17
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/natipay/company/entities/company.entity.d.ts +1 -1
- package/dist/natipay/company/entities/company.entity.js +1 -2
- package/dist/natipay/company/interfaces/i-company.d.ts +9 -9
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -30,7 +30,7 @@ export declare class NatipayCompanyEntity implements INatipayCompany {
|
|
30
30
|
pixKeys: PixKeyEntity[];
|
31
31
|
sandbox: boolean;
|
32
32
|
shortName: string;
|
33
|
-
sponsorFees: NatipaySponsorFeeEntity;
|
33
|
+
sponsorFees: NatipaySponsorFeeEntity[];
|
34
34
|
tags: string[];
|
35
35
|
updatedAt: Date;
|
36
36
|
version: string;
|
@@ -5,7 +5,6 @@ var general_1 = require("../../../general");
|
|
5
5
|
var address_entity_1 = require("./address.entity");
|
6
6
|
var natipay_fee_entity_1 = require("./natipay-fee.entity");
|
7
7
|
var natipay_entity_1 = require("./natipay.entity");
|
8
|
-
var sponsor_fee_entity_1 = require("./sponsor-fee.entity");
|
9
8
|
var NatipayCompanyEntity = /** @class */ (function () {
|
10
9
|
function NatipayCompanyEntity(data) {
|
11
10
|
this.active = false;
|
@@ -31,7 +30,7 @@ var NatipayCompanyEntity = /** @class */ (function () {
|
|
31
30
|
this.pixKeys = [];
|
32
31
|
this.sandbox = false;
|
33
32
|
this.shortName = '';
|
34
|
-
this.sponsorFees =
|
33
|
+
this.sponsorFees = [];
|
35
34
|
this.tags = [];
|
36
35
|
this.updatedAt = new Date();
|
37
36
|
this.version = '';
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { EDocType } from
|
2
|
-
import { IPixKey } from
|
3
|
-
import { ETransactionProvider } from
|
4
|
-
import { INatipayAddress } from
|
5
|
-
import { INatipayCompanyExternalFee } from
|
6
|
-
import { INatipayFee } from
|
7
|
-
import { INatipay } from
|
8
|
-
import { INatipaySponsorFee } from
|
1
|
+
import { EDocType } from '../../../general';
|
2
|
+
import { IPixKey } from '../../../general/interfaces/i-pix-key';
|
3
|
+
import { ETransactionProvider } from '../../../transaction';
|
4
|
+
import { INatipayAddress } from './i-address';
|
5
|
+
import { INatipayCompanyExternalFee } from './i-company-external-fee';
|
6
|
+
import { INatipayFee } from './i-fee';
|
7
|
+
import { INatipay } from './i-natipay';
|
8
|
+
import { INatipaySponsorFee } from './i-sponsor-fee';
|
9
9
|
export interface INatipayCompany {
|
10
10
|
active: boolean;
|
11
11
|
address: INatipayAddress;
|
@@ -34,7 +34,7 @@ export interface INatipayCompany {
|
|
34
34
|
pixKeys: IPixKey[];
|
35
35
|
sandbox: boolean;
|
36
36
|
shortName: string;
|
37
|
-
sponsorFees: INatipaySponsorFee;
|
37
|
+
sponsorFees: INatipaySponsorFee[];
|
38
38
|
tags: string[];
|
39
39
|
updatedAt: Date;
|
40
40
|
version: string;
|
package/dist/package.json
CHANGED