@featurevisor/types
Advanced tools
Comparing version 1.2.2 to 1.3.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [1.3.0](https://github.com/featurevisor/featurevisor/compare/v1.2.4...v1.3.0) (2024-01-23) | ||
### Features | ||
* allow exposing features with tags + environment combination ([#254](https://github.com/featurevisor/featurevisor/issues/254)) ([1ae08e7](https://github.com/featurevisor/featurevisor/commit/1ae08e71393b620f98f7080aff18033a3e3b7192)) | ||
## [1.2.2](https://github.com/featurevisor/featurevisor/compare/v1.2.1...v1.2.2) (2024-01-17) | ||
@@ -8,0 +19,0 @@ |
@@ -186,8 +186,8 @@ export type AttributeKey = string; | ||
} | ||
export type Tag = string; | ||
export interface Environment { | ||
expose?: boolean; | ||
expose?: boolean | Tag[]; | ||
rules: Rule[]; | ||
force?: Force[]; | ||
} | ||
export type Tag = string; | ||
export interface ParsedFeature { | ||
@@ -194,0 +194,0 @@ key: FeatureKey; |
{ | ||
"name": "@featurevisor/types", | ||
"version": "1.2.2", | ||
"version": "1.3.0", | ||
"description": "Common Typescript types for Featurevisor", | ||
@@ -47,3 +47,3 @@ "main": "dist/index.js", | ||
"license": "MIT", | ||
"gitHead": "65f5422bceb755a6d6a2e5b0c025b41486612c73" | ||
"gitHead": "92829e94ab09474433695d29577bd3eb22490f97" | ||
} |
@@ -296,4 +296,6 @@ export type AttributeKey = string; | ||
export type Tag = string; | ||
export interface Environment { | ||
expose?: boolean; | ||
expose?: boolean | Tag[]; | ||
rules: Rule[]; | ||
@@ -303,4 +305,2 @@ force?: Force[]; | ||
export type Tag = string; | ||
export interface ParsedFeature { | ||
@@ -307,0 +307,0 @@ key: FeatureKey; |
Sorry, the diff of this file is not supported yet
44695