nextemos 4.7.3 → 4.7.4
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.
|
@@ -9,7 +9,7 @@ export interface IGetBlogPostsRequest extends IRequestBase {
|
|
|
9
9
|
tagIds?: number[];
|
|
10
10
|
blogKeys?: string[];
|
|
11
11
|
categoryKeys?: string[];
|
|
12
|
-
flags?: string;
|
|
12
|
+
flags?: string | number | string[];
|
|
13
13
|
searchTerm?: string;
|
|
14
14
|
aggregationInterval?: string;
|
|
15
15
|
sort?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IApiResponse, IRequestInit, ICategoryTreeResponse, IGetAllProductsResponse, IProductCategoryResponse, IProductResponse, ISearchProductsResponse, IProductCategoryAllResponse, IProductCategoryHierarchyResponse, IService, IProductTypeResponse, IProductTypeListResponse, IResponse, IGetFavoritesResponse, IRequestBase, IGetPriceAlertsResponse, IGetStockAlertsResponse } from '../..';
|
|
2
2
|
export interface IProductRequest extends IRequestBase {
|
|
3
3
|
id: number;
|
|
4
|
-
flags?: number;
|
|
4
|
+
flags?: string | number | string[];
|
|
5
5
|
includes?: string[];
|
|
6
6
|
}
|
|
7
7
|
export interface IProductCategoryRequest extends IRequestBase {
|
|
@@ -26,7 +26,7 @@ export interface ISearchProductsRequest extends IRequestBase {
|
|
|
26
26
|
typeKeys?: string[];
|
|
27
27
|
aggregateBy?: string[];
|
|
28
28
|
aggregationFilters?: AggregationFilter[];
|
|
29
|
-
flags?: string;
|
|
29
|
+
flags?: string | number | string[];
|
|
30
30
|
pageSize?: number;
|
|
31
31
|
currentPage?: number;
|
|
32
32
|
}
|
|
@@ -55,7 +55,7 @@ export interface IGetAllProductsRequest extends IRequestBase {
|
|
|
55
55
|
endPrice?: number;
|
|
56
56
|
sort?: Sort;
|
|
57
57
|
typeKeys?: string[];
|
|
58
|
-
flags?: string;
|
|
58
|
+
flags?: string | number | string[];
|
|
59
59
|
pointInTimeId?: string;
|
|
60
60
|
searchAfter?: string[];
|
|
61
61
|
pageSize?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IApiResponse, IRequestInit, IService, IGiftCardInfo, IRequestInfo, IGetCartItemCountResponse, IGetCartResponse } from '../..';
|
|
2
2
|
export interface IAddToCartRequest {
|
|
3
|
-
flags?: string;
|
|
3
|
+
flags?: string | number | string[];
|
|
4
4
|
productId: number;
|
|
5
5
|
stockBarcodeId: number;
|
|
6
6
|
quantity?: number;
|
|
@@ -29,7 +29,7 @@ export interface IGetCartItemCountRequest {
|
|
|
29
29
|
}
|
|
30
30
|
export interface IGetCartRequest {
|
|
31
31
|
requestInfo?: IRequestInfo;
|
|
32
|
-
flags?: string |
|
|
32
|
+
flags?: string | number | string[];
|
|
33
33
|
tags?: string[];
|
|
34
34
|
language?: string;
|
|
35
35
|
}
|