@featurevisor/types 1.35.0 → 1.35.3
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 +8 -0
- package/package.json +2 -2
- package/src/index.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [1.35.3](https://github.com/featurevisor/featurevisor/compare/v1.35.2...v1.35.3) (2025-04-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @featurevisor/types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.35.0](https://github.com/featurevisor/featurevisor/compare/v1.34.2...v1.35.0) (2025-03-13)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/types",
|
|
3
|
-
"version": "1.35.
|
|
3
|
+
"version": "1.35.3",
|
|
4
4
|
"description": "Common Typescript types for Featurevisor",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"url": "https://github.com/featurevisor/featurevisor/issues"
|
|
41
41
|
},
|
|
42
42
|
"license": "MIT",
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "253ff5dade7c9ee953f6a57cda097a6c9ed93aa2"
|
|
44
44
|
}
|
package/src/index.ts
CHANGED
|
@@ -224,7 +224,7 @@ export interface Traffic {
|
|
|
224
224
|
[key: string]: VariableValue;
|
|
225
225
|
};
|
|
226
226
|
|
|
227
|
-
allocation: Allocation[];
|
|
227
|
+
allocation: Allocation[]; // @TODO: in v2, make it optional
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
export type PlainBucketBy = AttributeKey;
|
|
@@ -365,7 +365,7 @@ export interface ExistingFeature {
|
|
|
365
365
|
// @TODO: use Exclude with Traffic?
|
|
366
366
|
key: RuleKey;
|
|
367
367
|
percentage: Percentage;
|
|
368
|
-
allocation: Allocation[];
|
|
368
|
+
allocation: Allocation[]; // @TODO: in v2, make it optional
|
|
369
369
|
}[];
|
|
370
370
|
ranges?: Range[]; // if in a Group (mutex), these are the available slot ranges
|
|
371
371
|
}
|