@fiado/type-kit 1.4.40 → 1.4.42

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.
@@ -27,7 +27,8 @@ export declare enum ProductSubtypeEnum {
27
27
  STPSERVSA_TV = "TV",
28
28
  STPSERVSA_GAS_Y_LUZ = "GAS_Y_LUZ",
29
29
  P2P_SELF = "SELF",
30
- P2P_OTHER = "OTHER",
30
+ P2P_OTHER_IN = "OTHER_IN",
31
+ P2P_OTHER_OUT = "OTHER_OUT",
31
32
  BBVA_RST = "RST",
32
33
  PCONFIADO_PROV = "PROV",
33
34
  PCONFIADO_REV_PROV = "REV_PROV"
@@ -36,7 +36,8 @@ var ProductSubtypeEnum;
36
36
  ProductSubtypeEnum["STPSERVSA_GAS_Y_LUZ"] = "GAS_Y_LUZ";
37
37
  //P2P
38
38
  ProductSubtypeEnum["P2P_SELF"] = "SELF";
39
- ProductSubtypeEnum["P2P_OTHER"] = "OTHER";
39
+ ProductSubtypeEnum["P2P_OTHER_IN"] = "OTHER_IN";
40
+ ProductSubtypeEnum["P2P_OTHER_OUT"] = "OTHER_OUT";
40
41
  //BBVA
41
42
  ProductSubtypeEnum["BBVA_RST"] = "RST";
42
43
  //PCONFIADO
@@ -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.40",
3
+ "version": "1.4.42",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -37,7 +37,8 @@ export enum ProductSubtypeEnum {
37
37
 
38
38
  //P2P
39
39
  P2P_SELF= "SELF",
40
- P2P_OTHER= "OTHER",
40
+ P2P_OTHER_IN= "OTHER_IN",
41
+ P2P_OTHER_OUT= "OTHER_OUT",
41
42
 
42
43
  //BBVA
43
44
  BBVA_RST = "RST",
@@ -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';