@featurevisor/types 0.24.0 → 0.25.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,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.25.0](https://github.com/fahad19/featurevisor/compare/v0.24.0...v0.25.0) (2023-05-22)
7
+
8
+
9
+ ### Features
10
+
11
+ * Pretty JSON ([#75](https://github.com/fahad19/featurevisor/issues/75)) ([322bc3a](https://github.com/fahad19/featurevisor/commit/322bc3a7f1676cf32e19f693d5736dc8f1db8d5a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [0.24.0](https://github.com/fahad19/featurevisor/compare/v0.23.0...v0.24.0) (2023-05-21)
7
18
 
8
19
 
package/lib/index.d.ts CHANGED
@@ -194,7 +194,6 @@ export interface ParsedFeature {
194
194
  * with consistent bucketing
195
195
  */
196
196
  export interface ExistingFeature {
197
- revision: string;
198
197
  variations: {
199
198
  value: VariationValue;
200
199
  weight: Weight;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "0.24.0",
3
+ "version": "0.25.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": "b682809599adf027404e3368aa5690f705aa0736"
44
+ "gitHead": "33fbe32f62eea51b71b7377bd4d890f319838be6"
45
45
  }
package/src/index.ts CHANGED
@@ -307,7 +307,6 @@ export interface ParsedFeature {
307
307
  * with consistent bucketing
308
308
  */
309
309
  export interface ExistingFeature {
310
- revision: string;
311
310
  variations: {
312
311
  // @TODO: use Exclude with Variation?
313
312
  value: VariationValue;