cecon-interfaces 2.0.12 → 2.0.13
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/sponsor/interfaces/i-sponsor-fee.mjs +1 -1
- package/dist/esm2022/transaction/enums/index.mjs +2 -2
- package/dist/esm2022/transaction/enums/operation-type.enum.mjs +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs +2 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/sponsor/interfaces/i-sponsor-fee.d.ts +2 -2
- package/dist/transaction/enums/index.d.ts +1 -1
- package/dist/transaction/enums/index.js +1 -2
- package/dist/transaction/enums/operation-type.enum.d.ts +2 -2
- package/dist/transaction/enums/operation-type.enum.js +3 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { EOperationType } from '../..';
|
|
1
2
|
import { EDiscountType } from '../../general';
|
|
2
|
-
import { ESponsorIdentifier } from '../../transaction';
|
|
3
3
|
export interface ISponsorFee {
|
|
4
4
|
type: EDiscountType;
|
|
5
5
|
amount: number;
|
|
6
|
-
method:
|
|
6
|
+
method: EOperationType;
|
|
7
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { EMpStatusDetail } from './mp-status-detail.enum';
|
|
2
2
|
export { EMpStatus } from './mp-status.enum';
|
|
3
|
-
export { EOperationType
|
|
3
|
+
export { EOperationType } from './operation-type.enum';
|
|
4
4
|
export { EPaymentMethodId } from './payment-method-id.enum';
|
|
5
5
|
export { EPaymentTypeId } from './payment-type-id.enum';
|
|
6
6
|
export { EReleaseStatus } from './release-status.enum';
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ETax = exports.EFeePayer = exports.ETransactionOperation = exports.ETransactionProvider = exports.ETransactionStatus = exports.ETransactionResumesTargetType = exports.EReleaseStatus = exports.EPaymentTypeId = exports.EPaymentMethodId = exports.
|
|
3
|
+
exports.ETax = exports.EFeePayer = exports.ETransactionOperation = exports.ETransactionProvider = exports.ETransactionStatus = exports.ETransactionResumesTargetType = exports.EReleaseStatus = exports.EPaymentTypeId = exports.EPaymentMethodId = exports.EOperationType = exports.EMpStatus = exports.EMpStatusDetail = void 0;
|
|
4
4
|
var mp_status_detail_enum_1 = require("./mp-status-detail.enum");
|
|
5
5
|
Object.defineProperty(exports, "EMpStatusDetail", { enumerable: true, get: function () { return mp_status_detail_enum_1.EMpStatusDetail; } });
|
|
6
6
|
var mp_status_enum_1 = require("./mp-status.enum");
|
|
7
7
|
Object.defineProperty(exports, "EMpStatus", { enumerable: true, get: function () { return mp_status_enum_1.EMpStatus; } });
|
|
8
8
|
var operation_type_enum_1 = require("./operation-type.enum");
|
|
9
9
|
Object.defineProperty(exports, "EOperationType", { enumerable: true, get: function () { return operation_type_enum_1.EOperationType; } });
|
|
10
|
-
Object.defineProperty(exports, "ESponsorIdentifier", { enumerable: true, get: function () { return operation_type_enum_1.ESponsorIdentifier; } });
|
|
11
10
|
var payment_method_id_enum_1 = require("./payment-method-id.enum");
|
|
12
11
|
Object.defineProperty(exports, "EPaymentMethodId", { enumerable: true, get: function () { return payment_method_id_enum_1.EPaymentMethodId; } });
|
|
13
12
|
var payment_type_id_enum_1 = require("./payment-type-id.enum");
|
|
@@ -5,6 +5,6 @@ export declare enum EOperationType {
|
|
|
5
5
|
NATIPAY = "Natipay",
|
|
6
6
|
NATIPAY_PIX = "Natipay-PIX",
|
|
7
7
|
FIN_TAX = "Taxa financeira",
|
|
8
|
-
WITHDRAW = "Saque em conta"
|
|
8
|
+
WITHDRAW = "Saque em conta",
|
|
9
|
+
REGULAR_PAYMENT = "Pagamento de conta"
|
|
9
10
|
}
|
|
10
|
-
export { EOperationType as ESponsorIdentifier };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.EOperationType = void 0;
|
|
4
4
|
var EOperationType;
|
|
5
5
|
(function (EOperationType) {
|
|
6
6
|
// arcnet enums :
|
|
@@ -11,4 +11,5 @@ var EOperationType;
|
|
|
11
11
|
EOperationType["NATIPAY_PIX"] = "Natipay-PIX";
|
|
12
12
|
EOperationType["FIN_TAX"] = "Taxa financeira";
|
|
13
13
|
EOperationType["WITHDRAW"] = "Saque em conta";
|
|
14
|
-
|
|
14
|
+
EOperationType["REGULAR_PAYMENT"] = "Pagamento de conta";
|
|
15
|
+
})(EOperationType || (exports.EOperationType = EOperationType = {}));
|