@constructor-io/constructorio-client-javascript 2.35.2 → 2.35.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.
@@ -242,7 +242,7 @@ var Browse = /*#__PURE__*/function () {
242
242
  * @param {string[]} [parameters.hiddenFields] - Hidden metadata fields to return
243
243
  * @param {string[]} [parameters.hiddenFacets] - Hidden facets to return
244
244
  * @param {object} [parameters.variationsMap] - The variations map object to aggregate variations. Please refer to https://docs.constructor.io/rest_api/variations_mapping for details
245
- * @param {object} [parameters.qs] - Parameters listed above can be serialized into a JSON object and parsed through this parameter. Please refer to https://docs.constructor.io/rest_api/browse/queries/
245
+ * @param {object} [parameters.qsParam] - Parameters listed above can be serialized into a JSON object and parsed through this parameter. Please refer to https://docs.constructor.io/rest_api/browse/queries/
246
246
  * @param {object} [networkParameters] - Parameters relevant to the network request
247
247
  * @param {number} [networkParameters.timeout] - Request timeout (in milliseconds)
248
248
  * @returns {Promise}
@@ -74,7 +74,7 @@ function createQuizUrl(quizId, parameters, options, path) {
74
74
  } // Pull a (answers) from parameters and transform
75
75
 
76
76
 
77
- if (answers) {
77
+ if (answers && answers.length) {
78
78
  answersParamString = "&".concat(helpers.stringify({
79
79
  a: answers.map(function (ans) {
80
80
  return (0, _toConsumableArray2["default"])(ans).join(',');
@@ -186,7 +186,7 @@ var Search = /*#__PURE__*/function () {
186
186
  * @param {string[]} [parameters.hiddenFields] - Hidden metadata fields to return
187
187
  * @param {string[]} [parameters.hiddenFacets] - Hidden facets to return
188
188
  * @param {object} [parameters.variationsMap] - The variations map object to aggregate variations. Please refer to https://docs.constructor.io/rest_api/variations_mapping for details
189
- * @param {object} [parameters.qs] - Parameters listed above can be serialized into a JSON object and parsed through this parameter. Please refer to https://docs.constructor.io/rest_api/search/queries/
189
+ * @param {object} [parameters.qsParam] - Parameters listed above can be serialized into a JSON object and parsed through this parameter. Please refer to https://docs.constructor.io/rest_api/search/queries/
190
190
  * @param {object} [networkParameters] - Parameters relevant to the network request
191
191
  * @param {number} [networkParameters.timeout] - Request timeout (in milliseconds)
192
192
  * @returns {Promise}
@@ -274,7 +274,7 @@ var Search = /*#__PURE__*/function () {
274
274
  * @param {object} [parameters.variationsMap] - The variations map object to aggregate variations. Please refer to https://docs.constructor.io/rest_api/variations_mapping for details
275
275
  * @param {string[]} [parameters.hiddenFields] - Hidden metadata fields to return
276
276
  * @param {string[]} [parameters.hiddenFacets] - Hidden facets to return
277
- * @param {object} [parameters.qs] - Parameters listed above can be serialized into a JSON object and parsed through this parameter. Please refer to https://docs.constructor.io/rest_api/search/queries/
277
+ * @param {object} [parameters.qsParam] - Parameters listed above can be serialized into a JSON object and parsed through this parameter. Please refer to https://docs.constructor.io/rest_api/search/queries/
278
278
  * @param {object} [networkParameters] - Parameters relevant to the network request
279
279
  * @param {number} [networkParameters.timeout] - Request timeout (in milliseconds)
280
280
  * @returns {Promise}
@@ -1,5 +1,6 @@
1
1
  import {
2
2
  ConstructorClientOptions,
3
+ Item,
3
4
  NetworkParameters,
4
5
  RequestFeature,
5
6
  RequestFeatureVariant,
@@ -35,7 +36,7 @@ declare class Autocomplete {
35
36
  ********** */
36
37
  export interface AutocompleteResponse extends Record<string, any> {
37
38
  request: Partial<AutocompleteRequestType>;
38
- sections: Record<string, Section>;
39
+ sections: Record<string, Item[]>;
39
40
  result_id: string;
40
41
  }
41
42
 
@@ -47,13 +48,3 @@ export interface AutocompleteRequestType extends Record<string, any> {
47
48
  feature_variants: Partial<RequestFeatureVariant>;
48
49
  searchandized_items: Record<string, any>;
49
50
  }
50
-
51
- export type Section = Partial<SectionItem>[];
52
-
53
- export interface SectionItem extends Record<string, any> {
54
- data: Record<string, any>;
55
- is_slotted: boolean;
56
- labels: Record<string, any>;
57
- matched_terms: string[];
58
- value: string;
59
- }
@@ -29,7 +29,7 @@ export interface IBrowseParameters {
29
29
  hiddenFields?: string[];
30
30
  hiddenFacets?: string[];
31
31
  variationsMap?: Record<string, any>;
32
- qs?: Record<string, any>;
32
+ qsParam?: Record<string, any>;
33
33
  }
34
34
 
35
35
  declare class Browse {
@@ -48,7 +48,7 @@ declare class Browse {
48
48
 
49
49
  getBrowseResultsForItemIds(
50
50
  itemIds: string[],
51
- parameters?: Omit<IBrowseParameters, 'preFilterExpression' | 'qs'>,
51
+ parameters?: Omit<IBrowseParameters, 'preFilterExpression' | 'qsParam'>,
52
52
  networkParameters?: NetworkParameters
53
53
  ): Promise<GetBrowseResultsForItemIdsResponse>;
54
54
 
@@ -127,10 +127,10 @@ export interface FacetOption extends Record<string, any> {
127
127
  }
128
128
 
129
129
  export interface Group extends BaseGroup, Record<string, any> {
130
- count: number;
131
- data: Record<string, any>;
132
- parents: BaseGroup[];
133
- children: Group[];
130
+ count?: number;
131
+ data?: Record<string, any>;
132
+ parents?: BaseGroup[];
133
+ children?: Group[];
134
134
  }
135
135
 
136
136
  export interface Collection extends Record<string, any> {
@@ -178,3 +178,29 @@ export type FilterExpressionRange = {
178
178
  };
179
179
 
180
180
  export type FilterExpressionRangeValue = ['-inf' | number, 'inf' | number];
181
+
182
+ export interface Item extends Record<string, any> {
183
+ value: string;
184
+ is_slotted: boolean;
185
+ labels: Record<string, unknown>;
186
+ matched_terms: string[];
187
+ data?: ItemData;
188
+ }
189
+
190
+ export interface ItemData extends Record<string, any> {
191
+ url?: string;
192
+ id?: string;
193
+ image_url?: string;
194
+ group_ids?: string[];
195
+ groups?: Group[]
196
+ facets?: Facet[];
197
+ }
198
+
199
+ export interface Product extends Item {
200
+ }
201
+
202
+ export interface SearchSuggestion extends Item {
203
+ data?: {
204
+ total_num_results?: number
205
+ } & ItemData;
206
+ }
@@ -28,6 +28,7 @@ export interface SearchParameters {
28
28
  hiddenFields?: string[];
29
29
  hiddenFacets?: string[];
30
30
  variationsMap?: Record<string, any>;
31
+ qsParam?: Record<string, any>;
31
32
  }
32
33
  declare class Search {
33
34
  constructor(options: ConstructorClientOptions);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructor-io/constructorio-client-javascript",
3
- "version": "2.35.2",
3
+ "version": "2.35.4",
4
4
  "description": "Constructor.io JavaScript client",
5
5
  "main": "lib/constructorio.js",
6
6
  "types": "lib/types/constructorio.d.ts",
@@ -60,7 +60,7 @@
60
60
  "eslint-plugin-import": "^2.25.2",
61
61
  "husky": "^7.0.4",
62
62
  "jsdoc": "^3.6.7",
63
- "jsdom": "^16.5.0",
63
+ "jsdom": "^16.7.0",
64
64
  "license-checker": "^25.0.1",
65
65
  "lodash.clonedeep": "^4.5.0",
66
66
  "minami": "^1.2.3",