cecon-interfaces 1.2.99 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/sponsor/entities/sponsor.entity.mjs +3 -2
- package/dist/esm2022/sponsor/interfaces/i-sponsor.mjs +1 -1
- package/dist/esm2022/transaction/enums/operation-type.enum.mjs +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/sponsor/entities/sponsor.entity.d.ts +2 -1
- package/dist/sponsor/entities/sponsor.entity.js +2 -1
- package/dist/sponsor/interfaces/i-sponsor.d.ts +2 -1
- package/dist/transaction/enums/operation-type.enum.d.ts +1 -1
- package/dist/transaction/enums/operation-type.enum.js +1 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -8,7 +8,8 @@ export declare class SponsorEntity implements ISponsor {
|
|
8
8
|
createdAt: Date;
|
9
9
|
fees: ISponsorFee[];
|
10
10
|
docType: EDocType;
|
11
|
-
|
11
|
+
desenfilaMerchantId: string | null;
|
12
|
+
desenfilaContainerId: string | null;
|
12
13
|
natiRefId: string | null;
|
13
14
|
mobyoRefId: string | null;
|
14
15
|
from: EDesenfilaFrom;
|
@@ -10,7 +10,8 @@ var SponsorEntity = /** @class */ (function () {
|
|
10
10
|
this.createdAt = new Date();
|
11
11
|
this.fees = [];
|
12
12
|
this.docType = general_1.EDocType.CNPJ;
|
13
|
-
this.
|
13
|
+
this.desenfilaMerchantId = null;
|
14
|
+
this.desenfilaContainerId = null;
|
14
15
|
this.natiRefId = null;
|
15
16
|
this.mobyoRefId = null;
|
16
17
|
this.from = general_1.EDesenfilaFrom.DEFAULT;
|
@@ -8,7 +8,8 @@ export interface ISponsor {
|
|
8
8
|
doc: string;
|
9
9
|
docType: EDocType;
|
10
10
|
from: EDesenfilaFrom;
|
11
|
-
|
11
|
+
desenfilaContainerId: string | null;
|
12
|
+
desenfilaMerchantId: string | null;
|
12
13
|
internationalCode: string;
|
13
14
|
phoneNumer: string;
|
14
15
|
email: string;
|
@@ -9,7 +9,7 @@ export declare enum EOperationType {
|
|
9
9
|
POS_PAYMENT = "pos_payment",
|
10
10
|
MONEY_EXCHANGE = "money_exchange",
|
11
11
|
FEE_SHIPPING = "Taxa de Entrega",
|
12
|
-
FEE_CONVENIENCE = "Taxa de
|
12
|
+
FEE_CONVENIENCE = "Taxa de Conveniencia",
|
13
13
|
NATI_PAY = "Nati Pay",
|
14
14
|
GOLIVE = "Go Live",
|
15
15
|
FIN_TAX = "Taxa Financeira",
|
@@ -15,7 +15,7 @@ var EOperationType;
|
|
15
15
|
EOperationType["MONEY_EXCHANGE"] = "money_exchange";
|
16
16
|
// arcnet enums :
|
17
17
|
EOperationType["FEE_SHIPPING"] = "Taxa de Entrega";
|
18
|
-
EOperationType["FEE_CONVENIENCE"] = "Taxa de
|
18
|
+
EOperationType["FEE_CONVENIENCE"] = "Taxa de Conveniencia";
|
19
19
|
EOperationType["NATI_PAY"] = "Nati Pay";
|
20
20
|
EOperationType["GOLIVE"] = "Go Live";
|
21
21
|
EOperationType["FIN_TAX"] = "Taxa Financeira";
|