@atlaskit/tmp-editor-statsig 13.26.0 → 13.27.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
|
+
## 13.27.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3c501a06f7c8b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3c501a06f7c8b) -
|
|
8
|
+
[EDITOR-2460] add new experiment to config file
|
|
9
|
+
|
|
3
10
|
## 13.26.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1098,5 +1098,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1098
1098
|
param: 'cohort',
|
|
1099
1099
|
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1100
1100
|
defaultValue: 'control'
|
|
1101
|
+
}),
|
|
1102
|
+
// Added 2025-10-29
|
|
1103
|
+
platform_editor_lovability_inline_code: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1104
|
+
productKeys: {
|
|
1105
|
+
confluence: 'platform_editor_lovability_inline_code'
|
|
1106
|
+
},
|
|
1107
|
+
param: 'isEnabled',
|
|
1108
|
+
defaultValue: false
|
|
1101
1109
|
})
|
|
1102
1110
|
};
|
|
@@ -1092,5 +1092,13 @@ export const editorExperimentsConfig = {
|
|
|
1092
1092
|
param: 'cohort',
|
|
1093
1093
|
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1094
1094
|
defaultValue: 'control'
|
|
1095
|
+
}),
|
|
1096
|
+
// Added 2025-10-29
|
|
1097
|
+
platform_editor_lovability_inline_code: createBooleanExperiment({
|
|
1098
|
+
productKeys: {
|
|
1099
|
+
confluence: 'platform_editor_lovability_inline_code'
|
|
1100
|
+
},
|
|
1101
|
+
param: 'isEnabled',
|
|
1102
|
+
defaultValue: false
|
|
1095
1103
|
})
|
|
1096
1104
|
};
|
|
@@ -1092,5 +1092,13 @@ export var editorExperimentsConfig = {
|
|
|
1092
1092
|
param: 'cohort',
|
|
1093
1093
|
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1094
1094
|
defaultValue: 'control'
|
|
1095
|
+
}),
|
|
1096
|
+
// Added 2025-10-29
|
|
1097
|
+
platform_editor_lovability_inline_code: createBooleanExperiment({
|
|
1098
|
+
productKeys: {
|
|
1099
|
+
confluence: 'platform_editor_lovability_inline_code'
|
|
1100
|
+
},
|
|
1101
|
+
param: 'isEnabled',
|
|
1102
|
+
defaultValue: false
|
|
1095
1103
|
})
|
|
1096
1104
|
};
|
|
@@ -807,4 +807,10 @@ export declare const editorExperimentsConfig: {
|
|
|
807
807
|
param: string;
|
|
808
808
|
productKeys?: import("./types").ProductKeys;
|
|
809
809
|
};
|
|
810
|
+
platform_editor_lovability_inline_code: {
|
|
811
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
812
|
+
defaultValue: boolean;
|
|
813
|
+
param: string;
|
|
814
|
+
productKeys?: import("./types").ProductKeys;
|
|
815
|
+
};
|
|
810
816
|
};
|
|
@@ -807,4 +807,10 @@ export declare const editorExperimentsConfig: {
|
|
|
807
807
|
param: string;
|
|
808
808
|
productKeys?: import("./types").ProductKeys;
|
|
809
809
|
};
|
|
810
|
+
platform_editor_lovability_inline_code: {
|
|
811
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
812
|
+
defaultValue: boolean;
|
|
813
|
+
param: string;
|
|
814
|
+
productKeys?: import("./types").ProductKeys;
|
|
815
|
+
};
|
|
810
816
|
};
|
package/package.json
CHANGED