@atlaskit/tmp-editor-statsig 2.2.0 → 2.2.1
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 +8 -0
- package/dist/cjs/experiments-config.js +19 -10
- package/dist/es2019/experiments-config.js +19 -10
- package/dist/esm/experiments-config.js +19 -10
- package/dist/types/editor-experiments-test-utils.d.ts +17 -9
- package/dist/types/experiments-config.d.ts +16 -8
- package/dist/types/setup.d.ts +2 -1
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +17 -9
- package/dist/types-ts4.5/experiments-config.d.ts +16 -8
- package/dist/types-ts4.5/setup.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#149419](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/149419)
|
|
8
|
+
[`9c2e5e1e4cdc9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9c2e5e1e4cdc9) -
|
|
9
|
+
[ux] Update Floating toolbar to new UX designs
|
|
10
|
+
|
|
3
11
|
## 2.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -61,15 +61,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
61
61
|
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
62
62
|
defaultValue: 'control'
|
|
63
63
|
},
|
|
64
|
-
// Added 2024-08-23
|
|
65
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
66
|
-
productKeys: {
|
|
67
|
-
confluence: 'platform_editor_ai_condensed_floating_toobar'
|
|
68
|
-
},
|
|
69
|
-
param: 'cohort',
|
|
70
|
-
typeGuard: (0, _typeGuards.oneOf)(['control', 'dropdown', 'editor_ai_button']),
|
|
71
|
-
defaultValue: 'control'
|
|
72
|
-
},
|
|
73
64
|
// Added 2024-08-27
|
|
74
65
|
'dnd-input-performance-optimisation': {
|
|
75
66
|
productKeys: {
|
|
@@ -199,7 +190,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
199
190
|
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
200
191
|
defaultValue: 'control'
|
|
201
192
|
},
|
|
202
|
-
// Added 2024-09-26
|
|
203
193
|
platform_editor_table_use_shared_state_hook: {
|
|
204
194
|
productKeys: {
|
|
205
195
|
confluence: 'platform_editor_table_use_shared_state_hook'
|
|
@@ -218,6 +208,16 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
218
208
|
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
219
209
|
defaultValue: 'control'
|
|
220
210
|
},
|
|
211
|
+
// Added 2024-10-02
|
|
212
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_additional_editor_prompts/setup
|
|
213
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
214
|
+
productKeys: {
|
|
215
|
+
confluence: 'platform_editor_ai_additional_editor_prompts'
|
|
216
|
+
},
|
|
217
|
+
param: 'cohort',
|
|
218
|
+
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
219
|
+
defaultValue: 'control'
|
|
220
|
+
},
|
|
221
221
|
// Added 2024-10-01
|
|
222
222
|
comment_on_bodied_extensions: {
|
|
223
223
|
productKeys: {
|
|
@@ -226,5 +226,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
226
226
|
param: 'isEnabled',
|
|
227
227
|
typeGuard: _typeGuards.isBoolean,
|
|
228
228
|
defaultValue: false
|
|
229
|
+
},
|
|
230
|
+
// Added 2024-10-01
|
|
231
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
232
|
+
productKeys: {
|
|
233
|
+
confluence: 'platform_editor_ai_floating_toolbar_v2'
|
|
234
|
+
},
|
|
235
|
+
param: 'isEnabled',
|
|
236
|
+
typeGuard: _typeGuards.isBoolean,
|
|
237
|
+
defaultValue: false
|
|
229
238
|
}
|
|
230
239
|
};
|
|
@@ -55,15 +55,6 @@ export const editorExperimentsConfig = {
|
|
|
55
55
|
typeGuard: oneOf(['control', 'test']),
|
|
56
56
|
defaultValue: 'control'
|
|
57
57
|
},
|
|
58
|
-
// Added 2024-08-23
|
|
59
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
60
|
-
productKeys: {
|
|
61
|
-
confluence: 'platform_editor_ai_condensed_floating_toobar'
|
|
62
|
-
},
|
|
63
|
-
param: 'cohort',
|
|
64
|
-
typeGuard: oneOf(['control', 'dropdown', 'editor_ai_button']),
|
|
65
|
-
defaultValue: 'control'
|
|
66
|
-
},
|
|
67
58
|
// Added 2024-08-27
|
|
68
59
|
'dnd-input-performance-optimisation': {
|
|
69
60
|
productKeys: {
|
|
@@ -193,7 +184,6 @@ export const editorExperimentsConfig = {
|
|
|
193
184
|
typeGuard: oneOf(['control', 'test']),
|
|
194
185
|
defaultValue: 'control'
|
|
195
186
|
},
|
|
196
|
-
// Added 2024-09-26
|
|
197
187
|
platform_editor_table_use_shared_state_hook: {
|
|
198
188
|
productKeys: {
|
|
199
189
|
confluence: 'platform_editor_table_use_shared_state_hook'
|
|
@@ -212,6 +202,16 @@ export const editorExperimentsConfig = {
|
|
|
212
202
|
typeGuard: oneOf(['control', 'test']),
|
|
213
203
|
defaultValue: 'control'
|
|
214
204
|
},
|
|
205
|
+
// Added 2024-10-02
|
|
206
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_additional_editor_prompts/setup
|
|
207
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
208
|
+
productKeys: {
|
|
209
|
+
confluence: 'platform_editor_ai_additional_editor_prompts'
|
|
210
|
+
},
|
|
211
|
+
param: 'cohort',
|
|
212
|
+
typeGuard: oneOf(['control', 'test']),
|
|
213
|
+
defaultValue: 'control'
|
|
214
|
+
},
|
|
215
215
|
// Added 2024-10-01
|
|
216
216
|
comment_on_bodied_extensions: {
|
|
217
217
|
productKeys: {
|
|
@@ -220,5 +220,14 @@ export const editorExperimentsConfig = {
|
|
|
220
220
|
param: 'isEnabled',
|
|
221
221
|
typeGuard: isBoolean,
|
|
222
222
|
defaultValue: false
|
|
223
|
+
},
|
|
224
|
+
// Added 2024-10-01
|
|
225
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
226
|
+
productKeys: {
|
|
227
|
+
confluence: 'platform_editor_ai_floating_toolbar_v2'
|
|
228
|
+
},
|
|
229
|
+
param: 'isEnabled',
|
|
230
|
+
typeGuard: isBoolean,
|
|
231
|
+
defaultValue: false
|
|
223
232
|
}
|
|
224
233
|
};
|
|
@@ -55,15 +55,6 @@ export var editorExperimentsConfig = {
|
|
|
55
55
|
typeGuard: oneOf(['control', 'test']),
|
|
56
56
|
defaultValue: 'control'
|
|
57
57
|
},
|
|
58
|
-
// Added 2024-08-23
|
|
59
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
60
|
-
productKeys: {
|
|
61
|
-
confluence: 'platform_editor_ai_condensed_floating_toobar'
|
|
62
|
-
},
|
|
63
|
-
param: 'cohort',
|
|
64
|
-
typeGuard: oneOf(['control', 'dropdown', 'editor_ai_button']),
|
|
65
|
-
defaultValue: 'control'
|
|
66
|
-
},
|
|
67
58
|
// Added 2024-08-27
|
|
68
59
|
'dnd-input-performance-optimisation': {
|
|
69
60
|
productKeys: {
|
|
@@ -193,7 +184,6 @@ export var editorExperimentsConfig = {
|
|
|
193
184
|
typeGuard: oneOf(['control', 'test']),
|
|
194
185
|
defaultValue: 'control'
|
|
195
186
|
},
|
|
196
|
-
// Added 2024-09-26
|
|
197
187
|
platform_editor_table_use_shared_state_hook: {
|
|
198
188
|
productKeys: {
|
|
199
189
|
confluence: 'platform_editor_table_use_shared_state_hook'
|
|
@@ -212,6 +202,16 @@ export var editorExperimentsConfig = {
|
|
|
212
202
|
typeGuard: oneOf(['control', 'test']),
|
|
213
203
|
defaultValue: 'control'
|
|
214
204
|
},
|
|
205
|
+
// Added 2024-10-02
|
|
206
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_ai_additional_editor_prompts/setup
|
|
207
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
208
|
+
productKeys: {
|
|
209
|
+
confluence: 'platform_editor_ai_additional_editor_prompts'
|
|
210
|
+
},
|
|
211
|
+
param: 'cohort',
|
|
212
|
+
typeGuard: oneOf(['control', 'test']),
|
|
213
|
+
defaultValue: 'control'
|
|
214
|
+
},
|
|
215
215
|
// Added 2024-10-01
|
|
216
216
|
comment_on_bodied_extensions: {
|
|
217
217
|
productKeys: {
|
|
@@ -220,5 +220,14 @@ export var editorExperimentsConfig = {
|
|
|
220
220
|
param: 'isEnabled',
|
|
221
221
|
typeGuard: isBoolean,
|
|
222
222
|
defaultValue: false
|
|
223
|
+
},
|
|
224
|
+
// Added 2024-10-01
|
|
225
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
226
|
+
productKeys: {
|
|
227
|
+
confluence: 'platform_editor_ai_floating_toolbar_v2'
|
|
228
|
+
},
|
|
229
|
+
param: 'isEnabled',
|
|
230
|
+
typeGuard: isBoolean,
|
|
231
|
+
defaultValue: false
|
|
223
232
|
}
|
|
224
233
|
};
|
|
@@ -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" | "
|
|
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">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -88,14 +88,6 @@ declare namespace eeTest {
|
|
|
88
88
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
89
89
|
defaultValue: "test" | "control";
|
|
90
90
|
};
|
|
91
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
92
|
-
productKeys: {
|
|
93
|
-
confluence: string;
|
|
94
|
-
};
|
|
95
|
-
param: string;
|
|
96
|
-
typeGuard: (value: unknown) => value is "control" | "dropdown" | "editor_ai_button";
|
|
97
|
-
defaultValue: "control" | "dropdown" | "editor_ai_button";
|
|
98
|
-
};
|
|
99
91
|
'dnd-input-performance-optimisation': {
|
|
100
92
|
productKeys: {
|
|
101
93
|
confluence: string;
|
|
@@ -224,6 +216,14 @@ declare namespace eeTest {
|
|
|
224
216
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
225
217
|
defaultValue: "test" | "control";
|
|
226
218
|
};
|
|
219
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
220
|
+
productKeys: {
|
|
221
|
+
confluence: string;
|
|
222
|
+
};
|
|
223
|
+
param: string;
|
|
224
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
225
|
+
defaultValue: "test" | "control";
|
|
226
|
+
};
|
|
227
227
|
comment_on_bodied_extensions: {
|
|
228
228
|
productKeys: {
|
|
229
229
|
confluence: string;
|
|
@@ -232,6 +232,14 @@ declare namespace eeTest {
|
|
|
232
232
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
233
233
|
defaultValue: boolean;
|
|
234
234
|
};
|
|
235
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
236
|
+
productKeys: {
|
|
237
|
+
confluence: string;
|
|
238
|
+
};
|
|
239
|
+
param: string;
|
|
240
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
241
|
+
defaultValue: boolean;
|
|
242
|
+
};
|
|
235
243
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
236
244
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
237
245
|
};
|
|
@@ -47,14 +47,6 @@ export declare const editorExperimentsConfig: {
|
|
|
47
47
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
48
48
|
defaultValue: "test" | "control";
|
|
49
49
|
};
|
|
50
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
51
|
-
productKeys: {
|
|
52
|
-
confluence: string;
|
|
53
|
-
};
|
|
54
|
-
param: string;
|
|
55
|
-
typeGuard: (value: unknown) => value is "control" | "dropdown" | "editor_ai_button";
|
|
56
|
-
defaultValue: "control" | "dropdown" | "editor_ai_button";
|
|
57
|
-
};
|
|
58
50
|
'dnd-input-performance-optimisation': {
|
|
59
51
|
productKeys: {
|
|
60
52
|
confluence: string;
|
|
@@ -183,6 +175,14 @@ export declare const editorExperimentsConfig: {
|
|
|
183
175
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
184
176
|
defaultValue: "test" | "control";
|
|
185
177
|
};
|
|
178
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
179
|
+
productKeys: {
|
|
180
|
+
confluence: string;
|
|
181
|
+
};
|
|
182
|
+
param: string;
|
|
183
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
184
|
+
defaultValue: "test" | "control";
|
|
185
|
+
};
|
|
186
186
|
comment_on_bodied_extensions: {
|
|
187
187
|
productKeys: {
|
|
188
188
|
confluence: string;
|
|
@@ -191,4 +191,12 @@ export declare const editorExperimentsConfig: {
|
|
|
191
191
|
typeGuard: typeof isBoolean;
|
|
192
192
|
defaultValue: boolean;
|
|
193
193
|
};
|
|
194
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
195
|
+
productKeys: {
|
|
196
|
+
confluence: string;
|
|
197
|
+
};
|
|
198
|
+
param: string;
|
|
199
|
+
typeGuard: typeof isBoolean;
|
|
200
|
+
defaultValue: boolean;
|
|
201
|
+
};
|
|
194
202
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ export declare let _overrides: Partial<{
|
|
|
8
8
|
'test-new-experiments-package': boolean;
|
|
9
9
|
'basic-text-transformations': boolean;
|
|
10
10
|
platform_editor_ai_command_palate_improvement: "test" | "control";
|
|
11
|
-
'platform-editor-ai-condensed-floating-toobar': "control" | "dropdown" | "editor_ai_button";
|
|
12
11
|
'dnd-input-performance-optimisation': boolean;
|
|
13
12
|
'element-level-templates': boolean;
|
|
14
13
|
'add-media-from-url': boolean;
|
|
@@ -25,7 +24,9 @@ export declare let _overrides: Partial<{
|
|
|
25
24
|
platform_editor_ai_command_palette_post_ga: "test" | "control";
|
|
26
25
|
platform_editor_table_use_shared_state_hook: boolean;
|
|
27
26
|
'editor_ai_-_multi_prompts': "test" | "control";
|
|
27
|
+
platform_editor_ai_additional_editor_prompts: "test" | "control";
|
|
28
28
|
comment_on_bodied_extensions: boolean;
|
|
29
|
+
platform_editor_ai_floating_toolbar_v2: boolean;
|
|
29
30
|
}>;
|
|
30
31
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
31
32
|
/**
|
|
@@ -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" | "
|
|
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">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -88,14 +88,6 @@ declare namespace eeTest {
|
|
|
88
88
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
89
89
|
defaultValue: "test" | "control";
|
|
90
90
|
};
|
|
91
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
92
|
-
productKeys: {
|
|
93
|
-
confluence: string;
|
|
94
|
-
};
|
|
95
|
-
param: string;
|
|
96
|
-
typeGuard: (value: unknown) => value is "control" | "dropdown" | "editor_ai_button";
|
|
97
|
-
defaultValue: "control" | "dropdown" | "editor_ai_button";
|
|
98
|
-
};
|
|
99
91
|
'dnd-input-performance-optimisation': {
|
|
100
92
|
productKeys: {
|
|
101
93
|
confluence: string;
|
|
@@ -224,6 +216,14 @@ declare namespace eeTest {
|
|
|
224
216
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
225
217
|
defaultValue: "test" | "control";
|
|
226
218
|
};
|
|
219
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
220
|
+
productKeys: {
|
|
221
|
+
confluence: string;
|
|
222
|
+
};
|
|
223
|
+
param: string;
|
|
224
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
225
|
+
defaultValue: "test" | "control";
|
|
226
|
+
};
|
|
227
227
|
comment_on_bodied_extensions: {
|
|
228
228
|
productKeys: {
|
|
229
229
|
confluence: string;
|
|
@@ -232,6 +232,14 @@ declare namespace eeTest {
|
|
|
232
232
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
233
233
|
defaultValue: boolean;
|
|
234
234
|
};
|
|
235
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
236
|
+
productKeys: {
|
|
237
|
+
confluence: string;
|
|
238
|
+
};
|
|
239
|
+
param: string;
|
|
240
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
241
|
+
defaultValue: boolean;
|
|
242
|
+
};
|
|
235
243
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
236
244
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
237
245
|
};
|
|
@@ -47,14 +47,6 @@ export declare const editorExperimentsConfig: {
|
|
|
47
47
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
48
48
|
defaultValue: "test" | "control";
|
|
49
49
|
};
|
|
50
|
-
'platform-editor-ai-condensed-floating-toobar': {
|
|
51
|
-
productKeys: {
|
|
52
|
-
confluence: string;
|
|
53
|
-
};
|
|
54
|
-
param: string;
|
|
55
|
-
typeGuard: (value: unknown) => value is "control" | "dropdown" | "editor_ai_button";
|
|
56
|
-
defaultValue: "control" | "dropdown" | "editor_ai_button";
|
|
57
|
-
};
|
|
58
50
|
'dnd-input-performance-optimisation': {
|
|
59
51
|
productKeys: {
|
|
60
52
|
confluence: string;
|
|
@@ -183,6 +175,14 @@ export declare const editorExperimentsConfig: {
|
|
|
183
175
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
184
176
|
defaultValue: "test" | "control";
|
|
185
177
|
};
|
|
178
|
+
platform_editor_ai_additional_editor_prompts: {
|
|
179
|
+
productKeys: {
|
|
180
|
+
confluence: string;
|
|
181
|
+
};
|
|
182
|
+
param: string;
|
|
183
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
184
|
+
defaultValue: "test" | "control";
|
|
185
|
+
};
|
|
186
186
|
comment_on_bodied_extensions: {
|
|
187
187
|
productKeys: {
|
|
188
188
|
confluence: string;
|
|
@@ -191,4 +191,12 @@ export declare const editorExperimentsConfig: {
|
|
|
191
191
|
typeGuard: typeof isBoolean;
|
|
192
192
|
defaultValue: boolean;
|
|
193
193
|
};
|
|
194
|
+
platform_editor_ai_floating_toolbar_v2: {
|
|
195
|
+
productKeys: {
|
|
196
|
+
confluence: string;
|
|
197
|
+
};
|
|
198
|
+
param: string;
|
|
199
|
+
typeGuard: typeof isBoolean;
|
|
200
|
+
defaultValue: boolean;
|
|
201
|
+
};
|
|
194
202
|
};
|
|
@@ -8,7 +8,6 @@ export declare let _overrides: Partial<{
|
|
|
8
8
|
'test-new-experiments-package': boolean;
|
|
9
9
|
'basic-text-transformations': boolean;
|
|
10
10
|
platform_editor_ai_command_palate_improvement: "test" | "control";
|
|
11
|
-
'platform-editor-ai-condensed-floating-toobar': "control" | "dropdown" | "editor_ai_button";
|
|
12
11
|
'dnd-input-performance-optimisation': boolean;
|
|
13
12
|
'element-level-templates': boolean;
|
|
14
13
|
'add-media-from-url': boolean;
|
|
@@ -25,7 +24,9 @@ export declare let _overrides: Partial<{
|
|
|
25
24
|
platform_editor_ai_command_palette_post_ga: "test" | "control";
|
|
26
25
|
platform_editor_table_use_shared_state_hook: boolean;
|
|
27
26
|
'editor_ai_-_multi_prompts': "test" | "control";
|
|
27
|
+
platform_editor_ai_additional_editor_prompts: "test" | "control";
|
|
28
28
|
comment_on_bodied_extensions: boolean;
|
|
29
|
+
platform_editor_ai_floating_toolbar_v2: boolean;
|
|
29
30
|
}>;
|
|
30
31
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
31
32
|
/**
|
package/package.json
CHANGED