@devcycle/types
Advanced tools
Comparing version 1.0.38 to 1.0.39
{ | ||
"name": "@devcycle/types", | ||
"version": "1.0.38", | ||
"version": "1.0.39", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "type": "commonjs", |
export interface DVCLogger { | ||
error(message: string): void; | ||
error(message: string, error?: unknown): void; | ||
warn(message: string): void; | ||
@@ -4,0 +4,0 @@ info(message: string): void; |
@@ -219,3 +219,14 @@ import { PublicEnvironment, PublicFeature, PublicProject, PublicVariable } from '../../config/configBody'; | ||
knownVariableKeys: number[]; | ||
/** | ||
* Information about how to establish a streaming connection to receive config updates | ||
*/ | ||
sse?: { | ||
url?: string; | ||
}; | ||
/** | ||
* the etag representing the CDN config used to generate this bucketed config. Can be used to determine config | ||
* staleness. | ||
*/ | ||
etag?: string; | ||
} | ||
export {}; |
@@ -36,2 +36,8 @@ import { Project, Environment, Variable, Variation, ListAudience, Audience, FeatureConfiguration, Rollout, RolloutStage, Feature, Target } from './models'; | ||
listAudiences?: ListAudience<IdType>[]; | ||
/** | ||
* Ably information used for establishing connections | ||
*/ | ||
ably?: { | ||
apiKey: string; | ||
}; | ||
} |
Sorry, the diff of this file is not supported yet
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
82907
1815