@constructor-io/constructorio-client-javascript 2.35.3 → 2.35.6
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/README.md +2 -2
- package/lib/types/autocomplete.d.ts +2 -11
- package/lib/types/browse.d.ts +1 -1
- package/lib/types/index.d.ts +30 -4
- package/lib/types/tracker.d.ts +2 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -28,9 +28,9 @@ You can find this in your [Constructor.io dashboard](https://constructor.io/dash
|
|
|
28
28
|
Once imported, an instance of the client can be created as follows:
|
|
29
29
|
|
|
30
30
|
```javascript
|
|
31
|
-
const
|
|
31
|
+
const ConstructorioClient = require('@constructor-io/constructorio-client-javascript');
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
const constructorio = new ConstructorioClient({
|
|
34
34
|
apiKey: 'YOUR API KEY',
|
|
35
35
|
});
|
|
36
36
|
```
|
|
@@ -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,
|
|
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
|
-
}
|
package/lib/types/browse.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ declare class Browse {
|
|
|
48
48
|
|
|
49
49
|
getBrowseResultsForItemIds(
|
|
50
50
|
itemIds: string[],
|
|
51
|
-
parameters?: Omit<IBrowseParameters, 'preFilterExpression' | '
|
|
51
|
+
parameters?: Omit<IBrowseParameters, 'preFilterExpression' | 'qsParam'>,
|
|
52
52
|
networkParameters?: NetworkParameters
|
|
53
53
|
): Promise<GetBrowseResultsForItemIdsResponse>;
|
|
54
54
|
|
package/lib/types/index.d.ts
CHANGED
|
@@ -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
|
|
131
|
-
data
|
|
132
|
-
parents
|
|
133
|
-
children
|
|
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
|
+
}
|
package/lib/types/tracker.d.ts
CHANGED
|
@@ -175,6 +175,7 @@ declare class Tracker {
|
|
|
175
175
|
parameters: {
|
|
176
176
|
quiz_id: string;
|
|
177
177
|
quiz_version_id: string;
|
|
178
|
+
quiz_session_id: string;
|
|
178
179
|
url: string;
|
|
179
180
|
section?: string;
|
|
180
181
|
result_count?: number;
|
|
@@ -188,6 +189,7 @@ declare class Tracker {
|
|
|
188
189
|
parameters: {
|
|
189
190
|
quiz_id: string;
|
|
190
191
|
quiz_version_id: string;
|
|
192
|
+
quiz_session_id: string;
|
|
191
193
|
item_id?: string;
|
|
192
194
|
item_name?: string;
|
|
193
195
|
section?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructor-io/constructorio-client-javascript",
|
|
3
|
-
"version": "2.35.
|
|
3
|
+
"version": "2.35.6",
|
|
4
4
|
"description": "Constructor.io JavaScript client",
|
|
5
5
|
"main": "lib/constructorio.js",
|
|
6
6
|
"types": "lib/types/constructorio.d.ts",
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"@typescript-eslint/parser": "^5.48.1",
|
|
54
54
|
"chai": "^4.2.0",
|
|
55
55
|
"chai-as-promised": "^7.1.1",
|
|
56
|
+
"docdash": "^2.0.1",
|
|
56
57
|
"dotenv": "^8.6.0",
|
|
57
58
|
"esbuild": "^0.12.28",
|
|
58
59
|
"eslint": "^8.17.0",
|
|
59
60
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
60
61
|
"eslint-plugin-import": "^2.25.2",
|
|
61
62
|
"husky": "^7.0.4",
|
|
62
|
-
"jsdoc": "^
|
|
63
|
-
"jsdom": "^16.
|
|
63
|
+
"jsdoc": "^4.0.2",
|
|
64
|
+
"jsdom": "^16.7.0",
|
|
64
65
|
"license-checker": "^25.0.1",
|
|
65
66
|
"lodash.clonedeep": "^4.5.0",
|
|
66
|
-
"minami": "^1.2.3",
|
|
67
67
|
"mocha": "^9.1.3",
|
|
68
68
|
"nyc": "^15.1.0",
|
|
69
69
|
"qs": "^6.11.0",
|