@featurevisor/types 0.5.0 → 0.5.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.5.3](https://github.com/fahad19/featurevisor/compare/v0.5.2...v0.5.3) (2023-03-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * linting fixes ([#27](https://github.com/fahad19/featurevisor/issues/27)) ([8f16194](https://github.com/fahad19/featurevisor/commit/8f161943332a617a5e25f811c985e1a33a9559fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [0.5.0](https://github.com/fahad19/featurevisor/compare/v0.4.0...v0.5.0) (2023-03-22)
7
18
 
8
19
 
package/lib/index.d.ts CHANGED
@@ -74,6 +74,7 @@ export interface Variable {
74
74
  overrides?: VariableOverride[];
75
75
  }
76
76
  export interface Variation {
77
+ description?: string;
77
78
  type: VariationType;
78
79
  value: VariationValue;
79
80
  weight?: Weight;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "0.5.0",
3
+ "version": "0.5.3",
4
4
  "description": "Common Typescript types for Featurevisor",
5
5
  "main": "dist/index.js",
6
6
  "module": "lib/index.js",
@@ -41,5 +41,5 @@
41
41
  "url": "https://github.com/fahad19/featurevisor/issues"
42
42
  },
43
43
  "license": "MIT",
44
- "gitHead": "15345171bbdf0cf83cfb45e49d3987488bb1e4ce"
44
+ "gitHead": "66ed55a4be820cb16ecb5bfee7c4df1e06be912f"
45
45
  }
package/src/index.ts CHANGED
@@ -135,6 +135,7 @@ export interface Variable {
135
135
  }
136
136
 
137
137
  export interface Variation {
138
+ description?: string; // only available in YAML
138
139
  type: VariationType;
139
140
  value: VariationValue;
140
141
  weight?: Weight; // 0 to 100 (available from parsed YAML, but not in datafile)