@atlaskit/tmp-editor-statsig 2.37.0 → 2.38.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,14 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 2.38.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#103433](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/103433)
8
+ [`2ea2995145fa4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2ea2995145fa4) -
9
+ [ux] [https://product-fabric.atlassian.net/browse/EDF-2219] - add Advanced Prompt option into the
10
+ Editor AI Command Palette
11
+
3
12
  ## 2.37.0
4
13
 
5
14
  ### Minor Changes
@@ -258,6 +258,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
258
258
  typeGuard: _typeGuards.isBoolean,
259
259
  defaultValue: false
260
260
  },
261
+ // Added 2025-01-15
262
+ platform_editor_ai_advanced_prompts: {
263
+ productKeys: {
264
+ confluence: 'platform_editor_ai_advanced_prompts'
265
+ },
266
+ param: 'isEnabled',
267
+ typeGuard: _typeGuards.isBoolean,
268
+ defaultValue: false
269
+ },
261
270
  expand_selection_range_to_include_inline_node: {
262
271
  productKeys: {
263
272
  confluence: 'expand_selection_range_to_include_inline_node'
@@ -252,6 +252,15 @@ export const editorExperimentsConfig = {
252
252
  typeGuard: isBoolean,
253
253
  defaultValue: false
254
254
  },
255
+ // Added 2025-01-15
256
+ platform_editor_ai_advanced_prompts: {
257
+ productKeys: {
258
+ confluence: 'platform_editor_ai_advanced_prompts'
259
+ },
260
+ param: 'isEnabled',
261
+ typeGuard: isBoolean,
262
+ defaultValue: false
263
+ },
255
264
  expand_selection_range_to_include_inline_node: {
256
265
  productKeys: {
257
266
  confluence: 'expand_selection_range_to_include_inline_node'
@@ -252,6 +252,15 @@ export var editorExperimentsConfig = {
252
252
  typeGuard: isBoolean,
253
253
  defaultValue: false
254
254
  },
255
+ // Added 2025-01-15
256
+ platform_editor_ai_advanced_prompts: {
257
+ productKeys: {
258
+ confluence: 'platform_editor_ai_advanced_prompts'
259
+ },
260
+ param: 'isEnabled',
261
+ typeGuard: isBoolean,
262
+ defaultValue: false
263
+ },
255
264
  expand_selection_range_to_include_inline_node: {
256
265
  productKeys: {
257
266
  confluence: 'expand_selection_range_to_include_inline_node'
@@ -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" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect">(experimentName: ExperimentName, describeName: string) => {
48
+ var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "platform_editor_ai_advanced_prompts" | "expand_selection_range_to_include_inline_node" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  'example-boolean': {
51
51
  productKeys: {
@@ -256,6 +256,14 @@ declare namespace eeTest {
256
256
  typeGuard: typeof import("./type-guards").isBoolean;
257
257
  defaultValue: boolean;
258
258
  };
259
+ platform_editor_ai_advanced_prompts: {
260
+ productKeys: {
261
+ confluence: string;
262
+ };
263
+ param: string;
264
+ typeGuard: typeof import("./type-guards").isBoolean;
265
+ defaultValue: boolean;
266
+ };
259
267
  expand_selection_range_to_include_inline_node: {
260
268
  productKeys: {
261
269
  confluence: string;
@@ -215,6 +215,14 @@ export declare const editorExperimentsConfig: {
215
215
  typeGuard: typeof isBoolean;
216
216
  defaultValue: boolean;
217
217
  };
218
+ platform_editor_ai_advanced_prompts: {
219
+ productKeys: {
220
+ confluence: string;
221
+ };
222
+ param: string;
223
+ typeGuard: typeof isBoolean;
224
+ defaultValue: boolean;
225
+ };
218
226
  expand_selection_range_to_include_inline_node: {
219
227
  productKeys: {
220
228
  confluence: string;
@@ -29,6 +29,7 @@ export declare let _overrides: Partial<{
29
29
  contextual_formatting_toolbar: boolean;
30
30
  platform_editor_ai_1p_smart_link_unfurl_in_prompt: boolean;
31
31
  platform_editor_ai_unsplash_page_header: boolean;
32
+ platform_editor_ai_advanced_prompts: boolean;
32
33
  expand_selection_range_to_include_inline_node: boolean;
33
34
  platform_editor_blockquote_in_text_formatting_menu: boolean;
34
35
  platform_editor_advanced_code_blocks: boolean;
@@ -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" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect">(experimentName: ExperimentName, describeName: string) => {
48
+ var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "platform_editor_ai_advanced_prompts" | "expand_selection_range_to_include_inline_node" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  'example-boolean': {
51
51
  productKeys: {
@@ -256,6 +256,14 @@ declare namespace eeTest {
256
256
  typeGuard: typeof import("./type-guards").isBoolean;
257
257
  defaultValue: boolean;
258
258
  };
259
+ platform_editor_ai_advanced_prompts: {
260
+ productKeys: {
261
+ confluence: string;
262
+ };
263
+ param: string;
264
+ typeGuard: typeof import("./type-guards").isBoolean;
265
+ defaultValue: boolean;
266
+ };
259
267
  expand_selection_range_to_include_inline_node: {
260
268
  productKeys: {
261
269
  confluence: string;
@@ -215,6 +215,14 @@ export declare const editorExperimentsConfig: {
215
215
  typeGuard: typeof isBoolean;
216
216
  defaultValue: boolean;
217
217
  };
218
+ platform_editor_ai_advanced_prompts: {
219
+ productKeys: {
220
+ confluence: string;
221
+ };
222
+ param: string;
223
+ typeGuard: typeof isBoolean;
224
+ defaultValue: boolean;
225
+ };
218
226
  expand_selection_range_to_include_inline_node: {
219
227
  productKeys: {
220
228
  confluence: string;
@@ -29,6 +29,7 @@ export declare let _overrides: Partial<{
29
29
  contextual_formatting_toolbar: boolean;
30
30
  platform_editor_ai_1p_smart_link_unfurl_in_prompt: boolean;
31
31
  platform_editor_ai_unsplash_page_header: boolean;
32
+ platform_editor_ai_advanced_prompts: boolean;
32
33
  expand_selection_range_to_include_inline_node: boolean;
33
34
  platform_editor_blockquote_in_text_formatting_menu: boolean;
34
35
  platform_editor_advanced_code_blocks: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "2.37.0",
3
+ "version": "2.38.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",