@featurevisor/types 0.64.0 → 0.66.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/.eslintcache +1 -1
- package/CHANGELOG.md +34 -0
- package/package.json +2 -2
- package/src/index.ts +1 -1
package/.eslintcache
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[{"/home/runner/work/featurevisor/featurevisor/packages/types/src/index.ts":"1"},{"size":
|
|
1
|
+
[{"/home/runner/work/featurevisor/featurevisor/packages/types/src/index.ts":"1"},{"size":9463,"mtime":1702486749066,"results":"2","hashOfConfig":"3"},{"filePath":"4","messages":"5","suppressedMessages":"6","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"sabtla","/home/runner/work/featurevisor/featurevisor/packages/types/src/index.ts",[],[]]
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,40 @@
|
|
|
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.66.0](https://github.com/featurevisor/featurevisor/compare/v0.65.0...v0.66.0) (2023-12-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* v1 ([0113baf](https://github.com/featurevisor/featurevisor/commit/0113baf657866c5b49a6924b74baca25cc5d42a1))
|
|
12
|
+
* v1 release ([#233](https://github.com/featurevisor/featurevisor/issues/233)) ([97ba8e2](https://github.com/featurevisor/featurevisor/commit/97ba8e25b01fe35efaaec352c27d584374b07035))
|
|
13
|
+
* v1\ ([7e2a188](https://github.com/featurevisor/featurevisor/commit/7e2a18806631122956c6bdd2fbc7771634fa054d))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* trigger release
|
|
19
|
+
* trigger stable release
|
|
20
|
+
* trigger stable release
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# [0.65.0](https://github.com/featurevisor/featurevisor/compare/v0.64.3...v0.65.0) (2023-12-13)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
* feat!: trigger v1 release (#232) ([2165101](https://github.com/featurevisor/featurevisor/commit/2165101081dc28280b6de00cd20b4b5b62919948)), closes [#232](https://github.com/featurevisor/featurevisor/issues/232)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### BREAKING CHANGES
|
|
33
|
+
|
|
34
|
+
* triggering v1 release
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
6
40
|
# [0.64.0](https://github.com/featurevisor/featurevisor/compare/v0.63.0...v0.64.0) (2023-11-29)
|
|
7
41
|
|
|
8
42
|
**Note:** Version bump only for package @featurevisor/types
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.0",
|
|
4
4
|
"description": "Common Typescript types for Featurevisor",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"url": "https://github.com/featurevisor/featurevisor/issues"
|
|
45
45
|
},
|
|
46
46
|
"license": "MIT",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "77129091034935d538a8bc35b3a6fda93c0f87e7"
|
|
48
48
|
}
|
package/src/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ export interface Context {
|
|
|
9
9
|
export type AttributeType = "boolean" | "string" | "integer" | "double" | "date" | "semver";
|
|
10
10
|
|
|
11
11
|
export interface Attribute {
|
|
12
|
-
archived?: boolean; // only available in YAML
|
|
12
|
+
archived?: boolean; // only available in YAML files
|
|
13
13
|
key: AttributeKey;
|
|
14
14
|
type: AttributeType;
|
|
15
15
|
capture?: boolean;
|