@atlaskit/tmp-editor-statsig 2.3.0 → 2.3.2
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 +18 -0
- package/dist/cjs/experiments-config.js +23 -3
- package/dist/es2019/experiments-config.js +23 -3
- package/dist/esm/experiments-config.js +23 -3
- package/dist/types/editor-experiments-test-utils.d.ts +19 -3
- package/dist/types/experiments-config.d.ts +18 -2
- package/dist/types/setup.d.ts +3 -1
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +19 -3
- package/dist/types-ts4.5/experiments-config.d.ts +18 -2
- package/dist/types-ts4.5/setup.d.ts +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#151153](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/151153)
|
|
8
|
+
[`b08ca9cb58898`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b08ca9cb58898) -
|
|
9
|
+
Added a new proactive ai prosemirror plugin to the editor ai plugin. This plugin will be used for
|
|
10
|
+
generating recommendations using AI and providing them to the user for inserting
|
|
11
|
+
|
|
12
|
+
## 2.3.1
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#150384](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/150384)
|
|
17
|
+
[`d3dad252dbe46`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d3dad252dbe46) -
|
|
18
|
+
[EDF-1177](https://product-fabric.atlassian.net/browse/EDF-1177) - add pulse effect support into
|
|
19
|
+
editor floating toolbar
|
|
20
|
+
|
|
3
21
|
## 2.3.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -218,6 +218,16 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
218
218
|
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
219
219
|
defaultValue: 'control'
|
|
220
220
|
},
|
|
221
|
+
// Added 2024-10-03
|
|
222
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_onboarding/setup
|
|
223
|
+
platform_editor_ai_onboarding: {
|
|
224
|
+
productKeys: {
|
|
225
|
+
confluence: 'platform_editor_ai_onboarding'
|
|
226
|
+
},
|
|
227
|
+
param: 'cohort',
|
|
228
|
+
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
229
|
+
defaultValue: 'control'
|
|
230
|
+
},
|
|
221
231
|
// Added 2024-10-01
|
|
222
232
|
comment_on_bodied_extensions: {
|
|
223
233
|
productKeys: {
|
|
@@ -232,9 +242,9 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
232
242
|
productKeys: {
|
|
233
243
|
confluence: 'platform_editor_ai_floating_toolbar_v2'
|
|
234
244
|
},
|
|
235
|
-
param: '
|
|
236
|
-
typeGuard: _typeGuards.
|
|
237
|
-
defaultValue:
|
|
245
|
+
param: 'cohort',
|
|
246
|
+
typeGuard: (0, _typeGuards.oneOf)(['control', 'leading', 'trailing']),
|
|
247
|
+
defaultValue: 'control'
|
|
238
248
|
},
|
|
239
249
|
// Added 2024-10-04
|
|
240
250
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_typography_migration_ugc/setup
|
|
@@ -245,5 +255,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
245
255
|
param: 'isEnabled',
|
|
246
256
|
typeGuard: _typeGuards.isBoolean,
|
|
247
257
|
defaultValue: false
|
|
258
|
+
},
|
|
259
|
+
// Added 2024-10-03
|
|
260
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_proactive_ai_improve_writing/setup
|
|
261
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
262
|
+
productKeys: {
|
|
263
|
+
confluence: 'editor_ai_-_proactive_ai_improve_writing'
|
|
264
|
+
},
|
|
265
|
+
param: 'cohort',
|
|
266
|
+
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
267
|
+
defaultValue: 'control'
|
|
248
268
|
}
|
|
249
269
|
};
|
|
@@ -212,6 +212,16 @@ export const editorExperimentsConfig = {
|
|
|
212
212
|
typeGuard: oneOf(['control', 'test']),
|
|
213
213
|
defaultValue: 'control'
|
|
214
214
|
},
|
|
215
|
+
// Added 2024-10-03
|
|
216
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_onboarding/setup
|
|
217
|
+
platform_editor_ai_onboarding: {
|
|
218
|
+
productKeys: {
|
|
219
|
+
confluence: 'platform_editor_ai_onboarding'
|
|
220
|
+
},
|
|
221
|
+
param: 'cohort',
|
|
222
|
+
typeGuard: oneOf(['control', 'test']),
|
|
223
|
+
defaultValue: 'control'
|
|
224
|
+
},
|
|
215
225
|
// Added 2024-10-01
|
|
216
226
|
comment_on_bodied_extensions: {
|
|
217
227
|
productKeys: {
|
|
@@ -226,9 +236,9 @@ export const editorExperimentsConfig = {
|
|
|
226
236
|
productKeys: {
|
|
227
237
|
confluence: 'platform_editor_ai_floating_toolbar_v2'
|
|
228
238
|
},
|
|
229
|
-
param: '
|
|
230
|
-
typeGuard:
|
|
231
|
-
defaultValue:
|
|
239
|
+
param: 'cohort',
|
|
240
|
+
typeGuard: oneOf(['control', 'leading', 'trailing']),
|
|
241
|
+
defaultValue: 'control'
|
|
232
242
|
},
|
|
233
243
|
// Added 2024-10-04
|
|
234
244
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_typography_migration_ugc/setup
|
|
@@ -239,5 +249,15 @@ export const editorExperimentsConfig = {
|
|
|
239
249
|
param: 'isEnabled',
|
|
240
250
|
typeGuard: isBoolean,
|
|
241
251
|
defaultValue: false
|
|
252
|
+
},
|
|
253
|
+
// Added 2024-10-03
|
|
254
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_proactive_ai_improve_writing/setup
|
|
255
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
256
|
+
productKeys: {
|
|
257
|
+
confluence: 'editor_ai_-_proactive_ai_improve_writing'
|
|
258
|
+
},
|
|
259
|
+
param: 'cohort',
|
|
260
|
+
typeGuard: oneOf(['control', 'test']),
|
|
261
|
+
defaultValue: 'control'
|
|
242
262
|
}
|
|
243
263
|
};
|
|
@@ -212,6 +212,16 @@ export var editorExperimentsConfig = {
|
|
|
212
212
|
typeGuard: oneOf(['control', 'test']),
|
|
213
213
|
defaultValue: 'control'
|
|
214
214
|
},
|
|
215
|
+
// Added 2024-10-03
|
|
216
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_onboarding/setup
|
|
217
|
+
platform_editor_ai_onboarding: {
|
|
218
|
+
productKeys: {
|
|
219
|
+
confluence: 'platform_editor_ai_onboarding'
|
|
220
|
+
},
|
|
221
|
+
param: 'cohort',
|
|
222
|
+
typeGuard: oneOf(['control', 'test']),
|
|
223
|
+
defaultValue: 'control'
|
|
224
|
+
},
|
|
215
225
|
// Added 2024-10-01
|
|
216
226
|
comment_on_bodied_extensions: {
|
|
217
227
|
productKeys: {
|
|
@@ -226,9 +236,9 @@ export var editorExperimentsConfig = {
|
|
|
226
236
|
productKeys: {
|
|
227
237
|
confluence: 'platform_editor_ai_floating_toolbar_v2'
|
|
228
238
|
},
|
|
229
|
-
param: '
|
|
230
|
-
typeGuard:
|
|
231
|
-
defaultValue:
|
|
239
|
+
param: 'cohort',
|
|
240
|
+
typeGuard: oneOf(['control', 'leading', 'trailing']),
|
|
241
|
+
defaultValue: 'control'
|
|
232
242
|
},
|
|
233
243
|
// Added 2024-10-04
|
|
234
244
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_typography_migration_ugc/setup
|
|
@@ -239,5 +249,15 @@ export var editorExperimentsConfig = {
|
|
|
239
249
|
param: 'isEnabled',
|
|
240
250
|
typeGuard: isBoolean,
|
|
241
251
|
defaultValue: false
|
|
252
|
+
},
|
|
253
|
+
// Added 2024-10-03
|
|
254
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_proactive_ai_improve_writing/setup
|
|
255
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
256
|
+
productKeys: {
|
|
257
|
+
confluence: 'editor_ai_-_proactive_ai_improve_writing'
|
|
258
|
+
},
|
|
259
|
+
param: 'cohort',
|
|
260
|
+
typeGuard: oneOf(['control', 'test']),
|
|
261
|
+
defaultValue: 'control'
|
|
242
262
|
}
|
|
243
263
|
};
|
|
@@ -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" | "platform_editor_ai_command_palate_improvement" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "platform_editor_empty_line_prompt" | "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_ai_command_palette_post_ga" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "platform_editor_ai_additional_editor_prompts" | "comment_on_bodied_extensions" | "platform_editor_ai_floating_toolbar_v2" | "typography_migration_ugc">(experimentName: ExperimentName, describeName: string) => {
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "platform_editor_ai_command_palate_improvement" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "platform_editor_empty_line_prompt" | "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_ai_command_palette_post_ga" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "platform_editor_ai_additional_editor_prompts" | "platform_editor_ai_onboarding" | "comment_on_bodied_extensions" | "platform_editor_ai_floating_toolbar_v2" | "typography_migration_ugc" | "editor_ai_-_proactive_ai_improve_writing">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -224,6 +224,14 @@ declare namespace eeTest {
|
|
|
224
224
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
225
225
|
defaultValue: "test" | "control";
|
|
226
226
|
};
|
|
227
|
+
platform_editor_ai_onboarding: {
|
|
228
|
+
productKeys: {
|
|
229
|
+
confluence: string;
|
|
230
|
+
};
|
|
231
|
+
param: string;
|
|
232
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
233
|
+
defaultValue: "test" | "control";
|
|
234
|
+
};
|
|
227
235
|
comment_on_bodied_extensions: {
|
|
228
236
|
productKeys: {
|
|
229
237
|
confluence: string;
|
|
@@ -237,8 +245,8 @@ declare namespace eeTest {
|
|
|
237
245
|
confluence: string;
|
|
238
246
|
};
|
|
239
247
|
param: string;
|
|
240
|
-
typeGuard:
|
|
241
|
-
defaultValue:
|
|
248
|
+
typeGuard: (value: unknown) => value is "control" | "leading" | "trailing";
|
|
249
|
+
defaultValue: "control" | "leading" | "trailing";
|
|
242
250
|
};
|
|
243
251
|
typography_migration_ugc: {
|
|
244
252
|
productKeys: {
|
|
@@ -248,6 +256,14 @@ declare namespace eeTest {
|
|
|
248
256
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
249
257
|
defaultValue: boolean;
|
|
250
258
|
};
|
|
259
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
260
|
+
productKeys: {
|
|
261
|
+
confluence: string;
|
|
262
|
+
};
|
|
263
|
+
param: string;
|
|
264
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
265
|
+
defaultValue: "test" | "control";
|
|
266
|
+
};
|
|
251
267
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
252
268
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
253
269
|
};
|
|
@@ -183,6 +183,14 @@ export declare const editorExperimentsConfig: {
|
|
|
183
183
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
184
184
|
defaultValue: "test" | "control";
|
|
185
185
|
};
|
|
186
|
+
platform_editor_ai_onboarding: {
|
|
187
|
+
productKeys: {
|
|
188
|
+
confluence: string;
|
|
189
|
+
};
|
|
190
|
+
param: string;
|
|
191
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
192
|
+
defaultValue: "test" | "control";
|
|
193
|
+
};
|
|
186
194
|
comment_on_bodied_extensions: {
|
|
187
195
|
productKeys: {
|
|
188
196
|
confluence: string;
|
|
@@ -196,8 +204,8 @@ export declare const editorExperimentsConfig: {
|
|
|
196
204
|
confluence: string;
|
|
197
205
|
};
|
|
198
206
|
param: string;
|
|
199
|
-
typeGuard:
|
|
200
|
-
defaultValue:
|
|
207
|
+
typeGuard: (value: unknown) => value is "control" | "leading" | "trailing";
|
|
208
|
+
defaultValue: "control" | "leading" | "trailing";
|
|
201
209
|
};
|
|
202
210
|
typography_migration_ugc: {
|
|
203
211
|
productKeys: {
|
|
@@ -207,4 +215,12 @@ export declare const editorExperimentsConfig: {
|
|
|
207
215
|
typeGuard: typeof isBoolean;
|
|
208
216
|
defaultValue: boolean;
|
|
209
217
|
};
|
|
218
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
219
|
+
productKeys: {
|
|
220
|
+
confluence: string;
|
|
221
|
+
};
|
|
222
|
+
param: string;
|
|
223
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
224
|
+
defaultValue: "test" | "control";
|
|
225
|
+
};
|
|
210
226
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -25,9 +25,11 @@ export declare let _overrides: Partial<{
|
|
|
25
25
|
platform_editor_table_use_shared_state_hook: boolean;
|
|
26
26
|
'editor_ai_-_multi_prompts': "test" | "control";
|
|
27
27
|
platform_editor_ai_additional_editor_prompts: "test" | "control";
|
|
28
|
+
platform_editor_ai_onboarding: "test" | "control";
|
|
28
29
|
comment_on_bodied_extensions: boolean;
|
|
29
|
-
platform_editor_ai_floating_toolbar_v2:
|
|
30
|
+
platform_editor_ai_floating_toolbar_v2: "control" | "leading" | "trailing";
|
|
30
31
|
typography_migration_ugc: boolean;
|
|
32
|
+
'editor_ai_-_proactive_ai_improve_writing': "test" | "control";
|
|
31
33
|
}>;
|
|
32
34
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
33
35
|
/**
|
|
@@ -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" | "platform_editor_ai_command_palate_improvement" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "platform_editor_empty_line_prompt" | "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_ai_command_palette_post_ga" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "platform_editor_ai_additional_editor_prompts" | "comment_on_bodied_extensions" | "platform_editor_ai_floating_toolbar_v2" | "typography_migration_ugc">(experimentName: ExperimentName, describeName: string) => {
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "platform_editor_ai_command_palate_improvement" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "platform_editor_empty_line_prompt" | "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_ai_command_palette_post_ga" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "platform_editor_ai_additional_editor_prompts" | "platform_editor_ai_onboarding" | "comment_on_bodied_extensions" | "platform_editor_ai_floating_toolbar_v2" | "typography_migration_ugc" | "editor_ai_-_proactive_ai_improve_writing">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -224,6 +224,14 @@ declare namespace eeTest {
|
|
|
224
224
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
225
225
|
defaultValue: "test" | "control";
|
|
226
226
|
};
|
|
227
|
+
platform_editor_ai_onboarding: {
|
|
228
|
+
productKeys: {
|
|
229
|
+
confluence: string;
|
|
230
|
+
};
|
|
231
|
+
param: string;
|
|
232
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
233
|
+
defaultValue: "test" | "control";
|
|
234
|
+
};
|
|
227
235
|
comment_on_bodied_extensions: {
|
|
228
236
|
productKeys: {
|
|
229
237
|
confluence: string;
|
|
@@ -237,8 +245,8 @@ declare namespace eeTest {
|
|
|
237
245
|
confluence: string;
|
|
238
246
|
};
|
|
239
247
|
param: string;
|
|
240
|
-
typeGuard:
|
|
241
|
-
defaultValue:
|
|
248
|
+
typeGuard: (value: unknown) => value is "control" | "leading" | "trailing";
|
|
249
|
+
defaultValue: "control" | "leading" | "trailing";
|
|
242
250
|
};
|
|
243
251
|
typography_migration_ugc: {
|
|
244
252
|
productKeys: {
|
|
@@ -248,6 +256,14 @@ declare namespace eeTest {
|
|
|
248
256
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
249
257
|
defaultValue: boolean;
|
|
250
258
|
};
|
|
259
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
260
|
+
productKeys: {
|
|
261
|
+
confluence: string;
|
|
262
|
+
};
|
|
263
|
+
param: string;
|
|
264
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
265
|
+
defaultValue: "test" | "control";
|
|
266
|
+
};
|
|
251
267
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
252
268
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
253
269
|
};
|
|
@@ -183,6 +183,14 @@ export declare const editorExperimentsConfig: {
|
|
|
183
183
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
184
184
|
defaultValue: "test" | "control";
|
|
185
185
|
};
|
|
186
|
+
platform_editor_ai_onboarding: {
|
|
187
|
+
productKeys: {
|
|
188
|
+
confluence: string;
|
|
189
|
+
};
|
|
190
|
+
param: string;
|
|
191
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
192
|
+
defaultValue: "test" | "control";
|
|
193
|
+
};
|
|
186
194
|
comment_on_bodied_extensions: {
|
|
187
195
|
productKeys: {
|
|
188
196
|
confluence: string;
|
|
@@ -196,8 +204,8 @@ export declare const editorExperimentsConfig: {
|
|
|
196
204
|
confluence: string;
|
|
197
205
|
};
|
|
198
206
|
param: string;
|
|
199
|
-
typeGuard:
|
|
200
|
-
defaultValue:
|
|
207
|
+
typeGuard: (value: unknown) => value is "control" | "leading" | "trailing";
|
|
208
|
+
defaultValue: "control" | "leading" | "trailing";
|
|
201
209
|
};
|
|
202
210
|
typography_migration_ugc: {
|
|
203
211
|
productKeys: {
|
|
@@ -207,4 +215,12 @@ export declare const editorExperimentsConfig: {
|
|
|
207
215
|
typeGuard: typeof isBoolean;
|
|
208
216
|
defaultValue: boolean;
|
|
209
217
|
};
|
|
218
|
+
'editor_ai_-_proactive_ai_improve_writing': {
|
|
219
|
+
productKeys: {
|
|
220
|
+
confluence: string;
|
|
221
|
+
};
|
|
222
|
+
param: string;
|
|
223
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
224
|
+
defaultValue: "test" | "control";
|
|
225
|
+
};
|
|
210
226
|
};
|
|
@@ -25,9 +25,11 @@ export declare let _overrides: Partial<{
|
|
|
25
25
|
platform_editor_table_use_shared_state_hook: boolean;
|
|
26
26
|
'editor_ai_-_multi_prompts': "test" | "control";
|
|
27
27
|
platform_editor_ai_additional_editor_prompts: "test" | "control";
|
|
28
|
+
platform_editor_ai_onboarding: "test" | "control";
|
|
28
29
|
comment_on_bodied_extensions: boolean;
|
|
29
|
-
platform_editor_ai_floating_toolbar_v2:
|
|
30
|
+
platform_editor_ai_floating_toolbar_v2: "control" | "leading" | "trailing";
|
|
30
31
|
typography_migration_ugc: boolean;
|
|
32
|
+
'editor_ai_-_proactive_ai_improve_writing': "test" | "control";
|
|
31
33
|
}>;
|
|
32
34
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
33
35
|
/**
|
package/package.json
CHANGED