@atlaskit/tmp-editor-statsig 17.8.0 → 17.9.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
|
+
## 17.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b2780992bdc66`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b2780992bdc66) -
|
|
8
|
+
Send x-client-platform header when establishing socketio connection
|
|
9
|
+
|
|
3
10
|
## 17.8.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1257,6 +1257,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1257
1257
|
param: 'isEnabled',
|
|
1258
1258
|
defaultValue: false
|
|
1259
1259
|
}),
|
|
1260
|
+
// Added 2025-01-29
|
|
1261
|
+
platform_editor_send_client_platform_header: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1262
|
+
productKeys: {
|
|
1263
|
+
confluence: 'platform_editor_send_client_platform_header'
|
|
1264
|
+
},
|
|
1265
|
+
param: 'isEnabled',
|
|
1266
|
+
defaultValue: false
|
|
1267
|
+
}),
|
|
1260
1268
|
// Added 2026-01-29
|
|
1261
1269
|
platform_editor_renderer_toolbar_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1262
1270
|
productKeys: {
|
|
@@ -1251,6 +1251,14 @@ export const editorExperimentsConfig = {
|
|
|
1251
1251
|
param: 'isEnabled',
|
|
1252
1252
|
defaultValue: false
|
|
1253
1253
|
}),
|
|
1254
|
+
// Added 2025-01-29
|
|
1255
|
+
platform_editor_send_client_platform_header: createBooleanExperiment({
|
|
1256
|
+
productKeys: {
|
|
1257
|
+
confluence: 'platform_editor_send_client_platform_header'
|
|
1258
|
+
},
|
|
1259
|
+
param: 'isEnabled',
|
|
1260
|
+
defaultValue: false
|
|
1261
|
+
}),
|
|
1254
1262
|
// Added 2026-01-29
|
|
1255
1263
|
platform_editor_renderer_toolbar_updates: createBooleanExperiment({
|
|
1256
1264
|
productKeys: {
|
|
@@ -1251,6 +1251,14 @@ export var editorExperimentsConfig = {
|
|
|
1251
1251
|
param: 'isEnabled',
|
|
1252
1252
|
defaultValue: false
|
|
1253
1253
|
}),
|
|
1254
|
+
// Added 2025-01-29
|
|
1255
|
+
platform_editor_send_client_platform_header: createBooleanExperiment({
|
|
1256
|
+
productKeys: {
|
|
1257
|
+
confluence: 'platform_editor_send_client_platform_header'
|
|
1258
|
+
},
|
|
1259
|
+
param: 'isEnabled',
|
|
1260
|
+
defaultValue: false
|
|
1261
|
+
}),
|
|
1254
1262
|
// Added 2026-01-29
|
|
1255
1263
|
platform_editor_renderer_toolbar_updates: createBooleanExperiment({
|
|
1256
1264
|
productKeys: {
|
|
@@ -928,6 +928,12 @@ export declare const editorExperimentsConfig: {
|
|
|
928
928
|
productKeys?: ProductKeys;
|
|
929
929
|
typeGuard: IsBooleanType;
|
|
930
930
|
};
|
|
931
|
+
platform_editor_send_client_platform_header: {
|
|
932
|
+
defaultValue: boolean;
|
|
933
|
+
param: string;
|
|
934
|
+
productKeys?: ProductKeys;
|
|
935
|
+
typeGuard: IsBooleanType;
|
|
936
|
+
};
|
|
931
937
|
platform_editor_renderer_toolbar_updates: {
|
|
932
938
|
defaultValue: boolean;
|
|
933
939
|
param: string;
|
|
@@ -928,6 +928,12 @@ export declare const editorExperimentsConfig: {
|
|
|
928
928
|
productKeys?: ProductKeys;
|
|
929
929
|
typeGuard: IsBooleanType;
|
|
930
930
|
};
|
|
931
|
+
platform_editor_send_client_platform_header: {
|
|
932
|
+
defaultValue: boolean;
|
|
933
|
+
param: string;
|
|
934
|
+
productKeys?: ProductKeys;
|
|
935
|
+
typeGuard: IsBooleanType;
|
|
936
|
+
};
|
|
931
937
|
platform_editor_renderer_toolbar_updates: {
|
|
932
938
|
defaultValue: boolean;
|
|
933
939
|
param: string;
|
package/package.json
CHANGED