d2l-lms-launch-darkly-feature-converter-plugin
Advanced tools
Comparing version 0.18.0 to 0.19.0
{ | ||
"name": "d2l-lms-launch-darkly-feature-converter-plugin", | ||
"version": "0.18.0", | ||
"version": "0.19.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -36,2 +36,3 @@ const _ = require( 'lodash' ); | ||
const instanceBooleanSchemaV3_2 = require( '../schemas/instance-boolean/v3_2.json' ); | ||
const instanceBooleanSchemaV3_3 = require( '../schemas/instance-boolean/v3_3.json' ); | ||
@@ -45,2 +46,3 @@ const instanceMultivariateSchemaV1_0 = require( '../schemas/instance-multivariate/v1_0.json' ); | ||
const instanceMultivariateSchemaV3_2 = require( '../schemas/instance-multivariate/v3_2.json' ); | ||
const instanceMultivariateSchemaV3_3 = require( '../schemas/instance-multivariate/v3_3.json' ); | ||
@@ -52,2 +54,3 @@ const orgBooleanSchemaV1_0 = require( '../schemas/org-boolean/v1_0.json' ); | ||
const orgBooleanSchemaV3_2 = require( '../schemas/org-boolean/v3_2.json' ); | ||
const orgBooleanSchemaV3_3 = require( '../schemas/org-boolean/v3_3.json' ); | ||
@@ -61,2 +64,3 @@ const orgMultivariateSchemaV1_0 = require( '../schemas/org-multivariate/v1_0.json' ); | ||
const orgMultivariateSchemaV3_2 = require( '../schemas/org-multivariate/v3_2.json' ); | ||
const orgMultivariateSchemaV3_3 = require( '../schemas/org-multivariate/v3_3.json' ); | ||
@@ -133,3 +137,4 @@ const booleanFeatureKind = 'boolean'; | ||
instanceBooleanSchemaV3_0, | ||
instanceBooleanSchemaV3_2 | ||
instanceBooleanSchemaV3_2, | ||
instanceBooleanSchemaV3_3 | ||
] ), | ||
@@ -150,3 +155,4 @@ booleanVariationMapper, | ||
instanceMultivariateSchemaV3_1, | ||
instanceMultivariateSchemaV3_2 | ||
instanceMultivariateSchemaV3_2, | ||
instanceMultivariateSchemaV3_3 | ||
] ), | ||
@@ -165,3 +171,4 @@ multiVariationMapper, | ||
orgBooleanSchemaV3_0, | ||
orgBooleanSchemaV3_2 | ||
orgBooleanSchemaV3_2, | ||
orgBooleanSchemaV3_3 | ||
] ), | ||
@@ -182,3 +189,4 @@ booleanVariationMapper, | ||
orgMultivariateSchemaV3_1, | ||
orgMultivariateSchemaV3_2 | ||
orgMultivariateSchemaV3_2, | ||
orgMultivariateSchemaV3_3 | ||
] ), | ||
@@ -185,0 +193,0 @@ multiVariationMapper, |
@@ -5,11 +5,14 @@ module.exports = function( instanceType ) { | ||
case 'dev': | ||
return 'Dev'; | ||
case 'prod': | ||
return 'Prod'; | ||
case 'sales': | ||
return 'Sales'; | ||
case 'test': | ||
return 'Test'; | ||
case 'dev': | ||
return 'Dev'; | ||
default: | ||
@@ -16,0 +19,0 @@ throw new Error( `Invalid instance type: ${ instanceType }` ); |
@@ -8,5 +8,6 @@ const _ = require( 'lodash' ); | ||
_.forEach( [ | ||
[ 'dev', 'Dev' ], | ||
[ 'prod', 'Prod' ], | ||
[ 'sales', 'Sales' ], | ||
[ 'test', 'Test' ], | ||
[ 'dev', 'Dev' ] | ||
], pair => { | ||
@@ -13,0 +14,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
404394
141
18559