@atlaskit/tmp-editor-statsig 88.4.0 → 88.5.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
|
+
## 88.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e52fe1a335508`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e52fe1a335508) -
|
|
8
|
+
[ux] Fixed evaluating experiment as FG instead of experiment
|
|
9
|
+
|
|
3
10
|
## 88.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1405,6 +1405,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1405
1405
|
param: 'isEnabled',
|
|
1406
1406
|
defaultValue: false
|
|
1407
1407
|
}),
|
|
1408
|
+
// Added 2026-06-02
|
|
1409
|
+
aifc_page_create_with_rovo_include_infographics: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1410
|
+
productKeys: {
|
|
1411
|
+
confluence: 'aifc_page_create_with_rovo_include_infographics'
|
|
1412
|
+
},
|
|
1413
|
+
param: 'isEnabled',
|
|
1414
|
+
defaultValue: false
|
|
1415
|
+
}),
|
|
1408
1416
|
// Added 2026-02-23
|
|
1409
1417
|
'cc-maui-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1410
1418
|
productKeys: {
|
|
@@ -1399,6 +1399,14 @@ export const editorExperimentsConfig = {
|
|
|
1399
1399
|
param: 'isEnabled',
|
|
1400
1400
|
defaultValue: false
|
|
1401
1401
|
}),
|
|
1402
|
+
// Added 2026-06-02
|
|
1403
|
+
aifc_page_create_with_rovo_include_infographics: createBooleanExperiment({
|
|
1404
|
+
productKeys: {
|
|
1405
|
+
confluence: 'aifc_page_create_with_rovo_include_infographics'
|
|
1406
|
+
},
|
|
1407
|
+
param: 'isEnabled',
|
|
1408
|
+
defaultValue: false
|
|
1409
|
+
}),
|
|
1402
1410
|
// Added 2026-02-23
|
|
1403
1411
|
'cc-maui-experiment': createBooleanExperiment({
|
|
1404
1412
|
productKeys: {
|
|
@@ -1399,6 +1399,14 @@ export var editorExperimentsConfig = {
|
|
|
1399
1399
|
param: 'isEnabled',
|
|
1400
1400
|
defaultValue: false
|
|
1401
1401
|
}),
|
|
1402
|
+
// Added 2026-06-02
|
|
1403
|
+
aifc_page_create_with_rovo_include_infographics: createBooleanExperiment({
|
|
1404
|
+
productKeys: {
|
|
1405
|
+
confluence: 'aifc_page_create_with_rovo_include_infographics'
|
|
1406
|
+
},
|
|
1407
|
+
param: 'isEnabled',
|
|
1408
|
+
defaultValue: false
|
|
1409
|
+
}),
|
|
1402
1410
|
// Added 2026-02-23
|
|
1403
1411
|
'cc-maui-experiment': createBooleanExperiment({
|
|
1404
1412
|
productKeys: {
|
|
@@ -1087,6 +1087,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1087
1087
|
productKeys?: ProductKeys;
|
|
1088
1088
|
typeGuard: IsBooleanType;
|
|
1089
1089
|
};
|
|
1090
|
+
aifc_page_create_with_rovo_include_infographics: {
|
|
1091
|
+
defaultValue: boolean;
|
|
1092
|
+
param: string;
|
|
1093
|
+
productKeys?: ProductKeys;
|
|
1094
|
+
typeGuard: IsBooleanType;
|
|
1095
|
+
};
|
|
1090
1096
|
'cc-maui-experiment': {
|
|
1091
1097
|
defaultValue: boolean;
|
|
1092
1098
|
param: string;
|
|
@@ -1087,6 +1087,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1087
1087
|
productKeys?: ProductKeys;
|
|
1088
1088
|
typeGuard: IsBooleanType;
|
|
1089
1089
|
};
|
|
1090
|
+
aifc_page_create_with_rovo_include_infographics: {
|
|
1091
|
+
defaultValue: boolean;
|
|
1092
|
+
param: string;
|
|
1093
|
+
productKeys?: ProductKeys;
|
|
1094
|
+
typeGuard: IsBooleanType;
|
|
1095
|
+
};
|
|
1090
1096
|
'cc-maui-experiment': {
|
|
1091
1097
|
defaultValue: boolean;
|
|
1092
1098
|
param: string;
|
package/package.json
CHANGED