@fiado/type-kit 3.0.25 → 3.0.27
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/servicePayment/dtos/GetFavoritesParams.d.ts +10 -0
- package/bin/servicePayment/dtos/GetFavoritesParams.js +6 -0
- package/bin/servicePayment/dtos/GetFavoritesParamsResponse.d.ts +38 -0
- package/bin/servicePayment/dtos/GetFavoritesParamsResponse.js +12 -0
- package/bin/servicePayment/dtos/GetTransactionsParams.d.ts +10 -0
- package/bin/servicePayment/dtos/GetTransactionsParams.js +6 -0
- package/bin/servicePayment/index.d.ts +2 -1
- package/bin/servicePayment/index.js +2 -1
- package/package.json +1 -1
- package/src/servicePayment/dtos/GetFavoritesParams.ts +11 -0
- package/src/servicePayment/dtos/{FavoriteResponse.ts → GetFavoritesParamsResponse.ts} +1 -1
- package/src/servicePayment/index.ts +2 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CurrencyId } from '../../currency/enums/CurrencyId';
|
|
2
|
+
export declare class GetFavoritesParams {
|
|
3
|
+
directoryId: string;
|
|
4
|
+
pageSize?: number;
|
|
5
|
+
category?: string;
|
|
6
|
+
subcategory?: string;
|
|
7
|
+
currencyId?: CurrencyId;
|
|
8
|
+
serviceCountryId?: string;
|
|
9
|
+
benefitId?: string;
|
|
10
|
+
}
|
|
@@ -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 GetFavoritesParamsResponse {
|
|
37
|
+
items: TransactionModelResponse[];
|
|
38
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetFavoritesParamsResponse = exports.TransactionModelResponse = exports.ProductoDTO = void 0;
|
|
4
|
+
class ProductoDTO {
|
|
5
|
+
}
|
|
6
|
+
exports.ProductoDTO = ProductoDTO;
|
|
7
|
+
class TransactionModelResponse {
|
|
8
|
+
}
|
|
9
|
+
exports.TransactionModelResponse = TransactionModelResponse;
|
|
10
|
+
class GetFavoritesParamsResponse {
|
|
11
|
+
}
|
|
12
|
+
exports.GetFavoritesParamsResponse = GetFavoritesParamsResponse;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CurrencyId } from '../../currency/enums/CurrencyId';
|
|
2
|
+
export declare class GetTransactionsParams {
|
|
3
|
+
directoryId: string;
|
|
4
|
+
pageSize?: number;
|
|
5
|
+
category?: string;
|
|
6
|
+
subcategory?: string;
|
|
7
|
+
currencyId?: CurrencyId;
|
|
8
|
+
serviceCountryId?: string;
|
|
9
|
+
benefitId?: string;
|
|
10
|
+
}
|
|
@@ -3,6 +3,7 @@ export * from './enums/ReferenceTypeEnum';
|
|
|
3
3
|
export * from './enums/AmountTypeEnum';
|
|
4
4
|
export * from './dtos/ServicePaymentRequest';
|
|
5
5
|
export * from './dtos/GetCatalogParams';
|
|
6
|
+
export * from './dtos/GetFavoritesParams';
|
|
6
7
|
export * from './dtos/ReferenceVerificationRequest';
|
|
7
8
|
export * from './dtos/ReferenceVerificationResponse';
|
|
8
|
-
export * from './dtos/
|
|
9
|
+
export * from './dtos/GetFavoritesParamsResponse';
|
|
@@ -21,6 +21,7 @@ __exportStar(require("./enums/AmountTypeEnum"), exports);
|
|
|
21
21
|
//DTOs
|
|
22
22
|
__exportStar(require("./dtos/ServicePaymentRequest"), exports);
|
|
23
23
|
__exportStar(require("./dtos/GetCatalogParams"), exports);
|
|
24
|
+
__exportStar(require("./dtos/GetFavoritesParams"), exports);
|
|
24
25
|
__exportStar(require("./dtos/ReferenceVerificationRequest"), exports);
|
|
25
26
|
__exportStar(require("./dtos/ReferenceVerificationResponse"), exports);
|
|
26
|
-
__exportStar(require("./dtos/
|
|
27
|
+
__exportStar(require("./dtos/GetFavoritesParamsResponse"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CurrencyId } from '../../currency/enums/CurrencyId';
|
|
2
|
+
|
|
3
|
+
export class GetFavoritesParams {
|
|
4
|
+
directoryId: string;
|
|
5
|
+
pageSize?: number;
|
|
6
|
+
category?: string;
|
|
7
|
+
subcategory?: string;
|
|
8
|
+
currencyId?: CurrencyId;
|
|
9
|
+
serviceCountryId?: string;
|
|
10
|
+
benefitId?:string
|
|
11
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from './enums/AmountTypeEnum';
|
|
|
7
7
|
//DTOs
|
|
8
8
|
export * from './dtos/ServicePaymentRequest';
|
|
9
9
|
export * from './dtos/GetCatalogParams';
|
|
10
|
+
export * from './dtos/GetFavoritesParams';
|
|
10
11
|
export * from './dtos/ReferenceVerificationRequest';
|
|
11
12
|
export * from './dtos/ReferenceVerificationResponse';
|
|
12
|
-
export * from './dtos/
|
|
13
|
+
export * from './dtos/GetFavoritesParamsResponse';
|