@featurevisor/types 0.69.0 → 1.0.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/package.json +2 -2
- package/src/index.ts +2 -2
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":9487,"mtime":1702488845025,"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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.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": "02c2a84b1963688d521065075298c0e04ee6fdf7"
|
|
48
48
|
}
|
package/src/index.ts
CHANGED
|
@@ -142,7 +142,7 @@ export type VariableOverrideSegmentsOrConditions =
|
|
|
142
142
|
export interface VariableOverride {
|
|
143
143
|
value: VariableValue;
|
|
144
144
|
|
|
145
|
-
// one of the below must be present in YAML
|
|
145
|
+
// one of the below must be present in YAML files
|
|
146
146
|
// @TODO: try with above commented out TypeScript later
|
|
147
147
|
conditions?: Condition | Condition[];
|
|
148
148
|
segments?: GroupSegment | GroupSegment[];
|
|
@@ -151,7 +151,7 @@ export interface VariableOverride {
|
|
|
151
151
|
export interface Variable {
|
|
152
152
|
key: VariableKey;
|
|
153
153
|
value: VariableValue;
|
|
154
|
-
description?: string; // only available in YAML
|
|
154
|
+
description?: string; // only available in YAML files
|
|
155
155
|
overrides?: VariableOverride[];
|
|
156
156
|
}
|
|
157
157
|
|