@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.
@@ -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
- POMELO_REVERASL_EXTRACASH = "REVERASL_EXTRACASH",
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["POMELO_REVERASL_EXTRACASH"] = "REVERASL_EXTRACASH";
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,5 @@
1
+ export declare class GetBusinessAccountBalanceResponse {
2
+ enterprise: string;
3
+ pendingCharges: number;
4
+ balance: number;
5
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetBusinessAccountBalanceResponse = void 0;
4
+ class GetBusinessAccountBalanceResponse {
5
+ }
6
+ exports.GetBusinessAccountBalanceResponse = GetBusinessAccountBalanceResponse;
@@ -0,0 +1,4 @@
1
+ export declare enum BusinessNameEnum {
2
+ FIADOSA = "FIADOSA",
3
+ PAGO_CONFIADO = "PAGO_CONFIADO"
4
+ }
@@ -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 = {}));
@@ -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';
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.4.39",
3
+ "version": "1.4.41",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -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
- POMELO_REVERASL_EXTRACASH = "REVERASL_EXTRACASH",
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",
@@ -0,0 +1,5 @@
1
+ export class GetBusinessAccountBalanceResponse {
2
+ enterprise: string;
3
+ pendingCharges: number;
4
+ balance: number;
5
+ }
@@ -0,0 +1,4 @@
1
+ export enum BusinessNameEnum {
2
+ FIADOSA = "FIADOSA",
3
+ PAGO_CONFIADO = "PAGO_CONFIADO",
4
+ }
@@ -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';