@fiado/type-kit 1.4.39 → 1.4.41
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/bin/productCatalog/enums/ProductSubtypeEnum.d.ts +1 -1
- package/bin/productCatalog/enums/ProductSubtypeEnum.js +1 -1
- package/bin/stpSpei/dtos/GetBusinessAccountBalanceResponse.d.ts +5 -0
- package/bin/stpSpei/dtos/GetBusinessAccountBalanceResponse.js +6 -0
- package/bin/stpSpei/enums/BusinessNameEnum.d.ts +4 -0
- package/bin/stpSpei/enums/BusinessNameEnum.js +8 -0
- package/bin/stpSpei/index.d.ts +2 -0
- package/bin/stpSpei/index.js +2 -0
- package/package.json +1 -1
- package/src/productCatalog/enums/ProductSubtypeEnum.ts +1 -1
- package/src/stpSpei/dtos/GetBusinessAccountBalanceResponse.ts +5 -0
- package/src/stpSpei/enums/BusinessNameEnum.ts +4 -0
- package/src/stpSpei/index.ts +2 -0
|
@@ -6,7 +6,7 @@ export declare enum ProductSubtypeEnum {
|
|
|
6
6
|
POMELO_PAYMENT = "PAYMENT",
|
|
7
7
|
POMELO_REVERSAL_PURCHASE = "REVERSAL_PURCHASE",
|
|
8
8
|
POMELO_REVERSAL_WITHDRAWAL = "REVERSAL_WITHDRAWAL",
|
|
9
|
-
|
|
9
|
+
POMELO_REVERSAL_EXTRACASH = "REVERASL_EXTRACASH",
|
|
10
10
|
POMELO_BALANCE_INQUIRY = "BALANCE_INQUIRY",
|
|
11
11
|
POMELO_REVERSAL_REFUND = "REVERSAL_REFUND",
|
|
12
12
|
POMELO_REVERSAL_PAYMENT = "REVERSAL_PAYMENT",
|
|
@@ -11,7 +11,7 @@ var ProductSubtypeEnum;
|
|
|
11
11
|
ProductSubtypeEnum["POMELO_PAYMENT"] = "PAYMENT";
|
|
12
12
|
ProductSubtypeEnum["POMELO_REVERSAL_PURCHASE"] = "REVERSAL_PURCHASE";
|
|
13
13
|
ProductSubtypeEnum["POMELO_REVERSAL_WITHDRAWAL"] = "REVERSAL_WITHDRAWAL";
|
|
14
|
-
ProductSubtypeEnum["
|
|
14
|
+
ProductSubtypeEnum["POMELO_REVERSAL_EXTRACASH"] = "REVERASL_EXTRACASH";
|
|
15
15
|
ProductSubtypeEnum["POMELO_BALANCE_INQUIRY"] = "BALANCE_INQUIRY";
|
|
16
16
|
ProductSubtypeEnum["POMELO_REVERSAL_REFUND"] = "REVERSAL_REFUND";
|
|
17
17
|
ProductSubtypeEnum["POMELO_REVERSAL_PAYMENT"] = "REVERSAL_PAYMENT";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BusinessNameEnum = void 0;
|
|
4
|
+
var BusinessNameEnum;
|
|
5
|
+
(function (BusinessNameEnum) {
|
|
6
|
+
BusinessNameEnum["FIADOSA"] = "FIADOSA";
|
|
7
|
+
BusinessNameEnum["PAGO_CONFIADO"] = "PAGO_CONFIADO";
|
|
8
|
+
})(BusinessNameEnum || (exports.BusinessNameEnum = BusinessNameEnum = {}));
|
package/bin/stpSpei/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from './dtos/PutStpOrderRequest';
|
|
2
2
|
export * from './dtos/SpeiWebhookMessage';
|
|
3
|
+
export * from './dtos/GetBusinessAccountBalanceResponse';
|
|
3
4
|
export * from './enums/WebhookMessageStatusEnum';
|
|
4
5
|
export * from './enums/ActividadesProductivasEnum';
|
|
5
6
|
export * from './enums/EntidadesFederativasEnum';
|
|
6
7
|
export * from './enums/PaisesEnum';
|
|
8
|
+
export * from './enums/BusinessNameEnum';
|
package/bin/stpSpei/index.js
CHANGED
|
@@ -16,7 +16,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./dtos/PutStpOrderRequest"), exports);
|
|
18
18
|
__exportStar(require("./dtos/SpeiWebhookMessage"), exports);
|
|
19
|
+
__exportStar(require("./dtos/GetBusinessAccountBalanceResponse"), exports);
|
|
19
20
|
__exportStar(require("./enums/WebhookMessageStatusEnum"), exports);
|
|
20
21
|
__exportStar(require("./enums/ActividadesProductivasEnum"), exports);
|
|
21
22
|
__exportStar(require("./enums/EntidadesFederativasEnum"), exports);
|
|
22
23
|
__exportStar(require("./enums/PaisesEnum"), exports);
|
|
24
|
+
__exportStar(require("./enums/BusinessNameEnum"), exports);
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ export enum ProductSubtypeEnum {
|
|
|
8
8
|
POMELO_PAYMENT = "PAYMENT",
|
|
9
9
|
POMELO_REVERSAL_PURCHASE = "REVERSAL_PURCHASE",
|
|
10
10
|
POMELO_REVERSAL_WITHDRAWAL = "REVERSAL_WITHDRAWAL",
|
|
11
|
-
|
|
11
|
+
POMELO_REVERSAL_EXTRACASH = "REVERASL_EXTRACASH",
|
|
12
12
|
POMELO_BALANCE_INQUIRY = "BALANCE_INQUIRY",
|
|
13
13
|
POMELO_REVERSAL_REFUND = "REVERSAL_REFUND",
|
|
14
14
|
POMELO_REVERSAL_PAYMENT = "REVERSAL_PAYMENT",
|
package/src/stpSpei/index.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './dtos/PutStpOrderRequest';
|
|
2
2
|
export * from './dtos/SpeiWebhookMessage';
|
|
3
|
+
export * from './dtos/GetBusinessAccountBalanceResponse';
|
|
3
4
|
|
|
4
5
|
export * from './enums/WebhookMessageStatusEnum';
|
|
5
6
|
export * from './enums/ActividadesProductivasEnum';
|
|
6
7
|
export * from './enums/EntidadesFederativasEnum';
|
|
7
8
|
export * from './enums/PaisesEnum';
|
|
9
|
+
export * from './enums/BusinessNameEnum';
|