cecon-interfaces 1.8.72 → 1.8.73
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/payio/company/entities/company.entity.mjs +3 -2
- package/dist/esm2022/payio/company/interfaces/i-company.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +2 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/company/entities/company.entity.d.ts +2 -1
- package/dist/payio/company/entities/company.entity.js +2 -1
- package/dist/payio/company/interfaces/i-company.d.ts +3 -2
- package/package.json +1 -1
@@ -5,6 +5,8 @@ import { PayioCompanyNatipayCredentialEntity } from './natipay-credential.entity
|
|
5
5
|
export declare class PayioCompanyEntity implements IPayioCompany {
|
6
6
|
active: boolean;
|
7
7
|
address: PayioAddressEntity;
|
8
|
+
clientId: string;
|
9
|
+
clientSecret: string;
|
8
10
|
containerId: string;
|
9
11
|
country: string;
|
10
12
|
createdAt: Date;
|
@@ -22,7 +24,6 @@ export declare class PayioCompanyEntity implements IPayioCompany {
|
|
22
24
|
paymentProvider: IPaymentProvider | null;
|
23
25
|
phoneNumber: string;
|
24
26
|
sandbox: boolean;
|
25
|
-
secret: string;
|
26
27
|
shortName: string;
|
27
28
|
tags: string[];
|
28
29
|
updatedAt: Date;
|
@@ -8,6 +8,8 @@ var PayioCompanyEntity = /** @class */ (function () {
|
|
8
8
|
function PayioCompanyEntity(data) {
|
9
9
|
this.active = false;
|
10
10
|
this.address = new address_entity_1.PayioAddressEntity();
|
11
|
+
this.clientId = '';
|
12
|
+
this.clientSecret = '';
|
11
13
|
this.containerId = '';
|
12
14
|
this.country = 'BR';
|
13
15
|
this.createdAt = new Date();
|
@@ -25,7 +27,6 @@ var PayioCompanyEntity = /** @class */ (function () {
|
|
25
27
|
this.paymentProvider = null;
|
26
28
|
this.phoneNumber = '';
|
27
29
|
this.sandbox = false;
|
28
|
-
this.secret = '';
|
29
30
|
this.shortName = '';
|
30
31
|
this.tags = [];
|
31
32
|
this.updatedAt = new Date();
|
@@ -5,6 +5,8 @@ import { IPayioCompanyNatipayCredential } from './i-natipay-credential';
|
|
5
5
|
export interface IPayioCompany {
|
6
6
|
active: boolean;
|
7
7
|
address: IPayioAddress;
|
8
|
+
clientId: string;
|
9
|
+
clientSecret: string;
|
8
10
|
containerId: string;
|
9
11
|
country: string;
|
10
12
|
createdAt: Date;
|
@@ -13,6 +15,7 @@ export interface IPayioCompany {
|
|
13
15
|
docType: EIntDocType;
|
14
16
|
email: string;
|
15
17
|
id: string;
|
18
|
+
ifoodMerchantId: string | null;
|
16
19
|
imageUrl: string | null;
|
17
20
|
internationalCode: string;
|
18
21
|
logoUrl: string | null;
|
@@ -21,8 +24,6 @@ export interface IPayioCompany {
|
|
21
24
|
paymentProvider: IPaymentProvider | null;
|
22
25
|
phoneNumber: string;
|
23
26
|
sandbox: boolean;
|
24
|
-
secret: string;
|
25
|
-
ifoodMerchantId: string | null;
|
26
27
|
shortName: string;
|
27
28
|
tags: string[];
|
28
29
|
updatedAt: Date;
|