@mozilla/nimbus-schemas 2024.12.2 → 2025.1.1
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
|
@@ -171,6 +171,12 @@ export interface DesktopAllVersionsNimbusExperiment {
|
|
|
171
171
|
* The description shown in Firefox Labs (Fluent ID)
|
|
172
172
|
*/
|
|
173
173
|
firefoxLabsDescription?: string | null;
|
|
174
|
+
/**
|
|
175
|
+
* Links that will be used with the firefoxLabsDescription Fluent ID. May be null for Firefox Labs Opt-In recipes that do not use links.
|
|
176
|
+
*/
|
|
177
|
+
firefoxLabsDescriptionLinks?: {
|
|
178
|
+
[k: string]: string;
|
|
179
|
+
} | null;
|
|
174
180
|
/**
|
|
175
181
|
* Opt out of feature schema validation.
|
|
176
182
|
*/
|
|
@@ -512,6 +518,12 @@ export interface DesktopNimbusExperiment {
|
|
|
512
518
|
* The description shown in Firefox Labs (Fluent ID)
|
|
513
519
|
*/
|
|
514
520
|
firefoxLabsDescription?: string | null;
|
|
521
|
+
/**
|
|
522
|
+
* Links that will be used with the firefoxLabsDescription Fluent ID. May be null for Firefox Labs Opt-In recipes that do not use links.
|
|
523
|
+
*/
|
|
524
|
+
firefoxLabsDescriptionLinks?: {
|
|
525
|
+
[k: string]: string;
|
|
526
|
+
} | null;
|
|
515
527
|
/**
|
|
516
528
|
* Opt out of feature schema validation.
|
|
517
529
|
*/
|
package/package.json
CHANGED
|
@@ -198,6 +198,23 @@
|
|
|
198
198
|
],
|
|
199
199
|
"description": "The description shown in Firefox Labs (Fluent ID)"
|
|
200
200
|
},
|
|
201
|
+
"firefoxLabsDescriptionLinks": {
|
|
202
|
+
"anyOf": [
|
|
203
|
+
{
|
|
204
|
+
"additionalProperties": {
|
|
205
|
+
"format": "uri",
|
|
206
|
+
"maxLength": 2083,
|
|
207
|
+
"minLength": 1,
|
|
208
|
+
"type": "string"
|
|
209
|
+
},
|
|
210
|
+
"type": "object"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"type": "null"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"description": "Links that will be used with the firefoxLabsDescription Fluent ID. May be null for Firefox Labs Opt-In recipes that do not use links."
|
|
217
|
+
},
|
|
201
218
|
"featureValidationOptOut": {
|
|
202
219
|
"description": "Opt out of feature schema validation.",
|
|
203
220
|
"type": "boolean"
|
|
@@ -256,6 +273,7 @@
|
|
|
256
273
|
},
|
|
257
274
|
"required": [
|
|
258
275
|
"firefoxLabsDescription",
|
|
276
|
+
"firefoxLabsDescriptionLinks",
|
|
259
277
|
"firefoxLabsGroup",
|
|
260
278
|
"firefoxLabsTitle"
|
|
261
279
|
],
|
|
@@ -198,6 +198,23 @@
|
|
|
198
198
|
],
|
|
199
199
|
"description": "The description shown in Firefox Labs (Fluent ID)"
|
|
200
200
|
},
|
|
201
|
+
"firefoxLabsDescriptionLinks": {
|
|
202
|
+
"anyOf": [
|
|
203
|
+
{
|
|
204
|
+
"additionalProperties": {
|
|
205
|
+
"format": "uri",
|
|
206
|
+
"maxLength": 2083,
|
|
207
|
+
"minLength": 1,
|
|
208
|
+
"type": "string"
|
|
209
|
+
},
|
|
210
|
+
"type": "object"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"type": "null"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"description": "Links that will be used with the firefoxLabsDescription Fluent ID. May be null for Firefox Labs Opt-In recipes that do not use links."
|
|
217
|
+
},
|
|
201
218
|
"featureValidationOptOut": {
|
|
202
219
|
"description": "Opt out of feature schema validation.",
|
|
203
220
|
"type": "boolean"
|
|
@@ -256,6 +273,7 @@
|
|
|
256
273
|
},
|
|
257
274
|
"required": [
|
|
258
275
|
"firefoxLabsDescription",
|
|
276
|
+
"firefoxLabsDescriptionLinks",
|
|
259
277
|
"firefoxLabsGroup",
|
|
260
278
|
"firefoxLabsTitle"
|
|
261
279
|
],
|