@atlaskit/tmp-editor-statsig 62.1.0 → 62.2.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 62.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`65f1d80415ae8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/65f1d80415ae8) -
|
|
8
|
+
EDITOR-679 improve reliability of media provider
|
|
9
|
+
|
|
3
10
|
## 62.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1996,5 +1996,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1996
1996
|
},
|
|
1997
1997
|
param: 'isEnabled',
|
|
1998
1998
|
defaultValue: false
|
|
1999
|
+
}),
|
|
2000
|
+
// Added 2026-04-12
|
|
2001
|
+
platform_editor_media_reliability_enhancements: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2002
|
+
productKeys: {
|
|
2003
|
+
confluence: 'platform_editor_media_reliability_enhancements'
|
|
2004
|
+
},
|
|
2005
|
+
param: 'isEnabled',
|
|
2006
|
+
defaultValue: false
|
|
1999
2007
|
})
|
|
2000
2008
|
};
|
|
@@ -1990,5 +1990,13 @@ export const editorExperimentsConfig = {
|
|
|
1990
1990
|
},
|
|
1991
1991
|
param: 'isEnabled',
|
|
1992
1992
|
defaultValue: false
|
|
1993
|
+
}),
|
|
1994
|
+
// Added 2026-04-12
|
|
1995
|
+
platform_editor_media_reliability_enhancements: createBooleanExperiment({
|
|
1996
|
+
productKeys: {
|
|
1997
|
+
confluence: 'platform_editor_media_reliability_enhancements'
|
|
1998
|
+
},
|
|
1999
|
+
param: 'isEnabled',
|
|
2000
|
+
defaultValue: false
|
|
1993
2001
|
})
|
|
1994
2002
|
};
|
|
@@ -1990,5 +1990,13 @@ export var editorExperimentsConfig = {
|
|
|
1990
1990
|
},
|
|
1991
1991
|
param: 'isEnabled',
|
|
1992
1992
|
defaultValue: false
|
|
1993
|
+
}),
|
|
1994
|
+
// Added 2026-04-12
|
|
1995
|
+
platform_editor_media_reliability_enhancements: createBooleanExperiment({
|
|
1996
|
+
productKeys: {
|
|
1997
|
+
confluence: 'platform_editor_media_reliability_enhancements'
|
|
1998
|
+
},
|
|
1999
|
+
param: 'isEnabled',
|
|
2000
|
+
defaultValue: false
|
|
1993
2001
|
})
|
|
1994
2002
|
};
|
|
@@ -1466,5 +1466,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1466
1466
|
productKeys?: ProductKeys;
|
|
1467
1467
|
typeGuard: IsBooleanType;
|
|
1468
1468
|
};
|
|
1469
|
+
platform_editor_media_reliability_enhancements: {
|
|
1470
|
+
defaultValue: boolean;
|
|
1471
|
+
param: string;
|
|
1472
|
+
productKeys?: ProductKeys;
|
|
1473
|
+
typeGuard: IsBooleanType;
|
|
1474
|
+
};
|
|
1469
1475
|
};
|
|
1470
1476
|
export {};
|
|
@@ -1466,5 +1466,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1466
1466
|
productKeys?: ProductKeys;
|
|
1467
1467
|
typeGuard: IsBooleanType;
|
|
1468
1468
|
};
|
|
1469
|
+
platform_editor_media_reliability_enhancements: {
|
|
1470
|
+
defaultValue: boolean;
|
|
1471
|
+
param: string;
|
|
1472
|
+
productKeys?: ProductKeys;
|
|
1473
|
+
typeGuard: IsBooleanType;
|
|
1474
|
+
};
|
|
1469
1475
|
};
|
|
1470
1476
|
export {};
|
package/package.json
CHANGED