@atlaskit/tmp-editor-statsig 2.29.0 → 2.31.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 2.31.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#99209](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99209)
8
+ [`8785c6901d958`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8785c6901d958) -
9
+ [https://product-fabric.atlassian.net/browse/EDF-1802](EDF-1802) - remove
10
+ platform_editor_ai_response_history Statsig experiment
11
+
12
+ ## 2.30.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [#97986](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97986)
17
+ [`7bb3014dc6f64`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7bb3014dc6f64) -
18
+ [https://product-fabric.atlassian.net/browse/EDF-1801](EDF-1801) - cleanup
19
+ platform_editor_ai_prompt_link_picker Statsig experiment
20
+
3
21
  ## 2.29.0
4
22
 
5
23
  ### Minor Changes
@@ -126,16 +126,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
126
126
  typeGuard: _typeGuards.isBoolean,
127
127
  defaultValue: false
128
128
  },
129
- // Add 2024-09-16
130
- // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_ai_button_block_elements/setup
131
- platform_editor_ai_ai_button_block_elements: {
132
- productKeys: {
133
- confluence: 'platform_editor_ai_ai_button_block_elements'
134
- },
135
- param: 'cohort',
136
- typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
137
- defaultValue: 'control'
138
- },
139
129
  // Added 2024-09-18
140
130
  platform_renderer_table_sticky_scrollbar: {
141
131
  productKeys: {
@@ -240,15 +230,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
240
230
  typeGuard: _typeGuards.isBoolean,
241
231
  defaultValue: false
242
232
  },
243
- // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_prompt_link_picker/setup
244
- platform_editor_ai_prompt_link_picker: {
245
- productKeys: {
246
- confluence: 'platform_editor_ai_prompt_link_picker'
247
- },
248
- param: 'isEnabled',
249
- typeGuard: _typeGuards.isBoolean,
250
- defaultValue: false
251
- },
252
233
  'platform_editor_ai-prompts-placeholder': {
253
234
  productKeys: {
254
235
  confluence: 'platform_editor_ai-prompts-placeholder'
@@ -294,15 +275,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
294
275
  typeGuard: _typeGuards.isBoolean,
295
276
  defaultValue: false
296
277
  },
297
- // Added 2024-11-11
298
- platform_editor_ai_response_history: {
299
- productKeys: {
300
- confluence: 'platform_editor_ai_response_history'
301
- },
302
- param: 'isEnabled',
303
- typeGuard: _typeGuards.isBoolean,
304
- defaultValue: false
305
- },
306
278
  // Added 2024-11-13
307
279
  issue_view_action_items: {
308
280
  productKeys: {
@@ -69,6 +69,8 @@ function editorExperiment(experimentName, expectedExperimentValue) {
69
69
  }
70
70
 
71
71
  // Typescript is complaining here about accessing the productKeys property
72
+ // Ignored via go/ees005
73
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
72
74
  var experimentKey = (_experimentConfig$pro = experimentConfig.productKeys) === null || _experimentConfig$pro === void 0 ? void 0 : _experimentConfig$pro[_setup._product];
73
75
  if (!experimentKey) {
74
76
  // This will be hit in the case of an experiment not being set up for the product
@@ -114,7 +114,7 @@ eeTest.describe = function eeTestDescribe(experimentName, describeName) {
114
114
  eeTest(value, describeBody);
115
115
  }
116
116
  function each(describeBody) {
117
- let possibleValues =
117
+ const possibleValues =
118
118
  // @ts-ignore
119
119
  editorExperimentsConfig[experimentName].typeGuard.values;
120
120
  if (possibleValues) {
@@ -120,16 +120,6 @@ export const editorExperimentsConfig = {
120
120
  typeGuard: isBoolean,
121
121
  defaultValue: false
122
122
  },
123
- // Add 2024-09-16
124
- // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_ai_button_block_elements/setup
125
- platform_editor_ai_ai_button_block_elements: {
126
- productKeys: {
127
- confluence: 'platform_editor_ai_ai_button_block_elements'
128
- },
129
- param: 'cohort',
130
- typeGuard: oneOf(['control', 'test']),
131
- defaultValue: 'control'
132
- },
133
123
  // Added 2024-09-18
134
124
  platform_renderer_table_sticky_scrollbar: {
135
125
  productKeys: {
@@ -234,15 +224,6 @@ export const editorExperimentsConfig = {
234
224
  typeGuard: isBoolean,
235
225
  defaultValue: false
236
226
  },
237
- // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_prompt_link_picker/setup
238
- platform_editor_ai_prompt_link_picker: {
239
- productKeys: {
240
- confluence: 'platform_editor_ai_prompt_link_picker'
241
- },
242
- param: 'isEnabled',
243
- typeGuard: isBoolean,
244
- defaultValue: false
245
- },
246
227
  'platform_editor_ai-prompts-placeholder': {
247
228
  productKeys: {
248
229
  confluence: 'platform_editor_ai-prompts-placeholder'
@@ -288,15 +269,6 @@ export const editorExperimentsConfig = {
288
269
  typeGuard: isBoolean,
289
270
  defaultValue: false
290
271
  },
291
- // Added 2024-11-11
292
- platform_editor_ai_response_history: {
293
- productKeys: {
294
- confluence: 'platform_editor_ai_response_history'
295
- },
296
- param: 'isEnabled',
297
- typeGuard: isBoolean,
298
- defaultValue: false
299
- },
300
272
  // Added 2024-11-13
301
273
  issue_view_action_items: {
302
274
  productKeys: {
@@ -62,6 +62,8 @@ export function editorExperiment(experimentName, expectedExperimentValue, option
62
62
  }
63
63
 
64
64
  // Typescript is complaining here about accessing the productKeys property
65
+ // Ignored via go/ees005
66
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
65
67
  const experimentKey = (_experimentConfig$pro = experimentConfig.productKeys) === null || _experimentConfig$pro === void 0 ? void 0 : _experimentConfig$pro[_product];
66
68
  if (!experimentKey) {
67
69
  // This will be hit in the case of an experiment not being set up for the product
@@ -120,16 +120,6 @@ export var editorExperimentsConfig = {
120
120
  typeGuard: isBoolean,
121
121
  defaultValue: false
122
122
  },
123
- // Add 2024-09-16
124
- // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_ai_button_block_elements/setup
125
- platform_editor_ai_ai_button_block_elements: {
126
- productKeys: {
127
- confluence: 'platform_editor_ai_ai_button_block_elements'
128
- },
129
- param: 'cohort',
130
- typeGuard: oneOf(['control', 'test']),
131
- defaultValue: 'control'
132
- },
133
123
  // Added 2024-09-18
134
124
  platform_renderer_table_sticky_scrollbar: {
135
125
  productKeys: {
@@ -234,15 +224,6 @@ export var editorExperimentsConfig = {
234
224
  typeGuard: isBoolean,
235
225
  defaultValue: false
236
226
  },
237
- // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_prompt_link_picker/setup
238
- platform_editor_ai_prompt_link_picker: {
239
- productKeys: {
240
- confluence: 'platform_editor_ai_prompt_link_picker'
241
- },
242
- param: 'isEnabled',
243
- typeGuard: isBoolean,
244
- defaultValue: false
245
- },
246
227
  'platform_editor_ai-prompts-placeholder': {
247
228
  productKeys: {
248
229
  confluence: 'platform_editor_ai-prompts-placeholder'
@@ -288,15 +269,6 @@ export var editorExperimentsConfig = {
288
269
  typeGuard: isBoolean,
289
270
  defaultValue: false
290
271
  },
291
- // Added 2024-11-11
292
- platform_editor_ai_response_history: {
293
- productKeys: {
294
- confluence: 'platform_editor_ai_response_history'
295
- },
296
- param: 'isEnabled',
297
- typeGuard: isBoolean,
298
- defaultValue: false
299
- },
300
272
  // Added 2024-11-13
301
273
  issue_view_action_items: {
302
274
  productKeys: {
@@ -63,6 +63,8 @@ export function editorExperiment(experimentName, expectedExperimentValue) {
63
63
  }
64
64
 
65
65
  // Typescript is complaining here about accessing the productKeys property
66
+ // Ignored via go/ees005
67
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
66
68
  var experimentKey = (_experimentConfig$pro = experimentConfig.productKeys) === null || _experimentConfig$pro === void 0 ? void 0 : _experimentConfig$pro[_product];
67
69
  if (!experimentKey) {
68
70
  // This will be hit in the case of an experiment not being set up for the product
@@ -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" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_editor_ai_ai_button_block_elements" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai_prompt_link_picker" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "platform_editor_ai_response_history" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_draft_with_ai" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_ai_knowledge_from_current_page" | "platform_editor_blockquote_in_text_formatting_menu">(experimentName: ExperimentName, describeName: string) => {
48
+ var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-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" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "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_draft_with_ai" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_ai_knowledge_from_current_page" | "platform_editor_blockquote_in_text_formatting_menu">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  'example-boolean': {
51
51
  productKeys: {
@@ -144,14 +144,6 @@ declare namespace eeTest {
144
144
  typeGuard: typeof import("./type-guards").isBoolean;
145
145
  defaultValue: boolean;
146
146
  };
147
- platform_editor_ai_ai_button_block_elements: {
148
- productKeys: {
149
- confluence: string;
150
- };
151
- param: string;
152
- typeGuard: (value: unknown) => value is "test" | "control";
153
- defaultValue: "test" | "control";
154
- };
155
147
  platform_renderer_table_sticky_scrollbar: {
156
148
  productKeys: {
157
149
  confluence: string;
@@ -240,14 +232,6 @@ declare namespace eeTest {
240
232
  typeGuard: typeof import("./type-guards").isBoolean;
241
233
  defaultValue: boolean;
242
234
  };
243
- platform_editor_ai_prompt_link_picker: {
244
- productKeys: {
245
- confluence: string;
246
- };
247
- param: string;
248
- typeGuard: typeof import("./type-guards").isBoolean;
249
- defaultValue: boolean;
250
- };
251
235
  'platform_editor_ai-prompts-placeholder': {
252
236
  productKeys: {
253
237
  confluence: string;
@@ -288,14 +272,6 @@ declare namespace eeTest {
288
272
  typeGuard: typeof import("./type-guards").isBoolean;
289
273
  defaultValue: boolean;
290
274
  };
291
- platform_editor_ai_response_history: {
292
- productKeys: {
293
- confluence: string;
294
- };
295
- param: string;
296
- typeGuard: typeof import("./type-guards").isBoolean;
297
- defaultValue: boolean;
298
- };
299
275
  issue_view_action_items: {
300
276
  productKeys: {
301
277
  jira: string;
@@ -103,14 +103,6 @@ export declare const editorExperimentsConfig: {
103
103
  typeGuard: typeof isBoolean;
104
104
  defaultValue: boolean;
105
105
  };
106
- platform_editor_ai_ai_button_block_elements: {
107
- productKeys: {
108
- confluence: string;
109
- };
110
- param: string;
111
- typeGuard: (value: unknown) => value is "test" | "control";
112
- defaultValue: "test" | "control";
113
- };
114
106
  platform_renderer_table_sticky_scrollbar: {
115
107
  productKeys: {
116
108
  confluence: string;
@@ -199,14 +191,6 @@ export declare const editorExperimentsConfig: {
199
191
  typeGuard: typeof isBoolean;
200
192
  defaultValue: boolean;
201
193
  };
202
- platform_editor_ai_prompt_link_picker: {
203
- productKeys: {
204
- confluence: string;
205
- };
206
- param: string;
207
- typeGuard: typeof isBoolean;
208
- defaultValue: boolean;
209
- };
210
194
  'platform_editor_ai-prompts-placeholder': {
211
195
  productKeys: {
212
196
  confluence: string;
@@ -247,14 +231,6 @@ export declare const editorExperimentsConfig: {
247
231
  typeGuard: typeof isBoolean;
248
232
  defaultValue: boolean;
249
233
  };
250
- platform_editor_ai_response_history: {
251
- productKeys: {
252
- confluence: string;
253
- };
254
- param: string;
255
- typeGuard: typeof isBoolean;
256
- defaultValue: boolean;
257
- };
258
234
  issue_view_action_items: {
259
235
  productKeys: {
260
236
  jira: string;
@@ -15,7 +15,6 @@ export declare let _overrides: Partial<{
15
15
  'insert-menu-in-right-rail': boolean;
16
16
  support_table_in_comment: boolean;
17
17
  platform_editor_exp_lazy_node_views: boolean;
18
- platform_editor_ai_ai_button_block_elements: "test" | "control";
19
18
  platform_renderer_table_sticky_scrollbar: boolean;
20
19
  'nest-media-and-codeblock-in-quote': boolean;
21
20
  'nested-expand-in-expand': boolean;
@@ -27,13 +26,11 @@ export declare let _overrides: Partial<{
27
26
  comment_on_inline_node_spotlight: boolean;
28
27
  'editor_ai_-_proactive_ai_model_variations': "control" | "skip_grammar";
29
28
  platform_editor_ai_refine_response_button: boolean;
30
- platform_editor_ai_prompt_link_picker: boolean;
31
29
  'platform_editor_ai-prompts-placeholder': "test" | "control";
32
30
  'editor_ai_-_gpt4_experiment': "control" | "einstein";
33
31
  'nested-tables-in-tables': boolean;
34
32
  platform_editor_ai_mentions_support: boolean;
35
33
  platform_editor_ai_change_tone_floating_toolbar: boolean;
36
- platform_editor_ai_response_history: boolean;
37
34
  issue_view_action_items: boolean;
38
35
  contextual_formatting_toolbar: boolean;
39
36
  platform_editor_ai_1p_smart_link_unfurl_in_prompt: 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" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_editor_ai_ai_button_block_elements" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai_prompt_link_picker" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "platform_editor_ai_response_history" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_draft_with_ai" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_ai_knowledge_from_current_page" | "platform_editor_blockquote_in_text_formatting_menu">(experimentName: ExperimentName, describeName: string) => {
48
+ var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-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" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "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_draft_with_ai" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_ai_knowledge_from_current_page" | "platform_editor_blockquote_in_text_formatting_menu">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  'example-boolean': {
51
51
  productKeys: {
@@ -144,14 +144,6 @@ declare namespace eeTest {
144
144
  typeGuard: typeof import("./type-guards").isBoolean;
145
145
  defaultValue: boolean;
146
146
  };
147
- platform_editor_ai_ai_button_block_elements: {
148
- productKeys: {
149
- confluence: string;
150
- };
151
- param: string;
152
- typeGuard: (value: unknown) => value is "test" | "control";
153
- defaultValue: "test" | "control";
154
- };
155
147
  platform_renderer_table_sticky_scrollbar: {
156
148
  productKeys: {
157
149
  confluence: string;
@@ -240,14 +232,6 @@ declare namespace eeTest {
240
232
  typeGuard: typeof import("./type-guards").isBoolean;
241
233
  defaultValue: boolean;
242
234
  };
243
- platform_editor_ai_prompt_link_picker: {
244
- productKeys: {
245
- confluence: string;
246
- };
247
- param: string;
248
- typeGuard: typeof import("./type-guards").isBoolean;
249
- defaultValue: boolean;
250
- };
251
235
  'platform_editor_ai-prompts-placeholder': {
252
236
  productKeys: {
253
237
  confluence: string;
@@ -288,14 +272,6 @@ declare namespace eeTest {
288
272
  typeGuard: typeof import("./type-guards").isBoolean;
289
273
  defaultValue: boolean;
290
274
  };
291
- platform_editor_ai_response_history: {
292
- productKeys: {
293
- confluence: string;
294
- };
295
- param: string;
296
- typeGuard: typeof import("./type-guards").isBoolean;
297
- defaultValue: boolean;
298
- };
299
275
  issue_view_action_items: {
300
276
  productKeys: {
301
277
  jira: string;
@@ -103,14 +103,6 @@ export declare const editorExperimentsConfig: {
103
103
  typeGuard: typeof isBoolean;
104
104
  defaultValue: boolean;
105
105
  };
106
- platform_editor_ai_ai_button_block_elements: {
107
- productKeys: {
108
- confluence: string;
109
- };
110
- param: string;
111
- typeGuard: (value: unknown) => value is "test" | "control";
112
- defaultValue: "test" | "control";
113
- };
114
106
  platform_renderer_table_sticky_scrollbar: {
115
107
  productKeys: {
116
108
  confluence: string;
@@ -199,14 +191,6 @@ export declare const editorExperimentsConfig: {
199
191
  typeGuard: typeof isBoolean;
200
192
  defaultValue: boolean;
201
193
  };
202
- platform_editor_ai_prompt_link_picker: {
203
- productKeys: {
204
- confluence: string;
205
- };
206
- param: string;
207
- typeGuard: typeof isBoolean;
208
- defaultValue: boolean;
209
- };
210
194
  'platform_editor_ai-prompts-placeholder': {
211
195
  productKeys: {
212
196
  confluence: string;
@@ -247,14 +231,6 @@ export declare const editorExperimentsConfig: {
247
231
  typeGuard: typeof isBoolean;
248
232
  defaultValue: boolean;
249
233
  };
250
- platform_editor_ai_response_history: {
251
- productKeys: {
252
- confluence: string;
253
- };
254
- param: string;
255
- typeGuard: typeof isBoolean;
256
- defaultValue: boolean;
257
- };
258
234
  issue_view_action_items: {
259
235
  productKeys: {
260
236
  jira: string;
@@ -15,7 +15,6 @@ export declare let _overrides: Partial<{
15
15
  'insert-menu-in-right-rail': boolean;
16
16
  support_table_in_comment: boolean;
17
17
  platform_editor_exp_lazy_node_views: boolean;
18
- platform_editor_ai_ai_button_block_elements: "test" | "control";
19
18
  platform_renderer_table_sticky_scrollbar: boolean;
20
19
  'nest-media-and-codeblock-in-quote': boolean;
21
20
  'nested-expand-in-expand': boolean;
@@ -27,13 +26,11 @@ export declare let _overrides: Partial<{
27
26
  comment_on_inline_node_spotlight: boolean;
28
27
  'editor_ai_-_proactive_ai_model_variations': "control" | "skip_grammar";
29
28
  platform_editor_ai_refine_response_button: boolean;
30
- platform_editor_ai_prompt_link_picker: boolean;
31
29
  'platform_editor_ai-prompts-placeholder': "test" | "control";
32
30
  'editor_ai_-_gpt4_experiment': "control" | "einstein";
33
31
  'nested-tables-in-tables': boolean;
34
32
  platform_editor_ai_mentions_support: boolean;
35
33
  platform_editor_ai_change_tone_floating_toolbar: boolean;
36
- platform_editor_ai_response_history: boolean;
37
34
  issue_view_action_items: boolean;
38
35
  contextual_formatting_toolbar: boolean;
39
36
  platform_editor_ai_1p_smart_link_unfurl_in_prompt: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "2.29.0",
3
+ "version": "2.31.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",