@arrowsphere/api-client 3.40.0-rc-jpb.1 → 3.40.0-rc-jpb.2
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.
|
@@ -18,8 +18,8 @@ export declare type PaginateArgument = {
|
|
|
18
18
|
};
|
|
19
19
|
export declare type SearchBodyPriceBandsArgument = {
|
|
20
20
|
keywords?: string;
|
|
21
|
-
filters?:
|
|
22
|
-
exclusionFilters?:
|
|
21
|
+
filters?: SearchProductFilterArgument[];
|
|
22
|
+
exclusionFilters?: SearchProductFilterArgument[];
|
|
23
23
|
sort?: SortArgument;
|
|
24
24
|
highlight?: boolean;
|
|
25
25
|
aggregatorFilter?: string[];
|
|
@@ -33,8 +33,8 @@ export declare type SearchBodyPriceBandsArgument = {
|
|
|
33
33
|
export declare type SearchBodyArgument = {
|
|
34
34
|
aggregatorFilter?: string[];
|
|
35
35
|
endCustomerRef?: string;
|
|
36
|
-
exclusionFilters?:
|
|
37
|
-
filters?:
|
|
36
|
+
exclusionFilters?: SearchProductFilterArgument[];
|
|
37
|
+
filters?: SearchProductFilterArgument[];
|
|
38
38
|
getFamilies?: boolean;
|
|
39
39
|
highlight?: boolean;
|
|
40
40
|
keywords?: string;
|
|
@@ -45,11 +45,11 @@ export declare type SearchBodyArgument = {
|
|
|
45
45
|
sort?: SortArgument;
|
|
46
46
|
topOffers?: boolean;
|
|
47
47
|
};
|
|
48
|
-
export declare type
|
|
48
|
+
export declare type SearchProductFilterArgument = {
|
|
49
49
|
name: string;
|
|
50
50
|
value: string | string[];
|
|
51
51
|
operator?: OperatorArgument;
|
|
52
|
-
filters?:
|
|
52
|
+
filters?: SearchProductFilterArgument[];
|
|
53
53
|
};
|
|
54
54
|
export declare enum OperatorArgument {
|
|
55
55
|
OR = "OR",
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.40.0-rc-jpb.
|
|
7
|
+
"version": "3.40.0-rc-jpb.2",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|