@featurevisor/types 2.0.3 → 2.6.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,28 @@
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
+ # [2.6.0](https://github.com/featurevisor/featurevisor/compare/v2.5.0...v2.6.0) (2026-01-25)
7
+
8
+
9
+ ### Features
10
+
11
+ * Scopes ([#379](https://github.com/featurevisor/featurevisor/issues/379)) ([363f0ce](https://github.com/featurevisor/featurevisor/commit/363f0ce77fa5bfaf152c4098135c3d8bdb96af14))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.1.2](https://github.com/featurevisor/featurevisor/compare/v2.1.1...v2.1.2) (2025-09-29)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * formatting in types package ([#372](https://github.com/featurevisor/featurevisor/issues/372)) ([ab4ca96](https://github.com/featurevisor/featurevisor/commit/ab4ca96a10a12cab901b4054f005cab5b49e11a1))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [2.0.3](https://github.com/featurevisor/featurevisor/compare/v2.0.2...v2.0.3) (2025-07-20)
7
29
 
8
30
  **Note:** Version bump only for package @featurevisor/types
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > Common TypeScript typings for Featurevisor packages
4
4
 
5
- Visit [https://featurevisor.com](https://featurevisor.com) for more information.
5
+ Visit [https://featurevisor.com](https://featurevisor.com) for more information
6
6
 
7
7
  ## License
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "2.0.3",
3
+ "version": "2.6.0",
4
4
  "description": "Common Typescript types for Featurevisor",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",
@@ -47,5 +47,5 @@
47
47
  "url": "https://github.com/featurevisor/featurevisor/issues"
48
48
  },
49
49
  "license": "MIT",
50
- "gitHead": "5522c5cb67b648aac05c100733390e92a42f694b"
50
+ "gitHead": "e5dafb8a51d7653e35fe17cacc0c14d7e95f69d0"
51
51
  }
package/src/test.d.ts CHANGED
@@ -44,6 +44,8 @@ export interface FeatureAssertion {
44
44
  matrix?: AssertionMatrix;
45
45
  description?: string;
46
46
  environment: EnvironmentKey;
47
+ scope?: string;
48
+ // @TODO: support `tag` later, similar to `scope` above
47
49
  at?: Weight; // bucket weight: 0 to 100
48
50
 
49
51
  sticky?: StickyFeatures;