itube-specs 0.0.591 → 0.0.593

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "itube-specs",
3
3
  "type": "module",
4
- "version": "0.0.591",
4
+ "version": "0.0.593",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -10,4 +10,5 @@ export const cleanChannelInfo = (card: IRawChannelInfo): ICardInfo => ({
10
10
  isNetwork: card.is_network || false,
11
11
  updated: card.updated || 0,
12
12
  img: card.avatar_url || card.video_thumb_urls.webp?.[ThumbSize.Big] || '',
13
+ tags: card.tags || [],
13
14
  })
@@ -12,6 +12,7 @@ export interface ICardInfo {
12
12
  url?: string;
13
13
  isNetwork?: boolean;
14
14
  updated?: number;
15
+ tags?: string[];
15
16
 
16
17
  // Fields specific to Model
17
18
  social?: {
@@ -2,6 +2,7 @@ export interface IGroupedParameterItem {
2
2
  name: string
3
3
  title: string
4
4
  values: string[]
5
+ kind: 'range' | 'select'
5
6
  }
6
7
 
7
8
  export interface IGroupedParameter {