@searchspring/snap-controller 0.61.4 → 0.61.5
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.
|
@@ -137,7 +137,7 @@ var RecommendationController = /** @class */ (function (_super) {
|
|
|
137
137
|
product: {
|
|
138
138
|
id: result.id,
|
|
139
139
|
mappings: {
|
|
140
|
-
core: result.
|
|
140
|
+
core: result.mappings.core,
|
|
141
141
|
},
|
|
142
142
|
seed: getSeed(),
|
|
143
143
|
},
|
|
@@ -165,7 +165,7 @@ var RecommendationController = /** @class */ (function (_super) {
|
|
|
165
165
|
product: {
|
|
166
166
|
id: result.id,
|
|
167
167
|
mappings: {
|
|
168
|
-
core: result.
|
|
168
|
+
core: result.mappings.core,
|
|
169
169
|
},
|
|
170
170
|
seed: getSeed(),
|
|
171
171
|
},
|
|
@@ -194,7 +194,7 @@ var RecommendationController = /** @class */ (function (_super) {
|
|
|
194
194
|
product: {
|
|
195
195
|
id: result.id,
|
|
196
196
|
mappings: {
|
|
197
|
-
core: result.
|
|
197
|
+
core: result.mappings.core,
|
|
198
198
|
},
|
|
199
199
|
seed: getSeed(),
|
|
200
200
|
},
|
|
@@ -227,7 +227,7 @@ var RecommendationController = /** @class */ (function (_super) {
|
|
|
227
227
|
product: {
|
|
228
228
|
id: result.id,
|
|
229
229
|
mappings: {
|
|
230
|
-
core: result.
|
|
230
|
+
core: result.mappings.core,
|
|
231
231
|
},
|
|
232
232
|
seed: getSeed(),
|
|
233
233
|
},
|
|
@@ -260,7 +260,7 @@ var RecommendationController = /** @class */ (function (_super) {
|
|
|
260
260
|
product: {
|
|
261
261
|
id: result.id,
|
|
262
262
|
mappings: {
|
|
263
|
-
core: result.
|
|
263
|
+
core: result.mappings.core,
|
|
264
264
|
},
|
|
265
265
|
seed: getSeed(),
|
|
266
266
|
},
|
|
@@ -290,7 +290,7 @@ var RecommendationController = /** @class */ (function (_super) {
|
|
|
290
290
|
products: results.map(function (result) { return ({
|
|
291
291
|
id: result.id,
|
|
292
292
|
mappings: {
|
|
293
|
-
core: result.
|
|
293
|
+
core: result.mappings.core,
|
|
294
294
|
},
|
|
295
295
|
quantity: result.quantity,
|
|
296
296
|
}); }),
|
|
@@ -65,7 +65,7 @@ export class RecommendationController extends AbstractController {
|
|
|
65
65
|
product: {
|
|
66
66
|
id: result.id,
|
|
67
67
|
mappings: {
|
|
68
|
-
core: result.
|
|
68
|
+
core: result.mappings.core,
|
|
69
69
|
},
|
|
70
70
|
seed: getSeed(),
|
|
71
71
|
},
|
|
@@ -92,7 +92,7 @@ export class RecommendationController extends AbstractController {
|
|
|
92
92
|
product: {
|
|
93
93
|
id: result.id,
|
|
94
94
|
mappings: {
|
|
95
|
-
core: result.
|
|
95
|
+
core: result.mappings.core,
|
|
96
96
|
},
|
|
97
97
|
seed: getSeed(),
|
|
98
98
|
},
|
|
@@ -120,7 +120,7 @@ export class RecommendationController extends AbstractController {
|
|
|
120
120
|
product: {
|
|
121
121
|
id: result.id,
|
|
122
122
|
mappings: {
|
|
123
|
-
core: result.
|
|
123
|
+
core: result.mappings.core,
|
|
124
124
|
},
|
|
125
125
|
seed: getSeed(),
|
|
126
126
|
},
|
|
@@ -152,7 +152,7 @@ export class RecommendationController extends AbstractController {
|
|
|
152
152
|
product: {
|
|
153
153
|
id: result.id,
|
|
154
154
|
mappings: {
|
|
155
|
-
core: result.
|
|
155
|
+
core: result.mappings.core,
|
|
156
156
|
},
|
|
157
157
|
seed: getSeed(),
|
|
158
158
|
},
|
|
@@ -184,7 +184,7 @@ export class RecommendationController extends AbstractController {
|
|
|
184
184
|
product: {
|
|
185
185
|
id: result.id,
|
|
186
186
|
mappings: {
|
|
187
|
-
core: result.
|
|
187
|
+
core: result.mappings.core,
|
|
188
188
|
},
|
|
189
189
|
seed: getSeed(),
|
|
190
190
|
},
|
|
@@ -213,7 +213,7 @@ export class RecommendationController extends AbstractController {
|
|
|
213
213
|
products: results.map((result) => ({
|
|
214
214
|
id: result.id,
|
|
215
215
|
mappings: {
|
|
216
|
-
core: result.
|
|
216
|
+
core: result.mappings.core,
|
|
217
217
|
},
|
|
218
218
|
quantity: result.quantity,
|
|
219
219
|
})),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@searchspring/snap-controller",
|
|
3
|
-
"version": "0.61.
|
|
3
|
+
"version": "0.61.5",
|
|
4
4
|
"description": "Snap Controllers",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -20,22 +20,22 @@
|
|
|
20
20
|
"test:watch": "jest --watch"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@searchspring/snap-toolbox": "^0.61.
|
|
23
|
+
"@searchspring/snap-toolbox": "^0.61.5",
|
|
24
24
|
"css.escape": "1.5.1",
|
|
25
25
|
"deepmerge": "4.3.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@searchspring/snap-client": "^0.61.
|
|
29
|
-
"@searchspring/snap-event-manager": "^0.61.
|
|
30
|
-
"@searchspring/snap-logger": "^0.61.
|
|
31
|
-
"@searchspring/snap-profiler": "^0.61.
|
|
32
|
-
"@searchspring/snap-store-mobx": "^0.61.
|
|
33
|
-
"@searchspring/snap-tracker": "^0.61.
|
|
34
|
-
"@searchspring/snap-url-manager": "^0.61.
|
|
28
|
+
"@searchspring/snap-client": "^0.61.5",
|
|
29
|
+
"@searchspring/snap-event-manager": "^0.61.5",
|
|
30
|
+
"@searchspring/snap-logger": "^0.61.5",
|
|
31
|
+
"@searchspring/snap-profiler": "^0.61.5",
|
|
32
|
+
"@searchspring/snap-store-mobx": "^0.61.5",
|
|
33
|
+
"@searchspring/snap-tracker": "^0.61.5",
|
|
34
|
+
"@searchspring/snap-url-manager": "^0.61.5"
|
|
35
35
|
},
|
|
36
36
|
"sideEffects": false,
|
|
37
37
|
"files": [
|
|
38
38
|
"dist/**/*"
|
|
39
39
|
],
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "bae1305742558d1736e535d77a76da7b845bc046"
|
|
41
41
|
}
|