@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.
@@ -299,77 +299,76 @@ export interface HawkSearchConfig {
299
299
  /**
300
300
  * Map item attributes to common object properties
301
301
  */
302
- recommendationsFieldMappings?: {
303
- /**
304
- * #### Default Value
305
- * `'longdescription'`
306
- */
307
- description?: string;
308
- /**
309
- * #### Default Value
310
- * `'image'`
311
- */
312
- imageUrl?: string;
313
- /**
314
- * #### Default Value
315
- * `'price'`
316
- */
317
- price?: string;
318
- /**
319
- * #### Default Value
320
- * `'saleprice'`
321
- */
322
- salePrice?: string;
323
- /**
324
- * #### Default Value
325
- * `'itemname'`
326
- */
327
- title?: string;
328
- /**
329
- * #### Default Value
330
- * `'url'`
331
- */
332
- url?: string;
333
- };
334
- /**
335
- * Map item attributes to common object properties
336
- */
337
- searchResultsFieldMappings?: {
338
- /**
339
- * #### Default Value
340
- * `'longdescription'`
341
- */
342
- description?: string;
343
- /**
344
- * #### Default Value
345
- * `'image'`
346
- */
347
- imageUrl?: string;
348
- /**
349
- * #### Default Value
350
- * `'price'`
351
- */
352
- price?: string;
353
- /**
354
- * #### Default Value
355
- * `'saleprice'`
356
- */
357
- salePrice?: string;
358
- /**
359
- * #### Default Value
360
- * `'itemname'`
361
- */
362
- title?: string;
363
- /**
364
- * #### Default Value
365
- * `'type'`
366
- */
367
- type?: string;
368
- /**
369
- * #### Default Value
370
- * `'url'`
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
  *