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

@mozilla/nimbus-schemas

Package Overview
Dependencies
Maintainers
4
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mozilla/nimbus-schemas - npm Package Compare versions

Comparing version 2023.9.3 to 2023.10.1

40

index.d.ts

@@ -11,2 +11,3 @@ /* tslint:disable */

export type AnalysisErrors = AnalysisError[];
export type FeatureVariableType = "int" | "string" | "boolean" | "json";
export type SizingReleaseChannel = "release" | "beta" | "nightly";

@@ -39,2 +40,41 @@ export type SizingUserType = "new" | "existing";

}
export interface FeatureManifest {
[k: string]: FeatureWithExposure | FeatureWithoutExposure;
}
/**
* A feature that has exposure.
*/
export interface FeatureWithExposure {
description?: string;
isEarlyStartup?: boolean;
variables: {
[k: string]: FeatureVariable;
};
schema?: NimbusFeatureSchema;
hasExposure: true;
exposureDescription: string;
}
export interface FeatureVariable {
description?: string;
enum?: string[];
fallbackPref?: string;
type?: FeatureVariableType;
setPref?: string;
}
export interface NimbusFeatureSchema {
uri: string;
path: string;
}
/**
* A feature without exposure.
*/
export interface FeatureWithoutExposure {
description?: string;
isEarlyStartup?: boolean;
variables: {
[k: string]: FeatureVariable;
};
schema?: NimbusFeatureSchema;
hasExposure?: false;
}
export interface Metadata {

@@ -41,0 +81,0 @@ analysis_start_time?: string;

2

package.json
{
"name": "@mozilla/nimbus-schemas",
"version": "2023.9.3",
"version": "2023.10.1",
"description": "Schemas used by Mozilla Nimbus and related projects.",

@@ -5,0 +5,0 @@ "main": "index.d.ts",

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