itube-specs 0.0.693 → 0.0.694

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.693",
4
+ "version": "0.0.694",
5
5
  "main": "./nuxt.config.ts",
6
6
  "types": "./types/index.d.ts",
7
7
  "scripts": {
@@ -1,7 +1,10 @@
1
1
  export interface IGroupedParameterItem {
2
2
  name: string
3
3
  title: string
4
- values: string[]
4
+ values: {
5
+ name: string
6
+ title: string
7
+ }
5
8
  kind: 'range' | 'select'
6
9
  }
7
10
 
@@ -9,4 +12,4 @@ export interface IGroupedParameter {
9
12
  title: string
10
13
  order: number
11
14
  items: IGroupedParameterItem[]
12
- }
15
+ }