itube-specs 0.0.704 → 0.0.706

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.704",
4
+ "version": "0.0.706",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -10,5 +10,4 @@ export const cleanModelInfo = (card: IRawModelInfo): ICardInfo => ({
10
10
  parameters: card.parameters || '',
11
11
  fullDescription: card.long_description || card.bio || '',
12
12
  relatedNames: card.relatedNames || [],
13
- isFilter: card.is_filter || false,
14
13
  })
@@ -22,7 +22,6 @@ export interface ICardInfo {
22
22
  };
23
23
  parameters?: IParameterModel[]
24
24
  relatedNames?: string[]
25
- isFilter?: boolean
26
25
 
27
26
  // Fields specific to Category
28
27
  related?: IChipsItem[]
@@ -5,7 +5,8 @@ export interface IGroupedParameterItem {
5
5
  name: string
6
6
  title: string
7
7
  }
8
- kind: 'range' | 'select'
8
+ is_filter: boolean
9
+ kind: 'range' | 'select' | 'chips' | 'radio'
9
10
  }
10
11
 
11
12
  export interface IGroupedParameter {
@@ -10,5 +10,6 @@ export interface IParameterModel {
10
10
  title: string
11
11
  values: IParameterModelValue[]
12
12
  group: IModelGroup
13
- kind: 'range' | 'select'
13
+ is_filter: boolean
14
+ kind: 'range' | 'select' | 'radio' | 'chips'
14
15
  }
@@ -8,7 +8,6 @@ export interface IRawModelInfo {
8
8
  website: string;
9
9
  bio: string;
10
10
  orientation: string;
11
- is_filter: boolean;
12
11
  ranking: {
13
12
  LastMonth: string;
14
13
  ModelRank: string;