@fiado/type-kit 3.0.27 → 3.0.28

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.
@@ -0,0 +1,38 @@
1
+ import { CurrencyId } from '../../currency';
2
+ import { Provider } from '../../provider/enums/Provider';
3
+ import { AmountTypeEnum } from '../enums/AmountTypeEnum';
4
+ import { ReferenceTypeEnum } from '../enums/ReferenceTypeEnum';
5
+ export declare class ProductoDTO {
6
+ idServicio: number;
7
+ amountType: AmountTypeEnum;
8
+ fee: number;
9
+ hasDigitoVerificador: boolean;
10
+ idCatTipoServicio: number;
11
+ idProducto: string;
12
+ legend: string;
13
+ logoSrc: string;
14
+ precio: number;
15
+ producto: string;
16
+ refSrc: string;
17
+ servicio: string;
18
+ showAyuda: boolean;
19
+ tipoFront: number;
20
+ tipoReferencia: ReferenceTypeEnum;
21
+ verificateReference: boolean;
22
+ default: boolean;
23
+ }
24
+ export declare class TransactionModelResponse {
25
+ category: string;
26
+ subcategory: string;
27
+ logo: string;
28
+ description: string;
29
+ paymentAccountNumber: string;
30
+ provider: Provider;
31
+ benefitId: string;
32
+ productoDTOList: ProductoDTO[];
33
+ currencyId: CurrencyId;
34
+ serviceCountryId: string;
35
+ }
36
+ export declare class GetFavoritesResponse {
37
+ items: TransactionModelResponse[];
38
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetFavoritesResponse = exports.TransactionModelResponse = exports.ProductoDTO = void 0;
4
+ class ProductoDTO {
5
+ }
6
+ exports.ProductoDTO = ProductoDTO;
7
+ class TransactionModelResponse {
8
+ }
9
+ exports.TransactionModelResponse = TransactionModelResponse;
10
+ class GetFavoritesResponse {
11
+ }
12
+ exports.GetFavoritesResponse = GetFavoritesResponse;
@@ -6,4 +6,4 @@ export * from './dtos/GetCatalogParams';
6
6
  export * from './dtos/GetFavoritesParams';
7
7
  export * from './dtos/ReferenceVerificationRequest';
8
8
  export * from './dtos/ReferenceVerificationResponse';
9
- export * from './dtos/GetFavoritesParamsResponse';
9
+ export * from './dtos/GetFavoritesResponse';
@@ -24,4 +24,4 @@ __exportStar(require("./dtos/GetCatalogParams"), exports);
24
24
  __exportStar(require("./dtos/GetFavoritesParams"), exports);
25
25
  __exportStar(require("./dtos/ReferenceVerificationRequest"), exports);
26
26
  __exportStar(require("./dtos/ReferenceVerificationResponse"), exports);
27
- __exportStar(require("./dtos/GetFavoritesParamsResponse"), exports);
27
+ __exportStar(require("./dtos/GetFavoritesResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.0.27",
3
+ "version": "3.0.28",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -36,6 +36,6 @@ export class TransactionModelResponse {
36
36
  serviceCountryId: string;
37
37
  }
38
38
 
39
- export class GetFavoritesParamsResponse {
39
+ export class GetFavoritesResponse {
40
40
  items: TransactionModelResponse[]
41
41
  }
@@ -10,4 +10,4 @@ export * from './dtos/GetCatalogParams';
10
10
  export * from './dtos/GetFavoritesParams';
11
11
  export * from './dtos/ReferenceVerificationRequest';
12
12
  export * from './dtos/ReferenceVerificationResponse';
13
- export * from './dtos/GetFavoritesParamsResponse';
13
+ export * from './dtos/GetFavoritesResponse';