@fiado/type-kit 3.0.28 → 3.0.29
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.
|
@@ -21,7 +21,7 @@ export declare class ProductoDTO {
|
|
|
21
21
|
verificateReference: boolean;
|
|
22
22
|
default: boolean;
|
|
23
23
|
}
|
|
24
|
-
export declare class
|
|
24
|
+
export declare class Favorite {
|
|
25
25
|
category: string;
|
|
26
26
|
subcategory: string;
|
|
27
27
|
logo: string;
|
|
@@ -32,7 +32,9 @@ export declare class TransactionModelResponse {
|
|
|
32
32
|
productoDTOList: ProductoDTO[];
|
|
33
33
|
currencyId: CurrencyId;
|
|
34
34
|
serviceCountryId: string;
|
|
35
|
+
verificateReference: boolean;
|
|
36
|
+
amountType: AmountTypeEnum;
|
|
35
37
|
}
|
|
36
38
|
export declare class GetFavoritesResponse {
|
|
37
|
-
items:
|
|
39
|
+
items: Favorite[];
|
|
38
40
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetFavoritesResponse = exports.
|
|
3
|
+
exports.GetFavoritesResponse = exports.Favorite = exports.ProductoDTO = void 0;
|
|
4
4
|
class ProductoDTO {
|
|
5
5
|
}
|
|
6
6
|
exports.ProductoDTO = ProductoDTO;
|
|
7
|
-
class
|
|
7
|
+
class Favorite {
|
|
8
8
|
}
|
|
9
|
-
exports.
|
|
9
|
+
exports.Favorite = Favorite;
|
|
10
10
|
class GetFavoritesResponse {
|
|
11
11
|
}
|
|
12
12
|
exports.GetFavoritesResponse = GetFavoritesResponse;
|
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@ export class ProductoDTO {
|
|
|
23
23
|
default: boolean
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
export class
|
|
26
|
+
export class Favorite {
|
|
27
27
|
category: string;
|
|
28
28
|
subcategory: string;
|
|
29
29
|
logo: string;
|
|
@@ -34,8 +34,10 @@ export class TransactionModelResponse {
|
|
|
34
34
|
productoDTOList: ProductoDTO[];
|
|
35
35
|
currencyId: CurrencyId;
|
|
36
36
|
serviceCountryId: string;
|
|
37
|
+
verificateReference:boolean;
|
|
38
|
+
amountType: AmountTypeEnum
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
export class GetFavoritesResponse {
|
|
40
|
-
items:
|
|
42
|
+
items: Favorite[]
|
|
41
43
|
}
|
|
@@ -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/GetFavoritesResponse';
|
|
13
|
+
export * from './dtos/GetFavoritesResponse';
|