cecon-interfaces 1.2.97 → 1.2.98
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/transaction/enums/operation-type.enum.mjs +3 -2
- package/dist/fesm2022/cecon-interfaces.mjs +2 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/transaction/enums/operation-type.enum.d.ts +2 -1
- package/dist/transaction/enums/operation-type.enum.js +2 -1
- package/package.json +1 -1
package/dist/package.json
CHANGED
@@ -8,9 +8,10 @@ export declare enum EOperationType {
|
|
8
8
|
CELLPHONE_RECHARGE = "cellphone_recharge",
|
9
9
|
POS_PAYMENT = "pos_payment",
|
10
10
|
MONEY_EXCHANGE = "money_exchange",
|
11
|
+
FEE_SHIPPING = "Taxa de Entrega",
|
12
|
+
FEE_CONVENIENCE = "Taxa de Conveni\u00EAncia",
|
11
13
|
NATI_PAY = "Nati Pay",
|
12
14
|
GOLIVE = "Go Live",
|
13
|
-
FEE_SHIPPING = "Taxa de Entrega",
|
14
15
|
FIN_TAX = "Taxa Financeira",
|
15
16
|
WITHDRAW = "Saque em Conta"
|
16
17
|
}
|
@@ -14,9 +14,10 @@ var EOperationType;
|
|
14
14
|
EOperationType["POS_PAYMENT"] = "pos_payment";
|
15
15
|
EOperationType["MONEY_EXCHANGE"] = "money_exchange";
|
16
16
|
// arcnet enums :
|
17
|
+
EOperationType["FEE_SHIPPING"] = "Taxa de Entrega";
|
18
|
+
EOperationType["FEE_CONVENIENCE"] = "Taxa de Conveni\u00EAncia";
|
17
19
|
EOperationType["NATI_PAY"] = "Nati Pay";
|
18
20
|
EOperationType["GOLIVE"] = "Go Live";
|
19
|
-
EOperationType["FEE_SHIPPING"] = "Taxa de Entrega";
|
20
21
|
EOperationType["FIN_TAX"] = "Taxa Financeira";
|
21
22
|
EOperationType["WITHDRAW"] = "Saque em Conta";
|
22
23
|
})(EOperationType || (exports.EOperationType = EOperationType = {}));
|