@featurevisor/core
Advanced tools
Comparing version 0.5.3 to 0.6.0
@@ -6,2 +6,13 @@ # Change Log | ||
# [0.6.0](https://github.com/fahad19/featurevisor/compare/v0.5.3...v0.6.0) (2023-03-25) | ||
### Features | ||
* Introduce new JSON type for variables ([#28](https://github.com/fahad19/featurevisor/issues/28)) ([49ff4cb](https://github.com/fahad19/featurevisor/commit/49ff4cb99f840f29e9ac8fcacfee9a9a961ff776)) | ||
## [0.5.3](https://github.com/fahad19/featurevisor/compare/v0.5.2...v0.5.3) (2023-03-25) | ||
@@ -8,0 +19,0 @@ |
@@ -151,3 +151,3 @@ "use strict"; | ||
key: Joi.string(), | ||
type: Joi.string().valid("string", "integer", "boolean", "double", "array", "object"), | ||
type: Joi.string().valid("string", "integer", "boolean", "double", "array", "object", "json"), | ||
defaultValue: variableValueJoiSchema, // @TODO: make it stricter based on `type` | ||
@@ -154,0 +154,0 @@ })), |
{ | ||
"name": "@featurevisor/core", | ||
"version": "0.5.3", | ||
"version": "0.6.0", | ||
"description": "Core package of Featurevisor for Node.js usage", | ||
@@ -44,4 +44,4 @@ "main": "lib/index.js", | ||
"dependencies": { | ||
"@featurevisor/sdk": "^0.5.3", | ||
"@featurevisor/types": "^0.5.3", | ||
"@featurevisor/sdk": "^0.6.0", | ||
"@featurevisor/types": "^0.6.0", | ||
"axios": "^1.3.4", | ||
@@ -57,3 +57,3 @@ "joi": "^17.8.3", | ||
}, | ||
"gitHead": "66ed55a4be820cb16ecb5bfee7c4df1e06be912f" | ||
"gitHead": "03d4c4e37ac7491f306f5858c98bf65ac8f62fdf" | ||
} |
@@ -181,3 +181,11 @@ // for use in node only | ||
key: Joi.string(), // @TODO: make it unique among siblings | ||
type: Joi.string().valid("string", "integer", "boolean", "double", "array", "object"), | ||
type: Joi.string().valid( | ||
"string", | ||
"integer", | ||
"boolean", | ||
"double", | ||
"array", | ||
"object", | ||
"json", | ||
), | ||
defaultValue: variableValueJoiSchema, // @TODO: make it stricter based on `type` | ||
@@ -184,0 +192,0 @@ }), |
Sorry, the diff of this file is not supported yet
167341
3417
+ Added@featurevisor/sdk@0.6.0(transitive)
+ Added@featurevisor/types@0.6.0(transitive)
- Removed@featurevisor/sdk@0.5.3(transitive)
- Removed@featurevisor/types@0.5.3(transitive)
Updated@featurevisor/sdk@^0.6.0
Updated@featurevisor/types@^0.6.0