itube-specs 0.0.456 → 0.0.458

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.
@@ -41,7 +41,6 @@ export function useMeta(t, page: string, brandName: string, sortOptions?: IChips
41
41
  title: metaTitle.value,
42
42
  meta: [
43
43
  { name: 'description', content: getPath('meta_description') },
44
- { name: 'keywords', content: getPath('keywords') },
45
44
  ],
46
45
  }));
47
46
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.456",
4
+ "version": "0.0.458",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -10,4 +10,5 @@ export const cleanCategoryInfo = (card: IRawCategoryInfo): ICardInfo => ({
10
10
  fullDescription: card.fullDescription || '',
11
11
  related: convertCategoriesToChips(card.related || [], 'categories'),
12
12
  metaDescription: card.meta_description || '',
13
+ header: card.header || '',
13
14
  })
@@ -25,4 +25,5 @@ export interface ICardInfo {
25
25
  fullDescription?: string
26
26
  related?: IChipsItem[]
27
27
  metaDescription?: string
28
+ header?: string
28
29
  }