@featurevisor/types
Advanced tools
Comparing version 1.29.2 to 1.31.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [1.31.0](https://github.com/featurevisor/featurevisor/compare/v1.30.1...v1.31.0) (2025-02-13) | ||
### Features | ||
* variables schema as dictionary ([#343](https://github.com/featurevisor/featurevisor/issues/343)) ([18e8aed](https://github.com/featurevisor/featurevisor/commit/18e8aedab10ecdd68b7f0cbf911896b14ab37c91)) | ||
## [1.29.2](https://github.com/featurevisor/featurevisor/compare/v1.29.1...v1.29.2) (2025-01-25) | ||
@@ -8,0 +19,0 @@ |
@@ -144,3 +144,3 @@ export type AttributeKey = string; | ||
required?: Required[]; | ||
variablesSchema?: VariableSchema[]; | ||
variablesSchema?: VariableSchema[] | Record<VariableKey, VariableSchema>; | ||
variations?: Variation[]; | ||
@@ -147,0 +147,0 @@ bucketBy: BucketBy; |
{ | ||
"name": "@featurevisor/types", | ||
"version": "1.29.2", | ||
"version": "1.31.0", | ||
"description": "Common Typescript types for Featurevisor", | ||
@@ -43,3 +43,3 @@ "main": "dist/index.js", | ||
"license": "MIT", | ||
"gitHead": "2b62bb80bc2eaafd66934f5649da5286542e1af7" | ||
"gitHead": "fddbfd83a41ff252d0f67410a9208665b51d412f" | ||
} |
@@ -244,3 +244,3 @@ export type AttributeKey = string; | ||
required?: Required[]; | ||
variablesSchema?: VariableSchema[]; | ||
variablesSchema?: VariableSchema[] | Record<VariableKey, VariableSchema>; | ||
variations?: Variation[]; | ||
@@ -247,0 +247,0 @@ bucketBy: BucketBy; |
45448