@bridgeline-digital/hawksearch-handlebars-ui 2.0.0-beta.17 → 2.0.0-beta.19
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/dist/configuration/configuration.models.d.ts +82 -71
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/readme.md +1 -1
|
@@ -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
|
|
@@ -451,6 +450,18 @@ export interface HawkSearchConfig {
|
|
|
451
450
|
* `'/search'`
|
|
452
451
|
*/
|
|
453
452
|
searchUrl?: string;
|
|
453
|
+
seo?: {
|
|
454
|
+
title?: {
|
|
455
|
+
/**
|
|
456
|
+
* Value prepended to title returned from API
|
|
457
|
+
*/
|
|
458
|
+
prefix?: string;
|
|
459
|
+
/**
|
|
460
|
+
* Value appended to title returned from API
|
|
461
|
+
*/
|
|
462
|
+
suffix?: string;
|
|
463
|
+
};
|
|
464
|
+
};
|
|
454
465
|
/**
|
|
455
466
|
* Specifies whether components should be rendered in the [Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM). This is highly recommended to avoid CSS conflicts.
|
|
456
467
|
*
|