@featurevisor/types 2.0.2 → 2.1.2
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 +19 -0
- package/README.md +1 -1
- package/package.json +2 -2
- package/src/bucket.d.ts +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.1.2](https://github.com/featurevisor/featurevisor/compare/v2.1.1...v2.1.2) (2025-09-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* formatting in types package ([#372](https://github.com/featurevisor/featurevisor/issues/372)) ([ab4ca96](https://github.com/featurevisor/featurevisor/commit/ab4ca96a10a12cab901b4054f005cab5b49e11a1))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [2.0.3](https://github.com/featurevisor/featurevisor/compare/v2.0.2...v2.0.3) (2025-07-20)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @featurevisor/types
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [2.0.2](https://github.com/featurevisor/featurevisor/compare/v2.0.1...v2.0.2) (2025-07-19)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @featurevisor/types
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.2",
|
|
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": "
|
|
50
|
+
"gitHead": "f16dc41c2a51477eff639b584c1f2d4e94019695"
|
|
51
51
|
}
|
package/src/bucket.d.ts
CHANGED
|
@@ -6,9 +6,3 @@ export interface OrBucketBy {
|
|
|
6
6
|
or: AttributeKey[];
|
|
7
7
|
}
|
|
8
8
|
export type BucketBy = PlainBucketBy | AndBucketBy | OrBucketBy;
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Used by SDK
|
|
12
|
-
*/
|
|
13
|
-
export type BucketKey = string;
|
|
14
|
-
export type BucketValue = number; // 0 to 100,000 (100% * 1000 to include three decimal places in same integer)
|