@mozilla/nimbus-schemas 2024.12.1 → 2024.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -175,6 +175,12 @@ export interface DesktopAllVersionsNimbusExperiment {
|
|
|
175
175
|
* Opt out of feature schema validation.
|
|
176
176
|
*/
|
|
177
177
|
featureValidationOptOut?: boolean;
|
|
178
|
+
/**
|
|
179
|
+
* Does the experiment require a restart to take effect?
|
|
180
|
+
*
|
|
181
|
+
* Only used by Firefox Labs Opt-Ins.
|
|
182
|
+
*/
|
|
183
|
+
requiresRestart?: boolean;
|
|
178
184
|
localizations?: ExperimentLocalizations | null;
|
|
179
185
|
}
|
|
180
186
|
export interface ExperimentBucketConfig {
|
|
@@ -510,6 +516,12 @@ export interface DesktopNimbusExperiment {
|
|
|
510
516
|
* Opt out of feature schema validation.
|
|
511
517
|
*/
|
|
512
518
|
featureValidationOptOut?: boolean;
|
|
519
|
+
/**
|
|
520
|
+
* Does the experiment require a restart to take effect?
|
|
521
|
+
*
|
|
522
|
+
* Only used by Firefox Labs Opt-Ins.
|
|
523
|
+
*/
|
|
524
|
+
requiresRestart?: boolean;
|
|
513
525
|
localizations?: ExperimentLocalizations | null;
|
|
514
526
|
}
|
|
515
527
|
/**
|
package/package.json
CHANGED
|
@@ -202,6 +202,10 @@
|
|
|
202
202
|
"description": "Opt out of feature schema validation.",
|
|
203
203
|
"type": "boolean"
|
|
204
204
|
},
|
|
205
|
+
"requiresRestart": {
|
|
206
|
+
"description": "Does the experiment require a restart to take effect? Only used by Firefox Labs Opt-Ins.",
|
|
207
|
+
"type": "boolean"
|
|
208
|
+
},
|
|
205
209
|
"localizations": {
|
|
206
210
|
"anyOf": [
|
|
207
211
|
{
|
|
@@ -202,6 +202,10 @@
|
|
|
202
202
|
"description": "Opt out of feature schema validation.",
|
|
203
203
|
"type": "boolean"
|
|
204
204
|
},
|
|
205
|
+
"requiresRestart": {
|
|
206
|
+
"description": "Does the experiment require a restart to take effect? Only used by Firefox Labs Opt-Ins.",
|
|
207
|
+
"type": "boolean"
|
|
208
|
+
},
|
|
205
209
|
"localizations": {
|
|
206
210
|
"anyOf": [
|
|
207
211
|
{
|