@featurevisor/types 1.32.0 → 1.33.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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.33.0](https://github.com/featurevisor/featurevisor/compare/v1.32.0...v1.33.0) (2025-03-08)
7
+
8
+
9
+ ### Features
10
+
11
+ * allow deprecating variables ([#345](https://github.com/featurevisor/featurevisor/issues/345)) ([cecbf5b](https://github.com/featurevisor/featurevisor/commit/cecbf5beb87d06d46c654c352910766f565e81b2))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.32.0](https://github.com/featurevisor/featurevisor/compare/v1.31.0...v1.32.0) (2025-02-26)
7
18
 
8
19
 
package/lib/index.d.ts CHANGED
@@ -81,6 +81,7 @@ export interface Variation {
81
81
  variables?: Variable[];
82
82
  }
83
83
  export interface VariableSchema {
84
+ deprecated?: boolean;
84
85
  key: VariableKey;
85
86
  type: VariableType;
86
87
  defaultValue: VariableValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
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": "c360fac0c91b586847633c2d41cf5e4d6922a9b8"
43
+ "gitHead": "46a939abcc0158eee6cf1e845b068f7885798bcf"
44
44
  }
package/src/index.ts CHANGED
@@ -163,6 +163,7 @@ export interface Variation {
163
163
  }
164
164
 
165
165
  export interface VariableSchema {
166
+ deprecated?: boolean;
166
167
  key: VariableKey;
167
168
  type: VariableType;
168
169
  defaultValue: VariableValue;