Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@devcycle/types

Package Overview
Dependencies
Maintainers
6
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devcycle/types - npm Package Compare versions

Comparing version 1.0.49 to 1.0.50

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc