@atlaskit/tmp-editor-statsig 74.1.0 → 74.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 74.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e2a0403647315`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e2a0403647315) -
|
|
8
|
+
[CCI-15883] Define normalized telemetry event contract and fire authoritative sessionOutcome
|
|
9
|
+
analytics event once per Editor AI streaming session
|
|
10
|
+
|
|
3
11
|
## 74.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1710,8 +1710,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1710
1710
|
// Added 2026-03-20
|
|
1711
1711
|
platform_editor_chromeless_expand_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1712
1712
|
productKeys: {
|
|
1713
|
-
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1714
|
-
|
|
1713
|
+
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1714
|
+
},
|
|
1715
|
+
param: 'isEnabled',
|
|
1716
|
+
defaultValue: false
|
|
1717
|
+
}),
|
|
1718
|
+
// Added 2026-05-01
|
|
1719
|
+
platform_editor_ai_normalized_telemetry: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1720
|
+
productKeys: {
|
|
1721
|
+
confluence: 'platform_editor_ai_normalized_telemetry'
|
|
1715
1722
|
},
|
|
1716
1723
|
param: 'isEnabled',
|
|
1717
1724
|
defaultValue: false
|
|
@@ -1704,8 +1704,15 @@ export const editorExperimentsConfig = {
|
|
|
1704
1704
|
// Added 2026-03-20
|
|
1705
1705
|
platform_editor_chromeless_expand_fix: createBooleanExperiment({
|
|
1706
1706
|
productKeys: {
|
|
1707
|
-
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1708
|
-
|
|
1707
|
+
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1708
|
+
},
|
|
1709
|
+
param: 'isEnabled',
|
|
1710
|
+
defaultValue: false
|
|
1711
|
+
}),
|
|
1712
|
+
// Added 2026-05-01
|
|
1713
|
+
platform_editor_ai_normalized_telemetry: createBooleanExperiment({
|
|
1714
|
+
productKeys: {
|
|
1715
|
+
confluence: 'platform_editor_ai_normalized_telemetry'
|
|
1709
1716
|
},
|
|
1710
1717
|
param: 'isEnabled',
|
|
1711
1718
|
defaultValue: false
|
|
@@ -1704,8 +1704,15 @@ export var editorExperimentsConfig = {
|
|
|
1704
1704
|
// Added 2026-03-20
|
|
1705
1705
|
platform_editor_chromeless_expand_fix: createBooleanExperiment({
|
|
1706
1706
|
productKeys: {
|
|
1707
|
-
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1708
|
-
|
|
1707
|
+
confluence: 'platform_editor_chromeless_expand_fix'
|
|
1708
|
+
},
|
|
1709
|
+
param: 'isEnabled',
|
|
1710
|
+
defaultValue: false
|
|
1711
|
+
}),
|
|
1712
|
+
// Added 2026-05-01
|
|
1713
|
+
platform_editor_ai_normalized_telemetry: createBooleanExperiment({
|
|
1714
|
+
productKeys: {
|
|
1715
|
+
confluence: 'platform_editor_ai_normalized_telemetry'
|
|
1709
1716
|
},
|
|
1710
1717
|
param: 'isEnabled',
|
|
1711
1718
|
defaultValue: false
|
|
@@ -88,6 +88,12 @@ export declare const editorExperimentsConfig: {
|
|
|
88
88
|
productKeys?: ProductKeys;
|
|
89
89
|
typeGuard: IsBooleanType;
|
|
90
90
|
};
|
|
91
|
+
platform_editor_ai_normalized_telemetry: {
|
|
92
|
+
defaultValue: boolean;
|
|
93
|
+
param: string;
|
|
94
|
+
productKeys?: ProductKeys;
|
|
95
|
+
typeGuard: IsBooleanType;
|
|
96
|
+
};
|
|
91
97
|
platform_editor_react19_migration: {
|
|
92
98
|
defaultValue: boolean;
|
|
93
99
|
param: string;
|
|
@@ -88,6 +88,12 @@ export declare const editorExperimentsConfig: {
|
|
|
88
88
|
productKeys?: ProductKeys;
|
|
89
89
|
typeGuard: IsBooleanType;
|
|
90
90
|
};
|
|
91
|
+
platform_editor_ai_normalized_telemetry: {
|
|
92
|
+
defaultValue: boolean;
|
|
93
|
+
param: string;
|
|
94
|
+
productKeys?: ProductKeys;
|
|
95
|
+
typeGuard: IsBooleanType;
|
|
96
|
+
};
|
|
91
97
|
platform_editor_react19_migration: {
|
|
92
98
|
defaultValue: boolean;
|
|
93
99
|
param: string;
|
package/package.json
CHANGED