@featurevisor/types 2.1.2 → 2.6.7

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,75 @@
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.7](https://github.com/featurevisor/featurevisor/compare/v2.6.6...v2.6.7) (2026-02-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * trigger publish ([00ef864](https://github.com/featurevisor/featurevisor/commit/00ef864de50df54d258e0dccbd010005b18aa338))
12
+ * upgrade to Lerna v9 ([756f3ad](https://github.com/featurevisor/featurevisor/commit/756f3ada646d0ab3d7c2bd685ce7bfe2748b56b2))
13
+
14
+
15
+
16
+
17
+
18
+ ## [2.6.6](https://github.com/featurevisor/featurevisor/compare/v2.6.5...v2.6.6) (2026-02-05)
19
+
20
+ **Note:** Version bump only for package @featurevisor/types
21
+
22
+
23
+
24
+
25
+
26
+ ## [2.6.5](https://github.com/featurevisor/featurevisor/compare/v2.6.4...v2.6.5) (2026-02-05)
27
+
28
+ **Note:** Version bump only for package @featurevisor/types
29
+
30
+
31
+
32
+
33
+
34
+ ## [2.6.4](https://github.com/featurevisor/featurevisor/compare/v2.6.3...v2.6.4) (2026-02-05)
35
+
36
+ **Note:** Version bump only for package @featurevisor/types
37
+
38
+
39
+
40
+
41
+
42
+ ## [2.6.3](https://github.com/featurevisor/featurevisor/compare/v2.6.2...v2.6.3) (2026-02-05)
43
+
44
+
45
+ ### Bug Fixes
46
+
47
+ * trigger publish ([1c9be6a](https://github.com/featurevisor/featurevisor/commit/1c9be6aa5ba10403bedd8a4b7caa54953c72e774))
48
+
49
+
50
+
51
+
52
+
53
+ ## [2.6.2](https://github.com/featurevisor/featurevisor/compare/v2.6.1...v2.6.2) (2026-02-05)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * update types ([#384](https://github.com/featurevisor/featurevisor/issues/384)) ([579049a](https://github.com/featurevisor/featurevisor/commit/579049a2d1efaa17032fe680f83576197cebcf68))
59
+
60
+
61
+
62
+
63
+
64
+ # [2.6.0](https://github.com/featurevisor/featurevisor/compare/v2.5.0...v2.6.0) (2026-01-25)
65
+
66
+
67
+ ### Features
68
+
69
+ * Scopes ([#379](https://github.com/featurevisor/featurevisor/issues/379)) ([363f0ce](https://github.com/featurevisor/featurevisor/commit/363f0ce77fa5bfaf152c4098135c3d8bdb96af14))
70
+
71
+
72
+
73
+
74
+
6
75
  ## [2.1.2](https://github.com/featurevisor/featurevisor/compare/v2.1.1...v2.1.2) (2025-09-29)
7
76
 
8
77
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2025 Fahad Heylaal (https://fahad19.com)
3
+ Copyright (c) 2026 Fahad Heylaal (https://fahad19.com)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "2.1.2",
3
+ "version": "2.6.7",
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": "f16dc41c2a51477eff639b584c1f2d4e94019695"
50
+ "gitHead": "369725e89e88f886a88bf52c22d55961bf04e9f6"
51
51
  }
package/src/index.js CHANGED
@@ -1 +1 @@
1
- // empty
1
+ // empty line
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;