@atlaskit/tmp-editor-statsig 32.6.0 → 32.7.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
|
+
## 32.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`45a3755608d26`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/45a3755608d26) -
|
|
8
|
+
introduce discarded unified analytic events and fix bug with undo/deletion detection
|
|
9
|
+
|
|
3
10
|
## 32.6.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1518,5 +1518,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1518
1518
|
},
|
|
1519
1519
|
param: 'isEnabled',
|
|
1520
1520
|
defaultValue: false
|
|
1521
|
+
}),
|
|
1522
|
+
// Added 2026-03-02
|
|
1523
|
+
platform_editor_discarded_unified_analytic_events: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1524
|
+
productKeys: {
|
|
1525
|
+
confluence: 'platform_editor_discarded_unified_analytic_events',
|
|
1526
|
+
jira: 'platform_editor_discarded_unified_analytic_events'
|
|
1527
|
+
},
|
|
1528
|
+
param: 'isEnabled',
|
|
1529
|
+
defaultValue: false
|
|
1521
1530
|
})
|
|
1522
1531
|
};
|
|
@@ -1512,5 +1512,14 @@ export const editorExperimentsConfig = {
|
|
|
1512
1512
|
},
|
|
1513
1513
|
param: 'isEnabled',
|
|
1514
1514
|
defaultValue: false
|
|
1515
|
+
}),
|
|
1516
|
+
// Added 2026-03-02
|
|
1517
|
+
platform_editor_discarded_unified_analytic_events: createBooleanExperiment({
|
|
1518
|
+
productKeys: {
|
|
1519
|
+
confluence: 'platform_editor_discarded_unified_analytic_events',
|
|
1520
|
+
jira: 'platform_editor_discarded_unified_analytic_events'
|
|
1521
|
+
},
|
|
1522
|
+
param: 'isEnabled',
|
|
1523
|
+
defaultValue: false
|
|
1515
1524
|
})
|
|
1516
1525
|
};
|
|
@@ -1512,5 +1512,14 @@ export var editorExperimentsConfig = {
|
|
|
1512
1512
|
},
|
|
1513
1513
|
param: 'isEnabled',
|
|
1514
1514
|
defaultValue: false
|
|
1515
|
+
}),
|
|
1516
|
+
// Added 2026-03-02
|
|
1517
|
+
platform_editor_discarded_unified_analytic_events: createBooleanExperiment({
|
|
1518
|
+
productKeys: {
|
|
1519
|
+
confluence: 'platform_editor_discarded_unified_analytic_events',
|
|
1520
|
+
jira: 'platform_editor_discarded_unified_analytic_events'
|
|
1521
|
+
},
|
|
1522
|
+
param: 'isEnabled',
|
|
1523
|
+
defaultValue: false
|
|
1515
1524
|
})
|
|
1516
1525
|
};
|
|
@@ -1116,6 +1116,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1116
1116
|
productKeys?: ProductKeys;
|
|
1117
1117
|
typeGuard: IsBooleanType;
|
|
1118
1118
|
};
|
|
1119
|
+
platform_editor_discarded_unified_analytic_events: {
|
|
1120
|
+
defaultValue: boolean;
|
|
1121
|
+
param: string;
|
|
1122
|
+
productKeys?: ProductKeys;
|
|
1123
|
+
typeGuard: IsBooleanType;
|
|
1124
|
+
};
|
|
1119
1125
|
platform_editor_ai_update_actioned_event_timeout: {
|
|
1120
1126
|
defaultValue: boolean;
|
|
1121
1127
|
param: string;
|
|
@@ -1116,6 +1116,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1116
1116
|
productKeys?: ProductKeys;
|
|
1117
1117
|
typeGuard: IsBooleanType;
|
|
1118
1118
|
};
|
|
1119
|
+
platform_editor_discarded_unified_analytic_events: {
|
|
1120
|
+
defaultValue: boolean;
|
|
1121
|
+
param: string;
|
|
1122
|
+
productKeys?: ProductKeys;
|
|
1123
|
+
typeGuard: IsBooleanType;
|
|
1124
|
+
};
|
|
1119
1125
|
platform_editor_ai_update_actioned_event_timeout: {
|
|
1120
1126
|
defaultValue: boolean;
|
|
1121
1127
|
param: string;
|
package/package.json
CHANGED