@bridgeline-digital/hawksearch-handlebars-ui 2.0.0-beta.16 → 2.0.0-beta.18
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.
|
@@ -299,77 +299,76 @@ export interface HawkSearchConfig {
|
|
|
299
299
|
/**
|
|
300
300
|
* Map item attributes to common object properties
|
|
301
301
|
*/
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
url?: string;
|
|
302
|
+
fieldMappings?: {
|
|
303
|
+
recommendations?: {
|
|
304
|
+
/**
|
|
305
|
+
* #### Default Value
|
|
306
|
+
* `'longdescription'`
|
|
307
|
+
*/
|
|
308
|
+
description?: string;
|
|
309
|
+
/**
|
|
310
|
+
* #### Default Value
|
|
311
|
+
* `'image'`
|
|
312
|
+
*/
|
|
313
|
+
imageUrl?: string;
|
|
314
|
+
/**
|
|
315
|
+
* #### Default Value
|
|
316
|
+
* `'price'`
|
|
317
|
+
*/
|
|
318
|
+
price?: string;
|
|
319
|
+
/**
|
|
320
|
+
* #### Default Value
|
|
321
|
+
* `'saleprice'`
|
|
322
|
+
*/
|
|
323
|
+
salePrice?: string;
|
|
324
|
+
/**
|
|
325
|
+
* #### Default Value
|
|
326
|
+
* `'itemname'`
|
|
327
|
+
*/
|
|
328
|
+
title?: string;
|
|
329
|
+
/**
|
|
330
|
+
* #### Default Value
|
|
331
|
+
* `'url'`
|
|
332
|
+
*/
|
|
333
|
+
url?: string;
|
|
334
|
+
};
|
|
335
|
+
searchResults?: {
|
|
336
|
+
/**
|
|
337
|
+
* #### Default Value
|
|
338
|
+
* `'longdescription'`
|
|
339
|
+
*/
|
|
340
|
+
description?: string;
|
|
341
|
+
/**
|
|
342
|
+
* #### Default Value
|
|
343
|
+
* `'image'`
|
|
344
|
+
*/
|
|
345
|
+
imageUrl?: string;
|
|
346
|
+
/**
|
|
347
|
+
* #### Default Value
|
|
348
|
+
* `'price'`
|
|
349
|
+
*/
|
|
350
|
+
price?: string;
|
|
351
|
+
/**
|
|
352
|
+
* #### Default Value
|
|
353
|
+
* `'saleprice'`
|
|
354
|
+
*/
|
|
355
|
+
salePrice?: string;
|
|
356
|
+
/**
|
|
357
|
+
* #### Default Value
|
|
358
|
+
* `'itemname'`
|
|
359
|
+
*/
|
|
360
|
+
title?: string;
|
|
361
|
+
/**
|
|
362
|
+
* #### Default Value
|
|
363
|
+
* `'type'`
|
|
364
|
+
*/
|
|
365
|
+
type?: string;
|
|
366
|
+
/**
|
|
367
|
+
* #### Default Value
|
|
368
|
+
* `'url'`
|
|
369
|
+
*/
|
|
370
|
+
url?: string;
|
|
371
|
+
};
|
|
373
372
|
};
|
|
374
373
|
/**
|
|
375
374
|
* Specifies how values should be formatted for different cultures
|
|
@@ -418,12 +417,6 @@ export interface HawkSearchConfig {
|
|
|
418
417
|
* `'disableSpellcheck'`
|
|
419
418
|
*/
|
|
420
419
|
disableSpellcheck?: string;
|
|
421
|
-
/**
|
|
422
|
-
* This value is used as a prefix before the field name of the facet. For example, with the default value, if the field name is `color`, the query string parameter would become `facet-color`.
|
|
423
|
-
* #### Default Value
|
|
424
|
-
* `'facet'`
|
|
425
|
-
*/
|
|
426
|
-
facet?: string;
|
|
427
420
|
/**
|
|
428
421
|
* #### Default Value
|
|
429
422
|
* `'page'`
|