@featurevisor/types 0.17.0 → 0.18.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.18.0](https://github.com/fahad19/featurevisor/compare/v0.17.0...v0.18.0) (2023-05-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * Initial features ([#66](https://github.com/fahad19/featurevisor/issues/66)) ([ec91d6e](https://github.com/fahad19/featurevisor/commit/ec91d6e383c6795850bbb8e35a734f754378c68f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [0.17.0](https://github.com/fahad19/featurevisor/compare/v0.16.0...v0.17.0) (2023-05-12)
7
18
 
8
19
 
package/lib/index.d.ts CHANGED
@@ -152,6 +152,7 @@ export interface StickyFeatures {
152
152
  };
153
153
  };
154
154
  }
155
+ export type InitialFeatures = StickyFeatures;
155
156
  /**
156
157
  * YAML-only type
157
158
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "0.17.0",
3
+ "version": "0.18.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": "4e00e7a43d21c668f2a313750c22613dbd0b3ad3"
44
+ "gitHead": "9de4cc7d1e0bf04f43d03db047ee7be331109359"
45
45
  }
package/src/index.ts CHANGED
@@ -247,6 +247,8 @@ export interface StickyFeatures {
247
247
  };
248
248
  }
249
249
 
250
+ export type InitialFeatures = StickyFeatures;
251
+
250
252
  /**
251
253
  * YAML-only type
252
254
  */