@atlaskit/tmp-editor-statsig 11.4.0 → 11.5.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
|
+
## 11.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`14e7b85d72f07`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14e7b85d72f07) -
|
|
8
|
+
EDITOR-1385 Setup platform_editor_ai_non_iw_adf_streaming experiment.
|
|
9
|
+
|
|
3
10
|
## 11.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -448,6 +448,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
448
448
|
param: 'isEnabled',
|
|
449
449
|
defaultValue: false
|
|
450
450
|
}),
|
|
451
|
+
// Added 2025-08-20
|
|
452
|
+
platform_editor_ai_non_iw_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
453
|
+
productKeys: {
|
|
454
|
+
confluence: 'platform_editor_ai_non_iw_adf_streaming'
|
|
455
|
+
},
|
|
456
|
+
param: 'isEnabled',
|
|
457
|
+
defaultValue: false
|
|
458
|
+
}),
|
|
451
459
|
// Added 2025-07-07
|
|
452
460
|
platform_editor_ai_remove_trivial_prompts_cc: (0, _experimentBuilders.createBooleanExperiment)({
|
|
453
461
|
productKeys: {
|
|
@@ -442,6 +442,14 @@ export const editorExperimentsConfig = {
|
|
|
442
442
|
param: 'isEnabled',
|
|
443
443
|
defaultValue: false
|
|
444
444
|
}),
|
|
445
|
+
// Added 2025-08-20
|
|
446
|
+
platform_editor_ai_non_iw_adf_streaming: createBooleanExperiment({
|
|
447
|
+
productKeys: {
|
|
448
|
+
confluence: 'platform_editor_ai_non_iw_adf_streaming'
|
|
449
|
+
},
|
|
450
|
+
param: 'isEnabled',
|
|
451
|
+
defaultValue: false
|
|
452
|
+
}),
|
|
445
453
|
// Added 2025-07-07
|
|
446
454
|
platform_editor_ai_remove_trivial_prompts_cc: createBooleanExperiment({
|
|
447
455
|
productKeys: {
|
|
@@ -442,6 +442,14 @@ export var editorExperimentsConfig = {
|
|
|
442
442
|
param: 'isEnabled',
|
|
443
443
|
defaultValue: false
|
|
444
444
|
}),
|
|
445
|
+
// Added 2025-08-20
|
|
446
|
+
platform_editor_ai_non_iw_adf_streaming: createBooleanExperiment({
|
|
447
|
+
productKeys: {
|
|
448
|
+
confluence: 'platform_editor_ai_non_iw_adf_streaming'
|
|
449
|
+
},
|
|
450
|
+
param: 'isEnabled',
|
|
451
|
+
defaultValue: false
|
|
452
|
+
}),
|
|
445
453
|
// Added 2025-07-07
|
|
446
454
|
platform_editor_ai_remove_trivial_prompts_cc: createBooleanExperiment({
|
|
447
455
|
productKeys: {
|
|
@@ -330,6 +330,12 @@ export declare const editorExperimentsConfig: {
|
|
|
330
330
|
productKeys?: import("./types").ProductKeys;
|
|
331
331
|
param: string;
|
|
332
332
|
};
|
|
333
|
+
platform_editor_ai_non_iw_adf_streaming: {
|
|
334
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
335
|
+
defaultValue: boolean;
|
|
336
|
+
productKeys?: import("./types").ProductKeys;
|
|
337
|
+
param: string;
|
|
338
|
+
};
|
|
333
339
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
334
340
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
335
341
|
defaultValue: boolean;
|
|
@@ -330,6 +330,12 @@ export declare const editorExperimentsConfig: {
|
|
|
330
330
|
productKeys?: import("./types").ProductKeys;
|
|
331
331
|
param: string;
|
|
332
332
|
};
|
|
333
|
+
platform_editor_ai_non_iw_adf_streaming: {
|
|
334
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
335
|
+
defaultValue: boolean;
|
|
336
|
+
productKeys?: import("./types").ProductKeys;
|
|
337
|
+
param: string;
|
|
338
|
+
};
|
|
333
339
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
334
340
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
335
341
|
defaultValue: boolean;
|
package/package.json
CHANGED