@featurevisor/types 0.14.0 → 0.15.0

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,25 @@
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.15.0](https://github.com/fahad19/featurevisor/compare/v0.14.1...v0.15.0) (2023-04-23)
7
+
8
+ **Note:** Version bump only for package @featurevisor/types
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.14.1](https://github.com/fahad19/featurevisor/compare/v0.14.0...v0.14.1) (2023-04-22)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * do not require variation type in Feature's YAML ([#57](https://github.com/fahad19/featurevisor/issues/57)) ([2e7c0cf](https://github.com/fahad19/featurevisor/commit/2e7c0cfb441a60beffa14dae17152257d97862b0))
20
+
21
+
22
+
23
+
24
+
6
25
  # [0.14.0](https://github.com/fahad19/featurevisor/compare/v0.13.1...v0.14.0) (2023-04-21)
7
26
 
8
27
  **Note:** Version bump only for package @featurevisor/types
package/lib/index.d.ts CHANGED
@@ -75,7 +75,6 @@ export interface Variable {
75
75
  }
76
76
  export interface Variation {
77
77
  description?: string;
78
- type: VariationType;
79
78
  value: VariationValue;
80
79
  weight?: Weight;
81
80
  variables?: Variable[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
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": "eb0599df92747f40e6ece174e4de37ac4c098c4c"
44
+ "gitHead": "254d79ee3bcbd5d9c2f771f66e653ffe5512176e"
45
45
  }
package/src/index.ts CHANGED
@@ -151,7 +151,6 @@ export interface Variable {
151
151
 
152
152
  export interface Variation {
153
153
  description?: string; // only available in YAML
154
- type: VariationType;
155
154
  value: VariationValue;
156
155
  weight?: Weight; // 0 to 100 (available from parsed YAML, but not in datafile)
157
156
  variables?: Variable[];