@devcycle/types
Advanced tools
Comparing version 1.0.49 to 1.0.50
{ | ||
"name": "@devcycle/types", | ||
"version": "1.0.49", | ||
"version": "1.0.50", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
import { PublicEnvironment, PublicFeature, PublicProject, PublicVariable } from '../../config/configBody'; | ||
import { VariableValue } from '../../config/models'; | ||
import type { DVCJSON, VariableValue } from '../../config/models'; | ||
import 'reflect-metadata'; | ||
import type { DVCJSON } from '../../validators/dvcJSON'; | ||
export declare const SDKTypeValues: string[]; | ||
@@ -6,0 +5,0 @@ export declare type SDKTypes = typeof SDKTypeValues[number]; |
@@ -37,7 +37,6 @@ export declare enum VariableSource { | ||
*/ | ||
export declare type VariableValue = string | boolean | number | JSON; | ||
declare type JSON = { | ||
export declare type DVCJSON = { | ||
[key: string]: string | boolean | number; | ||
}; | ||
export declare type VariableTypeAlias<T> = T extends boolean ? boolean : (T extends number ? number : (T extends string ? string : (T extends JSON ? JSON : never))); | ||
export {}; | ||
export declare type VariableValue = string | boolean | number | DVCJSON; | ||
export declare type VariableTypeAlias<T> = T extends boolean ? boolean : (T extends number ? number : (T extends string ? string : (T extends DVCJSON ? DVCJSON : never))); |
import { ValidationOptions } from '@nestjs/class-validator'; | ||
export declare type DVCJSON = { | ||
[key: string]: string | number | boolean; | ||
}; | ||
/** | ||
@@ -6,0 +3,0 @@ * Validates that JSON Object is a valid JSON Object with only |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
40011
2
194638
4945
7