@atlaskit/tmp-editor-statsig 62.3.1 → 62.4.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.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5582de25d88ef`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5582de25d88ef) -
|
|
8
|
+
Add noStream flag to skip streaming pacer for pre-computed tool call results
|
|
9
|
+
|
|
3
10
|
## 62.3.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1906,6 +1906,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1906
1906
|
param: 'isEnabled',
|
|
1907
1907
|
defaultValue: false
|
|
1908
1908
|
}),
|
|
1909
|
+
// Added 2026-04-15
|
|
1910
|
+
platform_editor_ai_no_stream_skip_pacer: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1911
|
+
productKeys: {
|
|
1912
|
+
confluence: 'platform_editor_ai_no_stream_skip_pacer'
|
|
1913
|
+
},
|
|
1914
|
+
param: 'isEnabled',
|
|
1915
|
+
defaultValue: false
|
|
1916
|
+
}),
|
|
1909
1917
|
// Added 2026-04-01
|
|
1910
1918
|
platform_editor_layout_column_resize_handle: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1911
1919
|
productKeys: {
|
|
@@ -1900,6 +1900,14 @@ export const editorExperimentsConfig = {
|
|
|
1900
1900
|
param: 'isEnabled',
|
|
1901
1901
|
defaultValue: false
|
|
1902
1902
|
}),
|
|
1903
|
+
// Added 2026-04-15
|
|
1904
|
+
platform_editor_ai_no_stream_skip_pacer: createBooleanExperiment({
|
|
1905
|
+
productKeys: {
|
|
1906
|
+
confluence: 'platform_editor_ai_no_stream_skip_pacer'
|
|
1907
|
+
},
|
|
1908
|
+
param: 'isEnabled',
|
|
1909
|
+
defaultValue: false
|
|
1910
|
+
}),
|
|
1903
1911
|
// Added 2026-04-01
|
|
1904
1912
|
platform_editor_layout_column_resize_handle: createBooleanExperiment({
|
|
1905
1913
|
productKeys: {
|
|
@@ -1900,6 +1900,14 @@ export var editorExperimentsConfig = {
|
|
|
1900
1900
|
param: 'isEnabled',
|
|
1901
1901
|
defaultValue: false
|
|
1902
1902
|
}),
|
|
1903
|
+
// Added 2026-04-15
|
|
1904
|
+
platform_editor_ai_no_stream_skip_pacer: createBooleanExperiment({
|
|
1905
|
+
productKeys: {
|
|
1906
|
+
confluence: 'platform_editor_ai_no_stream_skip_pacer'
|
|
1907
|
+
},
|
|
1908
|
+
param: 'isEnabled',
|
|
1909
|
+
defaultValue: false
|
|
1910
|
+
}),
|
|
1903
1911
|
// Added 2026-04-01
|
|
1904
1912
|
platform_editor_layout_column_resize_handle: createBooleanExperiment({
|
|
1905
1913
|
productKeys: {
|
|
@@ -1448,6 +1448,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1448
1448
|
productKeys?: ProductKeys;
|
|
1449
1449
|
typeGuard: IsBooleanType;
|
|
1450
1450
|
};
|
|
1451
|
+
platform_editor_ai_no_stream_skip_pacer: {
|
|
1452
|
+
defaultValue: boolean;
|
|
1453
|
+
param: string;
|
|
1454
|
+
productKeys?: ProductKeys;
|
|
1455
|
+
typeGuard: IsBooleanType;
|
|
1456
|
+
};
|
|
1451
1457
|
platform_editor_drag_handle_keyboard_a11y: {
|
|
1452
1458
|
defaultValue: boolean;
|
|
1453
1459
|
param: string;
|
|
@@ -1448,6 +1448,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1448
1448
|
productKeys?: ProductKeys;
|
|
1449
1449
|
typeGuard: IsBooleanType;
|
|
1450
1450
|
};
|
|
1451
|
+
platform_editor_ai_no_stream_skip_pacer: {
|
|
1452
|
+
defaultValue: boolean;
|
|
1453
|
+
param: string;
|
|
1454
|
+
productKeys?: ProductKeys;
|
|
1455
|
+
typeGuard: IsBooleanType;
|
|
1456
|
+
};
|
|
1451
1457
|
platform_editor_drag_handle_keyboard_a11y: {
|
|
1452
1458
|
defaultValue: boolean;
|
|
1453
1459
|
param: string;
|
package/package.json
CHANGED