@atlaskit/tmp-editor-statsig 4.24.0 → 4.25.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 +9 -0
- package/dist/cjs/experiments-config.js +8 -0
- package/dist/es2019/experiments-config.js +8 -0
- package/dist/esm/experiments-config.js +8 -0
- package/dist/types/editor-experiments-test-utils.d.ts +7 -1
- package/dist/types/experiments-config.d.ts +6 -0
- package/dist/types/setup.d.ts +1 -0
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +7 -1
- package/dist/types-ts4.5/experiments-config.d.ts +6 -0
- package/dist/types-ts4.5/setup.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 4.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#159149](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/159149)
|
|
8
|
+
[`ba8a35f91cb65`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ba8a35f91cb65) -
|
|
9
|
+
[ux] EDITOR-717: Implement MVP of in-editor AI response streaming. This is behind the
|
|
10
|
+
editor_ai_in_editor_streaming Statsig experiment.
|
|
11
|
+
|
|
3
12
|
## 4.24.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -323,5 +323,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
323
323
|
},
|
|
324
324
|
param: 'isEnabled',
|
|
325
325
|
defaultValue: false
|
|
326
|
+
}),
|
|
327
|
+
// Added 2025-05-22
|
|
328
|
+
editor_ai_in_editor_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
329
|
+
productKeys: {
|
|
330
|
+
confluence: 'editor_ai_in_editor_streaming'
|
|
331
|
+
},
|
|
332
|
+
param: 'isEnabled',
|
|
333
|
+
defaultValue: false
|
|
326
334
|
})
|
|
327
335
|
};
|
|
@@ -317,5 +317,13 @@ export const editorExperimentsConfig = {
|
|
|
317
317
|
},
|
|
318
318
|
param: 'isEnabled',
|
|
319
319
|
defaultValue: false
|
|
320
|
+
}),
|
|
321
|
+
// Added 2025-05-22
|
|
322
|
+
editor_ai_in_editor_streaming: createBooleanExperiment({
|
|
323
|
+
productKeys: {
|
|
324
|
+
confluence: 'editor_ai_in_editor_streaming'
|
|
325
|
+
},
|
|
326
|
+
param: 'isEnabled',
|
|
327
|
+
defaultValue: false
|
|
320
328
|
})
|
|
321
329
|
};
|
|
@@ -317,5 +317,13 @@ export var editorExperimentsConfig = {
|
|
|
317
317
|
},
|
|
318
318
|
param: 'isEnabled',
|
|
319
319
|
defaultValue: false
|
|
320
|
+
}),
|
|
321
|
+
// Added 2025-05-22
|
|
322
|
+
editor_ai_in_editor_streaming: createBooleanExperiment({
|
|
323
|
+
productKeys: {
|
|
324
|
+
confluence: 'editor_ai_in_editor_streaming'
|
|
325
|
+
},
|
|
326
|
+
param: 'isEnabled',
|
|
327
|
+
defaultValue: false
|
|
320
328
|
})
|
|
321
329
|
};
|
|
@@ -45,7 +45,7 @@ declare function eeTest<ExperimentName extends keyof EditorExperimentsConfig>(ex
|
|
|
45
45
|
false: DescribeBody;
|
|
46
46
|
}, otherExperiments?: EditorExperimentOverrides): void;
|
|
47
47
|
declare namespace eeTest {
|
|
48
|
-
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "live_pages_graceful_edit" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_core_static_emotion" | "editor_ai_comment_freegen_rovo" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command">(experimentName: ExperimentName, describeName: string) => {
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "live_pages_graceful_edit" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_core_static_emotion" | "editor_ai_comment_freegen_rovo" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "editor_ai_in_editor_streaming">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
@@ -303,6 +303,12 @@ declare namespace eeTest {
|
|
|
303
303
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
304
304
|
param: string;
|
|
305
305
|
};
|
|
306
|
+
editor_ai_in_editor_streaming: {
|
|
307
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
308
|
+
defaultValue: boolean;
|
|
309
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
310
|
+
param: string;
|
|
311
|
+
};
|
|
306
312
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
307
313
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
308
314
|
};
|
|
@@ -236,4 +236,10 @@ export declare const editorExperimentsConfig: {
|
|
|
236
236
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
237
237
|
param: string;
|
|
238
238
|
};
|
|
239
|
+
editor_ai_in_editor_streaming: {
|
|
240
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
241
|
+
defaultValue: boolean;
|
|
242
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
243
|
+
param: string;
|
|
244
|
+
};
|
|
239
245
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export declare let _overrides: Partial<{
|
|
|
45
45
|
confluence_p2m_style_recalc_and_expand_joint_exp: boolean;
|
|
46
46
|
platform_editor_breakout_resizing: boolean;
|
|
47
47
|
platform_editor_ai_quickstart_command: boolean;
|
|
48
|
+
editor_ai_in_editor_streaming: boolean;
|
|
48
49
|
}>;
|
|
49
50
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
50
51
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
@@ -45,7 +45,7 @@ declare function eeTest<ExperimentName extends keyof EditorExperimentsConfig>(ex
|
|
|
45
45
|
false: DescribeBody;
|
|
46
46
|
}, otherExperiments?: EditorExperimentOverrides): void;
|
|
47
47
|
declare namespace eeTest {
|
|
48
|
-
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "live_pages_graceful_edit" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_core_static_emotion" | "editor_ai_comment_freegen_rovo" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command">(experimentName: ExperimentName, describeName: string) => {
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_unsplash_page_header" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "live_pages_graceful_edit" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_insertion" | "platform_editor_vanilla_dom" | "editor_text_highlight_orange_to_yellow" | "platform_editor_ai_proactive_ai_nudge_parameters" | "platform_editor_offline_editing_web" | "editor_ai_inline_suggestion_date_v2" | "platform_editor_tables_drag_and_drop" | "platform_editor_tables_table_selector" | "platform_editor_usesharedpluginstateselector" | "platform_renderer_fix_analytics_memo_callback" | "editor_ai_contextual_selection_toolbar_button" | "editor_ai_converge_free_gen_on_rovo" | "editor_ai_cmd_palette_remove_retry" | "platform_editor_core_static_emotion" | "editor_ai_comment_freegen_rovo" | "confluence_p2m_style_recalc_and_expand_joint_exp" | "platform_editor_breakout_resizing" | "platform_editor_ai_quickstart_command" | "editor_ai_in_editor_streaming">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
@@ -303,6 +303,12 @@ declare namespace eeTest {
|
|
|
303
303
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
304
304
|
param: string;
|
|
305
305
|
};
|
|
306
|
+
editor_ai_in_editor_streaming: {
|
|
307
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
308
|
+
defaultValue: boolean;
|
|
309
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
310
|
+
param: string;
|
|
311
|
+
};
|
|
306
312
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
307
313
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
308
314
|
};
|
|
@@ -236,4 +236,10 @@ export declare const editorExperimentsConfig: {
|
|
|
236
236
|
productKeys?: import("./types").ProductKeys | undefined;
|
|
237
237
|
param: string;
|
|
238
238
|
};
|
|
239
|
+
editor_ai_in_editor_streaming: {
|
|
240
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
241
|
+
defaultValue: boolean;
|
|
242
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
243
|
+
param: string;
|
|
244
|
+
};
|
|
239
245
|
};
|
|
@@ -45,6 +45,7 @@ export declare let _overrides: Partial<{
|
|
|
45
45
|
confluence_p2m_style_recalc_and_expand_joint_exp: boolean;
|
|
46
46
|
platform_editor_breakout_resizing: boolean;
|
|
47
47
|
platform_editor_ai_quickstart_command: boolean;
|
|
48
|
+
editor_ai_in_editor_streaming: boolean;
|
|
48
49
|
}>;
|
|
49
50
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
50
51
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
package/package.json
CHANGED