cecon-interfaces 1.8.16 → 1.8.21
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-external-fee.entity.mjs +2 -1
- package/dist/esm2022/natipay/company/entities/fee-from.entity.mjs +4 -4
- package/dist/esm2022/natipay/company/interfaces/i-company-external-fee.mjs +1 -1
- package/dist/esm2022/order/entities/payment-pix.entity.mjs +3 -4
- package/dist/esm2022/order/interfaces/i-payment-pix.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +3 -3
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/natipay/company/entities/company-external-fee.entity.d.ts +1 -0
- package/dist/natipay/company/entities/company-external-fee.entity.js +1 -0
- package/dist/natipay/company/entities/fee-from.entity.d.ts +4 -4
- package/dist/natipay/company/interfaces/i-company-external-fee.d.ts +2 -1
- package/dist/order/entities/payment-pix.entity.d.ts +2 -0
- package/dist/order/entities/payment-pix.entity.js +2 -3
- package/dist/order/interfaces/i-payment-pix.d.ts +2 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -3,6 +3,7 @@ import { INatipayCompanyExternalFee } from '../interfaces/i-company-external-fee
|
|
3
3
|
export declare class NatipayCompanyExternalFeeEntity implements INatipayCompanyExternalFee {
|
4
4
|
amount: number;
|
5
5
|
amountMode: EAmountMode;
|
6
|
+
id: string;
|
6
7
|
name: string;
|
7
8
|
constructor(data?: Partial<NatipayCompanyExternalFeeEntity>);
|
8
9
|
}
|
@@ -6,6 +6,7 @@ var NatipayCompanyExternalFeeEntity = /** @class */ (function () {
|
|
6
6
|
function NatipayCompanyExternalFeeEntity(data) {
|
7
7
|
this.amount = 0;
|
8
8
|
this.amountMode = transaction_1.EAmountMode.PERCENTAGE;
|
9
|
+
this.id = '';
|
9
10
|
this.name = '';
|
10
11
|
if (data) {
|
11
12
|
for (var key in data) {
|
@@ -1,7 +1,7 @@
|
|
1
|
-
import { EFrom } from
|
2
|
-
import { EAmountMode, EOperationType } from
|
3
|
-
import { EFeePayer } from
|
4
|
-
import { IFeeFrom } from
|
1
|
+
import { EFrom } from '../../../general';
|
2
|
+
import { EAmountMode, EOperationType } from '../../../transaction';
|
3
|
+
import { EFeePayer } from '../../../transaction/enums/fee-payer.enum';
|
4
|
+
import { IFeeFrom } from '../interfaces';
|
5
5
|
export declare class FeeFromEntity implements IFeeFrom {
|
6
6
|
amount: number;
|
7
7
|
amountMode: EAmountMode;
|
@@ -2,10 +2,9 @@
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.OrderPaymentPixEntity = void 0;
|
4
4
|
var OrderPaymentPixEntity = /** @class */ (function () {
|
5
|
-
// #endregion Properties (2)
|
6
|
-
// #region Constructors (1)
|
7
5
|
function OrderPaymentPixEntity(data) {
|
8
|
-
|
6
|
+
this.imageBase64 = '';
|
7
|
+
this.paymentLink = '';
|
9
8
|
this.pixKey = '';
|
10
9
|
this.urlQrImage = '';
|
11
10
|
if (data) {
|
package/dist/package.json
CHANGED