@atlaskit/tmp-editor-statsig 10.0.0 → 11.0.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,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 11.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`25ec3e3638f52`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/25ec3e3638f52) -
8
+ Cleanup advanced code block experiment
9
+
10
+ ### Patch Changes
11
+
12
+ - [`6ca68bbf39757`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6ca68bbf39757) -
13
+ Change all AIFC feature gates over to an experiment platform_editor_ai_aifc
14
+
15
+ ## 10.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [`aa1fb76d0b8a3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/aa1fb76d0b8a3) -
20
+ EDITOR-1315 Converted IW experiment to multivariant experiment.
21
+
3
22
  ## 10.0.0
4
23
 
5
24
  ### Major Changes
@@ -14,7 +14,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
14
14
  cc_editor_interactions_trigger_traceufointeraction: 'control',
15
15
  platform_editor_insertion: 'control',
16
16
  editor_ai_inline_suggestion_date_v2: 'control',
17
- platform_editor_add_orange_highlight_color: 'control'
17
+ platform_editor_add_orange_highlight_color: 'control',
18
+ platform_editor_ai_iw_adf_streaming: 'control'
18
19
  };
19
20
  var testBooleanOverrides = exports.testBooleanOverrides = {
20
21
  platform_editor_feedback_mandatory_rating: false,
@@ -37,7 +38,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
37
38
  'nested-tables-in-tables': false,
38
39
  platform_editor_ai_unsplash_page_header: false,
39
40
  platform_editor_blockquote_in_text_formatting_menu: false,
40
- platform_editor_advanced_code_blocks: false,
41
41
  platform_editor_element_drag_and_drop_multiselect: false,
42
42
  platform_editor_ai_edit_response_in_preview: false,
43
43
  platform_editor_smart_link_cmd_ctrl_click: false,
@@ -58,10 +58,10 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
58
58
  platform_editor_toolbar_rerender_optimization_exp: false,
59
59
  platform_editor_block_controls_perf_optimization: false,
60
60
  platform_editor_enable_single_player_step_merging: false,
61
- platform_editor_ai_iw_adf_streaming: false,
62
61
  platform_editor_ai_remove_trivial_prompts_cc: false,
63
62
  platform_editor_find_and_replace_improvements: false,
64
63
  cc_editor_ufo_hold_table_till_resize_complete: false,
65
64
  platform_editor_toggle_expand_on_match_found: false,
66
- platform_editor_reduce_noisy_steps_ncs: false
65
+ platform_editor_reduce_noisy_steps_ncs: false,
66
+ platform_editor_ai_aifc: false
67
67
  };
@@ -185,14 +185,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
185
185
  param: 'isEnabled',
186
186
  defaultValue: false
187
187
  }),
188
- // Added 2025-01-09
189
- platform_editor_advanced_code_blocks: (0, _experimentBuilders.createBooleanExperiment)({
190
- productKeys: {
191
- confluence: 'platform_editor_advanced_code_blocks'
192
- },
193
- param: 'isEnabled',
194
- defaultValue: false
195
- }),
196
188
  // Added 2025-01-13
197
189
  platform_editor_element_drag_and_drop_multiselect: (0, _experimentBuilders.createBooleanExperiment)({
198
190
  productKeys: {
@@ -440,12 +432,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
440
432
  defaultValue: false
441
433
  }),
442
434
  // Added 2025-06-18
443
- platform_editor_ai_iw_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
435
+ platform_editor_ai_iw_adf_streaming: (0, _experimentBuilders.createMultivariateExperiment)({
444
436
  productKeys: {
445
437
  confluence: 'platform_editor_ai_iw_adf_streaming'
446
438
  },
447
- param: 'isEnabled',
448
- defaultValue: false
439
+ param: 'cohort',
440
+ values: ['control', 'adf', 'adf_personalisation'],
441
+ defaultValue: 'control'
449
442
  }),
450
443
  // Added 2025-06-18
451
444
  platform_editor_ai_ct_sg_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
@@ -596,6 +589,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
596
589
  param: 'isEnabled',
597
590
  defaultValue: false
598
591
  }),
592
+ //Added 2025-08-13
593
+ platform_editor_ai_aifc: (0, _experimentBuilders.createBooleanExperiment)({
594
+ productKeys: {
595
+ jira: 'platform_editor_ai_aifc_jira',
596
+ confluence: 'platform_editor_ai_aifc_confluence'
597
+ },
598
+ param: 'isEnabled',
599
+ defaultValue: false
600
+ }),
599
601
  // Added 2025-08-04
600
602
  platform_editor_floating_toolbar_button_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
601
603
  productKeys: {
@@ -8,7 +8,8 @@ export const testMultivariateOverrides = {
8
8
  cc_editor_interactions_trigger_traceufointeraction: 'control',
9
9
  platform_editor_insertion: 'control',
10
10
  editor_ai_inline_suggestion_date_v2: 'control',
11
- platform_editor_add_orange_highlight_color: 'control'
11
+ platform_editor_add_orange_highlight_color: 'control',
12
+ platform_editor_ai_iw_adf_streaming: 'control'
12
13
  };
13
14
  export const testBooleanOverrides = {
14
15
  platform_editor_feedback_mandatory_rating: false,
@@ -31,7 +32,6 @@ export const testBooleanOverrides = {
31
32
  'nested-tables-in-tables': false,
32
33
  platform_editor_ai_unsplash_page_header: false,
33
34
  platform_editor_blockquote_in_text_formatting_menu: false,
34
- platform_editor_advanced_code_blocks: false,
35
35
  platform_editor_element_drag_and_drop_multiselect: false,
36
36
  platform_editor_ai_edit_response_in_preview: false,
37
37
  platform_editor_smart_link_cmd_ctrl_click: false,
@@ -52,10 +52,10 @@ export const testBooleanOverrides = {
52
52
  platform_editor_toolbar_rerender_optimization_exp: false,
53
53
  platform_editor_block_controls_perf_optimization: false,
54
54
  platform_editor_enable_single_player_step_merging: false,
55
- platform_editor_ai_iw_adf_streaming: false,
56
55
  platform_editor_ai_remove_trivial_prompts_cc: false,
57
56
  platform_editor_find_and_replace_improvements: false,
58
57
  cc_editor_ufo_hold_table_till_resize_complete: false,
59
58
  platform_editor_toggle_expand_on_match_found: false,
60
- platform_editor_reduce_noisy_steps_ncs: false
59
+ platform_editor_reduce_noisy_steps_ncs: false,
60
+ platform_editor_ai_aifc: false
61
61
  };
@@ -179,14 +179,6 @@ export const editorExperimentsConfig = {
179
179
  param: 'isEnabled',
180
180
  defaultValue: false
181
181
  }),
182
- // Added 2025-01-09
183
- platform_editor_advanced_code_blocks: createBooleanExperiment({
184
- productKeys: {
185
- confluence: 'platform_editor_advanced_code_blocks'
186
- },
187
- param: 'isEnabled',
188
- defaultValue: false
189
- }),
190
182
  // Added 2025-01-13
191
183
  platform_editor_element_drag_and_drop_multiselect: createBooleanExperiment({
192
184
  productKeys: {
@@ -434,12 +426,13 @@ export const editorExperimentsConfig = {
434
426
  defaultValue: false
435
427
  }),
436
428
  // Added 2025-06-18
437
- platform_editor_ai_iw_adf_streaming: createBooleanExperiment({
429
+ platform_editor_ai_iw_adf_streaming: createMultivariateExperiment({
438
430
  productKeys: {
439
431
  confluence: 'platform_editor_ai_iw_adf_streaming'
440
432
  },
441
- param: 'isEnabled',
442
- defaultValue: false
433
+ param: 'cohort',
434
+ values: ['control', 'adf', 'adf_personalisation'],
435
+ defaultValue: 'control'
443
436
  }),
444
437
  // Added 2025-06-18
445
438
  platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
@@ -590,6 +583,15 @@ export const editorExperimentsConfig = {
590
583
  param: 'isEnabled',
591
584
  defaultValue: false
592
585
  }),
586
+ //Added 2025-08-13
587
+ platform_editor_ai_aifc: createBooleanExperiment({
588
+ productKeys: {
589
+ jira: 'platform_editor_ai_aifc_jira',
590
+ confluence: 'platform_editor_ai_aifc_confluence'
591
+ },
592
+ param: 'isEnabled',
593
+ defaultValue: false
594
+ }),
593
595
  // Added 2025-08-04
594
596
  platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
595
597
  productKeys: {
@@ -8,7 +8,8 @@ export var testMultivariateOverrides = {
8
8
  cc_editor_interactions_trigger_traceufointeraction: 'control',
9
9
  platform_editor_insertion: 'control',
10
10
  editor_ai_inline_suggestion_date_v2: 'control',
11
- platform_editor_add_orange_highlight_color: 'control'
11
+ platform_editor_add_orange_highlight_color: 'control',
12
+ platform_editor_ai_iw_adf_streaming: 'control'
12
13
  };
13
14
  export var testBooleanOverrides = {
14
15
  platform_editor_feedback_mandatory_rating: false,
@@ -31,7 +32,6 @@ export var testBooleanOverrides = {
31
32
  'nested-tables-in-tables': false,
32
33
  platform_editor_ai_unsplash_page_header: false,
33
34
  platform_editor_blockquote_in_text_formatting_menu: false,
34
- platform_editor_advanced_code_blocks: false,
35
35
  platform_editor_element_drag_and_drop_multiselect: false,
36
36
  platform_editor_ai_edit_response_in_preview: false,
37
37
  platform_editor_smart_link_cmd_ctrl_click: false,
@@ -52,10 +52,10 @@ export var testBooleanOverrides = {
52
52
  platform_editor_toolbar_rerender_optimization_exp: false,
53
53
  platform_editor_block_controls_perf_optimization: false,
54
54
  platform_editor_enable_single_player_step_merging: false,
55
- platform_editor_ai_iw_adf_streaming: false,
56
55
  platform_editor_ai_remove_trivial_prompts_cc: false,
57
56
  platform_editor_find_and_replace_improvements: false,
58
57
  cc_editor_ufo_hold_table_till_resize_complete: false,
59
58
  platform_editor_toggle_expand_on_match_found: false,
60
- platform_editor_reduce_noisy_steps_ncs: false
59
+ platform_editor_reduce_noisy_steps_ncs: false,
60
+ platform_editor_ai_aifc: false
61
61
  };
@@ -179,14 +179,6 @@ export var editorExperimentsConfig = {
179
179
  param: 'isEnabled',
180
180
  defaultValue: false
181
181
  }),
182
- // Added 2025-01-09
183
- platform_editor_advanced_code_blocks: createBooleanExperiment({
184
- productKeys: {
185
- confluence: 'platform_editor_advanced_code_blocks'
186
- },
187
- param: 'isEnabled',
188
- defaultValue: false
189
- }),
190
182
  // Added 2025-01-13
191
183
  platform_editor_element_drag_and_drop_multiselect: createBooleanExperiment({
192
184
  productKeys: {
@@ -434,12 +426,13 @@ export var editorExperimentsConfig = {
434
426
  defaultValue: false
435
427
  }),
436
428
  // Added 2025-06-18
437
- platform_editor_ai_iw_adf_streaming: createBooleanExperiment({
429
+ platform_editor_ai_iw_adf_streaming: createMultivariateExperiment({
438
430
  productKeys: {
439
431
  confluence: 'platform_editor_ai_iw_adf_streaming'
440
432
  },
441
- param: 'isEnabled',
442
- defaultValue: false
433
+ param: 'cohort',
434
+ values: ['control', 'adf', 'adf_personalisation'],
435
+ defaultValue: 'control'
443
436
  }),
444
437
  // Added 2025-06-18
445
438
  platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
@@ -590,6 +583,15 @@ export var editorExperimentsConfig = {
590
583
  param: 'isEnabled',
591
584
  defaultValue: false
592
585
  }),
586
+ //Added 2025-08-13
587
+ platform_editor_ai_aifc: createBooleanExperiment({
588
+ productKeys: {
589
+ jira: 'platform_editor_ai_aifc_jira',
590
+ confluence: 'platform_editor_ai_aifc_confluence'
591
+ },
592
+ param: 'isEnabled',
593
+ defaultValue: false
594
+ }),
593
595
  // Added 2025-08-04
594
596
  platform_editor_floating_toolbar_button_aria_label: createBooleanExperiment({
595
597
  productKeys: {
@@ -133,12 +133,6 @@ export declare const editorExperimentsConfig: {
133
133
  productKeys?: import("./types").ProductKeys;
134
134
  param: string;
135
135
  };
136
- platform_editor_advanced_code_blocks: {
137
- typeGuard: typeof import("./type-guards").isBoolean;
138
- defaultValue: boolean;
139
- productKeys?: import("./types").ProductKeys;
140
- param: string;
141
- };
142
136
  platform_editor_element_drag_and_drop_multiselect: {
143
137
  typeGuard: typeof import("./type-guards").isBoolean;
144
138
  defaultValue: boolean;
@@ -324,8 +318,9 @@ export declare const editorExperimentsConfig: {
324
318
  param: string;
325
319
  };
326
320
  platform_editor_ai_iw_adf_streaming: {
327
- typeGuard: typeof import("./type-guards").isBoolean;
328
- defaultValue: boolean;
321
+ values: ("control" | "adf" | "adf_personalisation")[];
322
+ typeGuard: (value: unknown) => value is "control" | "adf" | "adf_personalisation";
323
+ defaultValue: "control" | "adf" | "adf_personalisation";
329
324
  productKeys?: import("./types").ProductKeys;
330
325
  param: string;
331
326
  };
@@ -441,6 +436,12 @@ export declare const editorExperimentsConfig: {
441
436
  productKeys?: import("./types").ProductKeys;
442
437
  param: string;
443
438
  };
439
+ platform_editor_ai_aifc: {
440
+ typeGuard: typeof import("./type-guards").isBoolean;
441
+ defaultValue: boolean;
442
+ productKeys?: import("./types").ProductKeys;
443
+ param: string;
444
+ };
444
445
  platform_editor_floating_toolbar_button_aria_label: {
445
446
  typeGuard: typeof import("./type-guards").isBoolean;
446
447
  defaultValue: boolean;
@@ -133,12 +133,6 @@ export declare const editorExperimentsConfig: {
133
133
  productKeys?: import("./types").ProductKeys;
134
134
  param: string;
135
135
  };
136
- platform_editor_advanced_code_blocks: {
137
- typeGuard: typeof import("./type-guards").isBoolean;
138
- defaultValue: boolean;
139
- productKeys?: import("./types").ProductKeys;
140
- param: string;
141
- };
142
136
  platform_editor_element_drag_and_drop_multiselect: {
143
137
  typeGuard: typeof import("./type-guards").isBoolean;
144
138
  defaultValue: boolean;
@@ -324,8 +318,9 @@ export declare const editorExperimentsConfig: {
324
318
  param: string;
325
319
  };
326
320
  platform_editor_ai_iw_adf_streaming: {
327
- typeGuard: typeof import("./type-guards").isBoolean;
328
- defaultValue: boolean;
321
+ values: ("control" | "adf" | "adf_personalisation")[];
322
+ typeGuard: (value: unknown) => value is "control" | "adf" | "adf_personalisation";
323
+ defaultValue: "control" | "adf" | "adf_personalisation";
329
324
  productKeys?: import("./types").ProductKeys;
330
325
  param: string;
331
326
  };
@@ -441,6 +436,12 @@ export declare const editorExperimentsConfig: {
441
436
  productKeys?: import("./types").ProductKeys;
442
437
  param: string;
443
438
  };
439
+ platform_editor_ai_aifc: {
440
+ typeGuard: typeof import("./type-guards").isBoolean;
441
+ defaultValue: boolean;
442
+ productKeys?: import("./types").ProductKeys;
443
+ param: string;
444
+ };
444
445
  platform_editor_floating_toolbar_button_aria_label: {
445
446
  typeGuard: typeof import("./type-guards").isBoolean;
446
447
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "10.0.0",
3
+ "version": "11.0.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",