@atlaskit/tmp-editor-statsig 101.0.0 → 103.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.
@@ -1,1687 +0,0 @@
1
- import { isBoolean } from './type-guards';
2
- import type { ProductKeys } from './types';
3
- type IsBooleanType = typeof isBoolean;
4
- export type EditorExperimentsConfig = typeof editorExperimentsConfig;
5
- export declare const disallowsProductKeys: (keyof EditorExperimentsConfig)[];
6
- /**
7
- * Extract valid expected values.
8
- * - For multivariate experiments: returns union of valid string values (inferred from defaultValue type)
9
- * - For boolean experiments: returns only 'true' literal (cannot use 'false' as expected value)
10
- */
11
- export type ExperimentExpectedValue<ExperimentName extends keyof EditorExperimentsConfig> = EditorExperimentsConfig[ExperimentName]['defaultValue'] extends boolean ? true : EditorExperimentsConfig[ExperimentName]['defaultValue'];
12
- /**
13
- * Extract valid default values.
14
- * - For boolean experiments: returns only 'false' literal (cannot use 'true' as default value)
15
- * - For multivariate experiments: returns the default value type (one of the string values)
16
- */
17
- export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperimentsConfig> = EditorExperimentsConfig[ExperimentName]['defaultValue'] extends boolean ? false : EditorExperimentsConfig[ExperimentName]['defaultValue'];
18
- /**
19
- * When adding a new experiment, you need to add it here.
20
- * Please follow the pattern established in the examples and any
21
- * existing experiments.
22
- */
23
- export declare const editorExperimentsConfig: {
24
- advanced_layouts: {
25
- defaultValue: boolean;
26
- param: string;
27
- productKeys?: ProductKeys;
28
- typeGuard: IsBooleanType;
29
- };
30
- cwr_blank_object_experiment: {
31
- defaultValue: boolean;
32
- param: string;
33
- productKeys?: ProductKeys;
34
- typeGuard: IsBooleanType;
35
- };
36
- rovo_remix_experience_context: {
37
- defaultValue: boolean;
38
- param: string;
39
- productKeys?: ProductKeys;
40
- typeGuard: IsBooleanType;
41
- };
42
- 'databases-native-embeds-v2': {
43
- defaultValue: boolean;
44
- param: string;
45
- productKeys?: ProductKeys;
46
- typeGuard: IsBooleanType;
47
- };
48
- cwr_page_tree_auto_finalize: {
49
- defaultValue: boolean;
50
- param: string;
51
- productKeys?: ProductKeys;
52
- typeGuard: IsBooleanType;
53
- };
54
- aifc_space_typesettings: {
55
- defaultValue: boolean;
56
- param: string;
57
- productKeys?: ProductKeys;
58
- typeGuard: IsBooleanType;
59
- };
60
- 'agent-managed_blocks_mvp': {
61
- defaultValue: boolean;
62
- param: string;
63
- productKeys?: ProductKeys;
64
- typeGuard: IsBooleanType;
65
- };
66
- cc_editor_ai_content_mode: {
67
- defaultValue: 'control' | 'test';
68
- param: string;
69
- productKeys?: ProductKeys;
70
- typeGuard: (value: unknown) => value is 'control' | 'test';
71
- values: ('control' | 'test')[];
72
- };
73
- cc_integrations_editor_open_link_click_analytics: {
74
- defaultValue: boolean;
75
- param: string;
76
- productKeys?: ProductKeys;
77
- typeGuard: IsBooleanType;
78
- };
79
- cc_editor_insm_doc_size_stats: {
80
- defaultValue: boolean;
81
- param: string;
82
- productKeys?: ProductKeys;
83
- typeGuard: IsBooleanType;
84
- };
85
- cc_editor_fix_insm_inp_buffer: {
86
- defaultValue: boolean;
87
- param: string;
88
- productKeys?: ProductKeys;
89
- typeGuard: IsBooleanType;
90
- };
91
- editor_a11y_7152_profile_card_tab_order: {
92
- defaultValue: boolean;
93
- param: string;
94
- productKeys?: ProductKeys;
95
- typeGuard: IsBooleanType;
96
- };
97
- cc_editor_insm_outlier_events: {
98
- defaultValue: 'control' | 'test';
99
- param: string;
100
- productKeys?: ProductKeys;
101
- typeGuard: (value: unknown) => value is 'control' | 'test';
102
- values: ('control' | 'test')[];
103
- };
104
- 'editor_a11y__enghealth-46814_fy26': {
105
- defaultValue: boolean;
106
- param: string;
107
- productKeys?: ProductKeys;
108
- typeGuard: IsBooleanType;
109
- };
110
- platform_editor_ai_normalized_telemetry: {
111
- defaultValue: boolean;
112
- param: string;
113
- productKeys?: ProductKeys;
114
- typeGuard: IsBooleanType;
115
- };
116
- platform_editor_react19_migration: {
117
- defaultValue: boolean;
118
- param: string;
119
- productKeys?: ProductKeys;
120
- typeGuard: IsBooleanType;
121
- };
122
- platform_editor_per_plugin_error_boundary: {
123
- defaultValue: boolean;
124
- param: string;
125
- productKeys?: ProductKeys;
126
- typeGuard: IsBooleanType;
127
- };
128
- cc_editor_interactivity_monitoring: {
129
- defaultValue: boolean;
130
- param: string;
131
- productKeys?: ProductKeys;
132
- typeGuard: IsBooleanType;
133
- };
134
- confluence_load_editor_title_on_transition: {
135
- defaultValue: boolean;
136
- param: string;
137
- productKeys?: ProductKeys;
138
- typeGuard: IsBooleanType;
139
- };
140
- platform_editor_ai_headingautocomplete: {
141
- defaultValue: boolean;
142
- param: string;
143
- productKeys?: ProductKeys;
144
- typeGuard: IsBooleanType;
145
- };
146
- cc_fix_hydration_ttvc: {
147
- defaultValue: boolean;
148
- param: string;
149
- productKeys?: ProductKeys;
150
- typeGuard: IsBooleanType;
151
- };
152
- comment_on_bodied_extensions: {
153
- defaultValue: boolean;
154
- param: string;
155
- productKeys?: ProductKeys;
156
- typeGuard: IsBooleanType;
157
- };
158
- platform_editor_flex_based_centering: {
159
- defaultValue: boolean;
160
- param: string;
161
- productKeys?: ProductKeys;
162
- typeGuard: IsBooleanType;
163
- };
164
- platform_editor_code_block_q4_lovability: {
165
- defaultValue: boolean;
166
- param: string;
167
- productKeys?: ProductKeys;
168
- typeGuard: IsBooleanType;
169
- };
170
- platform_editor_render_bodied_extension_as_inline: {
171
- defaultValue: boolean;
172
- param: string;
173
- productKeys?: ProductKeys;
174
- typeGuard: IsBooleanType;
175
- };
176
- platform_editor_ai_quick_prompt_iw_cc: {
177
- defaultValue: boolean;
178
- param: string;
179
- productKeys?: ProductKeys;
180
- typeGuard: IsBooleanType;
181
- };
182
- platform_editor_ai_escape_early_for_unhealthy_node: {
183
- defaultValue: boolean;
184
- param: string;
185
- productKeys?: ProductKeys;
186
- typeGuard: IsBooleanType;
187
- };
188
- confluence_compact_text_format: {
189
- defaultValue: boolean;
190
- param: string;
191
- productKeys?: ProductKeys;
192
- typeGuard: IsBooleanType;
193
- };
194
- ai_speech_to_text_in_editor: {
195
- defaultValue: boolean;
196
- param: string;
197
- productKeys?: ProductKeys;
198
- typeGuard: IsBooleanType;
199
- };
200
- 'company_hub_carousel_thumbnails-refactor': {
201
- defaultValue: boolean;
202
- param: string;
203
- productKeys?: ProductKeys;
204
- typeGuard: IsBooleanType;
205
- };
206
- 'editor-a11y-fy26-keyboard-move-row-column': {
207
- defaultValue: boolean;
208
- param: string;
209
- productKeys?: ProductKeys;
210
- typeGuard: IsBooleanType;
211
- };
212
- editor_enable_image_alignment_in_expand: {
213
- defaultValue: boolean;
214
- param: string;
215
- productKeys?: ProductKeys;
216
- typeGuard: IsBooleanType;
217
- };
218
- platform_editor_paste_actions_menu: {
219
- defaultValue: boolean;
220
- param: string;
221
- productKeys?: ProductKeys;
222
- typeGuard: IsBooleanType;
223
- };
224
- editor_tinymce_full_width_mode: {
225
- defaultValue: boolean;
226
- param: string;
227
- productKeys?: ProductKeys;
228
- typeGuard: IsBooleanType;
229
- };
230
- platform_editor_remove_important_in_render_ext: {
231
- defaultValue: boolean;
232
- param: string;
233
- productKeys?: ProductKeys;
234
- typeGuard: IsBooleanType;
235
- };
236
- confluence_max_width_content_appearance: {
237
- defaultValue: boolean;
238
- param: string;
239
- productKeys?: ProductKeys;
240
- typeGuard: IsBooleanType;
241
- };
242
- confluence_max_width_breakout_extension_fix: {
243
- defaultValue: boolean;
244
- param: string;
245
- productKeys?: ProductKeys;
246
- typeGuard: IsBooleanType;
247
- };
248
- confluence_quick_insert_embeds: {
249
- defaultValue: 'control' | 'prioritizeLinkInQIM' | 'prioritizeEmbedInQIM';
250
- param: string;
251
- productKeys?: ProductKeys;
252
- typeGuard: (value: unknown) => value is 'control' | 'prioritizeLinkInQIM' | 'prioritizeEmbedInQIM';
253
- values: ('control' | 'prioritizeLinkInQIM' | 'prioritizeEmbedInQIM')[];
254
- };
255
- platform_editor_layout_keywords: {
256
- defaultValue: boolean;
257
- param: string;
258
- productKeys?: ProductKeys;
259
- typeGuard: IsBooleanType;
260
- };
261
- platform_editor_editor_ssr_streaming: {
262
- defaultValue: boolean;
263
- param: string;
264
- productKeys?: ProductKeys;
265
- typeGuard: IsBooleanType;
266
- };
267
- confluence_remix_icon_right_side: {
268
- defaultValue: boolean;
269
- param: string;
270
- productKeys?: ProductKeys;
271
- typeGuard: IsBooleanType;
272
- };
273
- 'example-boolean': {
274
- defaultValue: boolean;
275
- param: string;
276
- productKeys?: ProductKeys;
277
- typeGuard: IsBooleanType;
278
- };
279
- 'example-multivariate': {
280
- defaultValue: 'one' | 'two' | 'three';
281
- param: string;
282
- productKeys?: ProductKeys;
283
- typeGuard: (value: unknown) => value is 'one' | 'two' | 'three';
284
- values: ('one' | 'two' | 'three')[];
285
- };
286
- 'jira-work-sync-desc-comment-summary': {
287
- defaultValue: boolean;
288
- param: string;
289
- productKeys?: ProductKeys;
290
- typeGuard: IsBooleanType;
291
- };
292
- platform_editor_abort_ufo_on_user_interaction: {
293
- defaultValue: boolean;
294
- param: string;
295
- productKeys?: ProductKeys;
296
- typeGuard: IsBooleanType;
297
- };
298
- platform_editor_ai_edit_response_in_preview: {
299
- defaultValue: boolean;
300
- param: string;
301
- productKeys?: ProductKeys;
302
- typeGuard: IsBooleanType;
303
- };
304
- platform_editor_ai_unsplash_page_header: {
305
- defaultValue: boolean;
306
- param: string;
307
- productKeys?: ProductKeys;
308
- typeGuard: IsBooleanType;
309
- };
310
- 'platform_editor_ai-prompts-placeholder': {
311
- defaultValue: 'control' | 'test';
312
- param: string;
313
- productKeys?: ProductKeys;
314
- typeGuard: (value: unknown) => value is 'control' | 'test';
315
- values: ('control' | 'test')[];
316
- };
317
- platform_editor_annotations_sync_on_docchange: {
318
- defaultValue: boolean;
319
- param: string;
320
- productKeys?: ProductKeys;
321
- typeGuard: IsBooleanType;
322
- };
323
- platform_editor_august_a11y: {
324
- defaultValue: boolean;
325
- param: string;
326
- productKeys?: ProductKeys;
327
- typeGuard: IsBooleanType;
328
- };
329
- platform_editor_expand_paste_in_comment_editor: {
330
- defaultValue: boolean;
331
- param: string;
332
- productKeys?: ProductKeys;
333
- typeGuard: IsBooleanType;
334
- };
335
- platform_editor_media_name_fallback: {
336
- defaultValue: boolean;
337
- param: string;
338
- productKeys?: ProductKeys;
339
- typeGuard: IsBooleanType;
340
- };
341
- platform_editor_block_controls_perf_optimization: {
342
- defaultValue: boolean;
343
- param: string;
344
- productKeys?: ProductKeys;
345
- typeGuard: IsBooleanType;
346
- };
347
- platform_editor_block_menu: {
348
- defaultValue: boolean;
349
- param: string;
350
- productKeys?: ProductKeys;
351
- typeGuard: IsBooleanType;
352
- };
353
- platform_editor_blocks: {
354
- defaultValue: boolean;
355
- param: string;
356
- productKeys?: ProductKeys;
357
- typeGuard: IsBooleanType;
358
- };
359
- platform_editor_blockquote_in_text_formatting_menu: {
360
- defaultValue: boolean;
361
- param: string;
362
- productKeys?: ProductKeys;
363
- typeGuard: IsBooleanType;
364
- };
365
- platform_editor_blocktaskitem_node_tenantid: {
366
- defaultValue: boolean;
367
- param: string;
368
- productKeys?: ProductKeys;
369
- typeGuard: IsBooleanType;
370
- };
371
- platform_editor_blocktaskitem_patch_1: {
372
- defaultValue: boolean;
373
- param: string;
374
- productKeys?: ProductKeys;
375
- typeGuard: IsBooleanType;
376
- };
377
- platform_editor_breakout_interaction_rerender: {
378
- defaultValue: boolean;
379
- param: string;
380
- productKeys?: ProductKeys;
381
- typeGuard: IsBooleanType;
382
- };
383
- platform_editor_breakout_resizing: {
384
- defaultValue: boolean;
385
- param: string;
386
- productKeys?: ProductKeys;
387
- typeGuard: IsBooleanType;
388
- };
389
- platform_editor_code_block_fold_gutter: {
390
- defaultValue: boolean;
391
- param: string;
392
- productKeys?: ProductKeys;
393
- typeGuard: IsBooleanType;
394
- };
395
- platform_editor_controls: {
396
- defaultValue: 'control' | 'variant1';
397
- param: string;
398
- productKeys?: ProductKeys;
399
- typeGuard: (value: unknown) => value is 'control' | 'variant1';
400
- values: ('control' | 'variant1')[];
401
- };
402
- platform_editor_clean_up_widget_mark_logic: {
403
- defaultValue: boolean;
404
- param: string;
405
- productKeys?: ProductKeys;
406
- typeGuard: IsBooleanType;
407
- };
408
- platform_editor_controls_reliable_anchor: {
409
- defaultValue: boolean;
410
- param: string;
411
- productKeys?: ProductKeys;
412
- typeGuard: IsBooleanType;
413
- };
414
- platform_editor_confluence_base_preset: {
415
- defaultValue: boolean;
416
- param: string;
417
- productKeys?: ProductKeys;
418
- typeGuard: IsBooleanType;
419
- };
420
- platform_editor_debounce_portal_provider: {
421
- defaultValue: boolean;
422
- param: string;
423
- productKeys?: ProductKeys;
424
- typeGuard: IsBooleanType;
425
- };
426
- platform_editor_disable_lazy_load_media: {
427
- defaultValue: boolean;
428
- param: string;
429
- productKeys?: ProductKeys;
430
- typeGuard: IsBooleanType;
431
- };
432
- platform_editor_toolbar_hide_overflow_menu: {
433
- defaultValue: boolean;
434
- param: string;
435
- productKeys?: ProductKeys;
436
- typeGuard: IsBooleanType;
437
- };
438
- platform_editor_enable_single_player_step_merging: {
439
- defaultValue: boolean;
440
- param: string;
441
- productKeys?: ProductKeys;
442
- typeGuard: IsBooleanType;
443
- };
444
- 'cc-markdown-mode': {
445
- defaultValue: boolean;
446
- param: string;
447
- productKeys?: ProductKeys;
448
- typeGuard: IsBooleanType;
449
- };
450
- platform_editor_exp_lazy_node_views: {
451
- defaultValue: boolean;
452
- param: string;
453
- productKeys?: ProductKeys;
454
- typeGuard: IsBooleanType;
455
- };
456
- platform_editor_experience_tracking_observer: {
457
- defaultValue: boolean;
458
- param: string;
459
- productKeys?: ProductKeys;
460
- typeGuard: IsBooleanType;
461
- };
462
- platform_editor_feedback_mandatory_rating: {
463
- defaultValue: boolean;
464
- param: string;
465
- productKeys?: ProductKeys;
466
- typeGuard: IsBooleanType;
467
- };
468
- platform_editor_table_a11y_eslint_fix: {
469
- defaultValue: boolean;
470
- param: string;
471
- productKeys?: ProductKeys;
472
- typeGuard: IsBooleanType;
473
- };
474
- platform_editor_find_and_replace_improvements: {
475
- defaultValue: boolean;
476
- param: string;
477
- productKeys?: ProductKeys;
478
- typeGuard: IsBooleanType;
479
- };
480
- platform_editor_inline_card_dispatch_guard: {
481
- defaultValue: boolean;
482
- param: string;
483
- productKeys?: ProductKeys;
484
- typeGuard: IsBooleanType;
485
- };
486
- platform_editor_locale_datepicker: {
487
- defaultValue: boolean;
488
- param: string;
489
- productKeys?: ProductKeys;
490
- typeGuard: IsBooleanType;
491
- };
492
- platform_editor_appearance_shared_state: {
493
- defaultValue: boolean;
494
- param: string;
495
- productKeys?: ProductKeys;
496
- typeGuard: IsBooleanType;
497
- };
498
- platform_editor_lovability_emoji_scaling: {
499
- defaultValue: boolean;
500
- param: string;
501
- productKeys?: ProductKeys;
502
- typeGuard: IsBooleanType;
503
- };
504
- platform_editor_lovability_inline_code: {
505
- defaultValue: boolean;
506
- param: string;
507
- productKeys?: ProductKeys;
508
- typeGuard: IsBooleanType;
509
- };
510
- platform_editor_lovability_navigation_fixes: {
511
- defaultValue: boolean;
512
- param: string;
513
- productKeys?: ProductKeys;
514
- typeGuard: IsBooleanType;
515
- };
516
- platform_editor_lovability_suppress_toolbar_event: {
517
- defaultValue: boolean;
518
- param: string;
519
- productKeys?: ProductKeys;
520
- typeGuard: IsBooleanType;
521
- };
522
- platform_editor_lovability_distribute_column_fix: {
523
- defaultValue: boolean;
524
- param: string;
525
- productKeys?: ProductKeys;
526
- typeGuard: IsBooleanType;
527
- };
528
- platform_editor_media_error_analytics: {
529
- defaultValue: boolean;
530
- param: string;
531
- productKeys?: ProductKeys;
532
- typeGuard: IsBooleanType;
533
- };
534
- platform_editor_native_embeds: {
535
- defaultValue: boolean;
536
- param: string;
537
- productKeys?: ProductKeys;
538
- typeGuard: IsBooleanType;
539
- };
540
- platform_editor_native_anchor_with_dnd: {
541
- defaultValue: boolean;
542
- param: string;
543
- productKeys?: ProductKeys;
544
- typeGuard: IsBooleanType;
545
- };
546
- platform_editor_no_cursor_on_edit_page_init: {
547
- defaultValue: boolean;
548
- param: string;
549
- productKeys?: ProductKeys;
550
- typeGuard: IsBooleanType;
551
- };
552
- platform_editor_offline_editing_web: {
553
- defaultValue: boolean;
554
- param: string;
555
- productKeys?: ProductKeys;
556
- typeGuard: IsBooleanType;
557
- };
558
- platform_editor_agent_mentions: {
559
- defaultValue: boolean;
560
- param: string;
561
- productKeys?: ProductKeys;
562
- typeGuard: IsBooleanType;
563
- };
564
- platform_editor_prevent_taskitem_remount: {
565
- defaultValue: boolean;
566
- param: string;
567
- productKeys?: ProductKeys;
568
- typeGuard: IsBooleanType;
569
- };
570
- platform_editor_prevent_toolbar_layout_shifts: {
571
- defaultValue: boolean;
572
- param: string;
573
- productKeys?: ProductKeys;
574
- typeGuard: IsBooleanType;
575
- };
576
- platform_editor_preview_panel_linking_exp: {
577
- defaultValue: boolean;
578
- param: string;
579
- productKeys?: ProductKeys;
580
- typeGuard: IsBooleanType;
581
- };
582
- platform_editor_preview_panel_responsiveness: {
583
- defaultValue: boolean;
584
- param: string;
585
- productKeys?: ProductKeys;
586
- typeGuard: IsBooleanType;
587
- };
588
- platform_editor_reduce_noisy_steps_ncs: {
589
- defaultValue: boolean;
590
- param: string;
591
- productKeys?: ProductKeys;
592
- typeGuard: IsBooleanType;
593
- };
594
- platform_editor_remove_bidi_char_warning: {
595
- defaultValue: boolean;
596
- param: string;
597
- productKeys?: ProductKeys;
598
- typeGuard: IsBooleanType;
599
- };
600
- platform_editor_disable_lcm_copy_button: {
601
- defaultValue: boolean;
602
- param: string;
603
- productKeys?: ProductKeys;
604
- typeGuard: IsBooleanType;
605
- };
606
- platform_editor_renderer_extension_width_fix: {
607
- defaultValue: boolean;
608
- param: string;
609
- productKeys?: ProductKeys;
610
- typeGuard: IsBooleanType;
611
- };
612
- platform_editor_table_excerpts_fix: {
613
- defaultValue: boolean;
614
- param: string;
615
- productKeys?: ProductKeys;
616
- typeGuard: IsBooleanType;
617
- };
618
- platform_editor_table_sticky_header_improvements: {
619
- defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
620
- param: string;
621
- productKeys?: ProductKeys;
622
- typeGuard: (value: unknown) => value is 'control' | 'test_with_overflow' | 'test_without_overflow';
623
- values: ('control' | 'test_with_overflow' | 'test_without_overflow')[];
624
- };
625
- platform_editor_tables_drag_and_drop: {
626
- defaultValue: boolean;
627
- param: string;
628
- productKeys?: ProductKeys;
629
- typeGuard: IsBooleanType;
630
- };
631
- platform_editor_tables_table_selector: {
632
- defaultValue: boolean;
633
- param: string;
634
- productKeys?: ProductKeys;
635
- typeGuard: IsBooleanType;
636
- };
637
- platform_editor_toolbar_aifc: {
638
- defaultValue: boolean;
639
- param: string;
640
- productKeys?: ProductKeys;
641
- typeGuard: IsBooleanType;
642
- };
643
- platform_editor_toolbar_submenu_open_click: {
644
- defaultValue: boolean;
645
- param: string;
646
- productKeys?: ProductKeys;
647
- typeGuard: IsBooleanType;
648
- };
649
- platform_editor_usesharedpluginstateselector: {
650
- defaultValue: boolean;
651
- param: string;
652
- productKeys?: ProductKeys;
653
- typeGuard: IsBooleanType;
654
- };
655
- platform_editor_table_display_mode_in_to_dom: {
656
- defaultValue: boolean;
657
- param: string;
658
- productKeys?: ProductKeys;
659
- typeGuard: IsBooleanType;
660
- };
661
- platform_editor_table_update_table_ref: {
662
- defaultValue: boolean;
663
- param: string;
664
- productKeys?: ProductKeys;
665
- typeGuard: IsBooleanType;
666
- };
667
- platform_editor_table_ref_optimisation: {
668
- defaultValue: boolean;
669
- param: string;
670
- productKeys?: ProductKeys;
671
- typeGuard: IsBooleanType;
672
- };
673
- platform_editor_inline_media_replacement: {
674
- defaultValue: boolean;
675
- param: string;
676
- productKeys?: ProductKeys;
677
- typeGuard: IsBooleanType;
678
- };
679
- platform_editor_add_image_editing: {
680
- defaultValue: boolean;
681
- param: string;
682
- productKeys?: ProductKeys;
683
- typeGuard: IsBooleanType;
684
- };
685
- platform_editor_table_toolbar_perf_fix: {
686
- defaultValue: boolean;
687
- param: string;
688
- productKeys?: ProductKeys;
689
- typeGuard: IsBooleanType;
690
- };
691
- platform_hover_card_preview_panel: {
692
- defaultValue: 'control' | 'test';
693
- param: string;
694
- productKeys?: ProductKeys;
695
- typeGuard: (value: unknown) => value is 'control' | 'test';
696
- values: ('control' | 'test')[];
697
- };
698
- platform_renderer_fix_analytics_memo_callback: {
699
- defaultValue: boolean;
700
- param: string;
701
- productKeys?: ProductKeys;
702
- typeGuard: IsBooleanType;
703
- };
704
- platform_renderer_table_sticky_scrollbar: {
705
- defaultValue: boolean;
706
- param: string;
707
- productKeys?: ProductKeys;
708
- typeGuard: IsBooleanType;
709
- };
710
- platform_sl_3p_auth_rovo_action: {
711
- defaultValue: boolean;
712
- param: string;
713
- productKeys?: ProductKeys;
714
- typeGuard: IsBooleanType;
715
- };
716
- platform_sl_3p_preauth_better_hovercard: {
717
- defaultValue: boolean;
718
- param: string;
719
- productKeys?: ProductKeys;
720
- typeGuard: IsBooleanType;
721
- };
722
- platform_sl_3p_post_auth_chat_open_exp: {
723
- defaultValue: boolean;
724
- param: string;
725
- productKeys?: ProductKeys;
726
- typeGuard: IsBooleanType;
727
- };
728
- platform_sl_3p_preauth_social_proof_inline_cta: {
729
- defaultValue: boolean;
730
- param: string;
731
- productKeys?: ProductKeys;
732
- typeGuard: IsBooleanType;
733
- };
734
- platform_sl_3p_auth_rovo_block_card_jira: {
735
- defaultValue: boolean;
736
- param: string;
737
- productKeys?: ProductKeys;
738
- typeGuard: IsBooleanType;
739
- };
740
- platform_sl_3p_auth_rovo_block_card_confluence: {
741
- defaultValue: boolean;
742
- param: string;
743
- productKeys?: ProductKeys;
744
- typeGuard: IsBooleanType;
745
- };
746
- social_proof_3p_unauth_block_exp: {
747
- defaultValue: boolean;
748
- param: string;
749
- productKeys?: ProductKeys;
750
- typeGuard: IsBooleanType;
751
- };
752
- platform_sl_3p_auth_inline_tailored_cta: {
753
- defaultValue: boolean;
754
- param: string;
755
- productKeys?: ProductKeys;
756
- typeGuard: IsBooleanType;
757
- };
758
- platform_synced_block: {
759
- defaultValue: boolean;
760
- param: string;
761
- productKeys?: ProductKeys;
762
- typeGuard: IsBooleanType;
763
- };
764
- platform_synced_block_use_new_source_nodeview: {
765
- defaultValue: boolean;
766
- param: string;
767
- productKeys?: ProductKeys;
768
- typeGuard: IsBooleanType;
769
- };
770
- editor_synced_block_perf: {
771
- defaultValue: boolean;
772
- param: string;
773
- productKeys?: ProductKeys;
774
- typeGuard: IsBooleanType;
775
- };
776
- platform_editor_table_sticky_header_patch_9: {
777
- defaultValue: boolean;
778
- param: string;
779
- productKeys?: ProductKeys;
780
- typeGuard: IsBooleanType;
781
- };
782
- platform_use_llm_space_recommendations: {
783
- defaultValue: boolean;
784
- param: string;
785
- productKeys?: ProductKeys;
786
- typeGuard: IsBooleanType;
787
- };
788
- single_column_layouts: {
789
- defaultValue: boolean;
790
- param: string;
791
- productKeys?: ProductKeys;
792
- typeGuard: IsBooleanType;
793
- };
794
- platform_editor_table_sticky_header_patch_10: {
795
- defaultValue: boolean;
796
- param: string;
797
- productKeys?: ProductKeys;
798
- typeGuard: IsBooleanType;
799
- };
800
- smart_link_confluence_short_link_analytics: {
801
- defaultValue: 'control' | 'test';
802
- param: string;
803
- productKeys?: ProductKeys;
804
- typeGuard: (value: unknown) => value is 'control' | 'test';
805
- values: ('control' | 'test')[];
806
- };
807
- linking_platform_track_non_primary_3p_clicks: {
808
- defaultValue: boolean;
809
- param: string;
810
- productKeys?: ProductKeys;
811
- typeGuard: IsBooleanType;
812
- };
813
- platform_editor_to_use_pmr_for_collab_edit_none_ic: {
814
- defaultValue: boolean;
815
- param: string;
816
- productKeys?: ProductKeys;
817
- typeGuard: IsBooleanType;
818
- };
819
- 'test-new-experiments-package': {
820
- defaultValue: boolean;
821
- param: string;
822
- productKeys?: ProductKeys;
823
- typeGuard: IsBooleanType;
824
- };
825
- platform_editor_aifc_sync_block_stream_fix: {
826
- defaultValue: boolean;
827
- param: string;
828
- productKeys?: ProductKeys;
829
- typeGuard: IsBooleanType;
830
- };
831
- platform_editor_hide_extension_renderer_support: {
832
- defaultValue: boolean;
833
- param: string;
834
- productKeys?: ProductKeys;
835
- typeGuard: IsBooleanType;
836
- };
837
- platform_editor_sample_renderer_rendered_event: {
838
- defaultValue: boolean;
839
- param: string;
840
- productKeys?: ProductKeys;
841
- typeGuard: IsBooleanType;
842
- };
843
- platform_editor_copy_link_a11y_inconsistency_fix: {
844
- defaultValue: boolean;
845
- param: string;
846
- productKeys?: ProductKeys;
847
- typeGuard: IsBooleanType;
848
- };
849
- platform_editor_aifc_expand_collapses_oncreate_fix: {
850
- defaultValue: boolean;
851
- param: string;
852
- productKeys?: ProductKeys;
853
- typeGuard: IsBooleanType;
854
- };
855
- platform_editor_ai_loading_responsive_width: {
856
- defaultValue: boolean;
857
- param: string;
858
- productKeys?: ProductKeys;
859
- typeGuard: IsBooleanType;
860
- };
861
- platform_editor_nested_drag_handle_icon: {
862
- defaultValue: boolean;
863
- param: string;
864
- productKeys?: ProductKeys;
865
- typeGuard: IsBooleanType;
866
- };
867
- collab_bypass_out_of_sync_period_experiment: {
868
- defaultValue: boolean;
869
- param: string;
870
- productKeys?: ProductKeys;
871
- typeGuard: IsBooleanType;
872
- };
873
- platform_editor_ignore_metadata_connection_errors: {
874
- defaultValue: boolean;
875
- param: string;
876
- productKeys?: ProductKeys;
877
- typeGuard: IsBooleanType;
878
- };
879
- platform_editor_renderer_toolbar_updates: {
880
- defaultValue: boolean;
881
- param: string;
882
- productKeys?: ProductKeys;
883
- typeGuard: IsBooleanType;
884
- };
885
- platform_editor_comment_rovoinlinechat_improvement: {
886
- defaultValue: boolean;
887
- param: string;
888
- productKeys?: ProductKeys;
889
- typeGuard: IsBooleanType;
890
- };
891
- platform_editor_fix_cross_origin_editor_focus: {
892
- defaultValue: boolean;
893
- param: string;
894
- productKeys?: ProductKeys;
895
- typeGuard: IsBooleanType;
896
- };
897
- platform_editor_ai_fix_insert_after_selection: {
898
- defaultValue: boolean;
899
- param: string;
900
- productKeys?: ProductKeys;
901
- typeGuard: IsBooleanType;
902
- };
903
- platform_editor_ai_move_node: {
904
- defaultValue: boolean;
905
- param: string;
906
- productKeys?: ProductKeys;
907
- typeGuard: IsBooleanType;
908
- };
909
- confluence_ttvc_inline_extensions: {
910
- defaultValue: boolean;
911
- param: string;
912
- productKeys?: ProductKeys;
913
- typeGuard: IsBooleanType;
914
- };
915
- platform_editor_enghealth_a11y_jan_fixes: {
916
- defaultValue: boolean;
917
- param: string;
918
- productKeys?: ProductKeys;
919
- typeGuard: IsBooleanType;
920
- };
921
- platform_editor_outdated_browser_update: {
922
- defaultValue: boolean;
923
- param: string;
924
- productKeys?: ProductKeys;
925
- typeGuard: IsBooleanType;
926
- };
927
- cc_fd_db_top_editor_toolbar: {
928
- defaultValue: 'control' | 'new-description' | 'orig-description';
929
- param: string;
930
- productKeys?: ProductKeys;
931
- typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
932
- values: ('control' | 'new-description' | 'orig-description')[];
933
- };
934
- cc_fd_cwr_quick_insert: {
935
- defaultValue: 'control' | 'slot-four' | 'slot-two';
936
- param: string;
937
- productKeys?: ProductKeys;
938
- typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
939
- values: ('control' | 'slot-four' | 'slot-two')[];
940
- };
941
- cc_fd_wb_jira_quick_insert_experiment: {
942
- defaultValue: boolean;
943
- param: string;
944
- productKeys?: ProductKeys;
945
- typeGuard: IsBooleanType;
946
- };
947
- editor_a11y_role_textbox: {
948
- defaultValue: boolean;
949
- param: string;
950
- productKeys?: ProductKeys;
951
- typeGuard: IsBooleanType;
952
- };
953
- platform_editor_smartlink_local_cache: {
954
- defaultValue: boolean;
955
- param: string;
956
- productKeys?: ProductKeys;
957
- typeGuard: IsBooleanType;
958
- };
959
- platform_editor_toolbar_split_button_ui: {
960
- defaultValue: boolean;
961
- param: string;
962
- productKeys?: ProductKeys;
963
- typeGuard: IsBooleanType;
964
- };
965
- platform_rovo_page_comment_selector_full_width: {
966
- defaultValue: boolean;
967
- param: string;
968
- productKeys?: ProductKeys;
969
- typeGuard: IsBooleanType;
970
- };
971
- platform_editor_bodiedextension_layoutshift_fix: {
972
- defaultValue: boolean;
973
- param: string;
974
- productKeys?: ProductKeys;
975
- typeGuard: IsBooleanType;
976
- };
977
- platform_editor_comment_editor_border_radius: {
978
- defaultValue: boolean;
979
- param: string;
980
- productKeys?: ProductKeys;
981
- typeGuard: IsBooleanType;
982
- };
983
- platform_editor_layout_column_resize_handle: {
984
- defaultValue: boolean;
985
- param: string;
986
- productKeys?: ProductKeys;
987
- typeGuard: IsBooleanType;
988
- };
989
- platform_editor_layout_column_menu: {
990
- defaultValue: boolean;
991
- param: string;
992
- productKeys?: ProductKeys;
993
- typeGuard: IsBooleanType;
994
- };
995
- platform_editor_layout_typeahead_reorder: {
996
- defaultValue: boolean;
997
- param: string;
998
- productKeys?: ProductKeys;
999
- typeGuard: IsBooleanType;
1000
- };
1001
- platform_editor_perf_lint_cleanup: {
1002
- defaultValue: boolean;
1003
- param: string;
1004
- productKeys?: ProductKeys;
1005
- typeGuard: IsBooleanType;
1006
- };
1007
- platform_editor_spotlight_migration: {
1008
- defaultValue: boolean;
1009
- param: string;
1010
- productKeys?: ProductKeys;
1011
- typeGuard: IsBooleanType;
1012
- };
1013
- platform_editor_fix_advanced_codeblocks_crlf_patch: {
1014
- defaultValue: boolean;
1015
- param: string;
1016
- productKeys?: ProductKeys;
1017
- typeGuard: IsBooleanType;
1018
- };
1019
- cc_page_experiences_editor_image_generation: {
1020
- defaultValue: boolean;
1021
- param: string;
1022
- productKeys?: ProductKeys;
1023
- typeGuard: IsBooleanType;
1024
- };
1025
- cc_page_experiences_premium_macros_img_generation: {
1026
- defaultValue: boolean;
1027
- param: string;
1028
- productKeys?: ProductKeys;
1029
- typeGuard: IsBooleanType;
1030
- };
1031
- aifc_page_create_with_rovo_include_infographics: {
1032
- defaultValue: boolean;
1033
- param: string;
1034
- productKeys?: ProductKeys;
1035
- typeGuard: IsBooleanType;
1036
- };
1037
- 'cc-maui-experiment': {
1038
- defaultValue: boolean;
1039
- param: string;
1040
- productKeys?: ProductKeys;
1041
- typeGuard: IsBooleanType;
1042
- };
1043
- 'cc-maui-ai-edit-loading-experiment': {
1044
- defaultValue: boolean;
1045
- param: string;
1046
- productKeys?: ProductKeys;
1047
- typeGuard: IsBooleanType;
1048
- };
1049
- 'cc-mui-slides-experiment': {
1050
- defaultValue: boolean;
1051
- param: string;
1052
- productKeys?: ProductKeys;
1053
- typeGuard: IsBooleanType;
1054
- };
1055
- confluence_frontend_cwr_outcome_type_picker: {
1056
- defaultValue: boolean;
1057
- param: string;
1058
- productKeys?: ProductKeys;
1059
- typeGuard: IsBooleanType;
1060
- };
1061
- cfe_cwr_outcome_picker_respect_site_settings: {
1062
- defaultValue: boolean;
1063
- param: string;
1064
- productKeys?: ProductKeys;
1065
- typeGuard: IsBooleanType;
1066
- };
1067
- prompt_tile_content_type_localizaiton: {
1068
- defaultValue: boolean;
1069
- param: string;
1070
- productKeys?: ProductKeys;
1071
- typeGuard: IsBooleanType;
1072
- };
1073
- confluence_fe_cwr_outcome_picker_prompt_autoselect: {
1074
- defaultValue: boolean;
1075
- param: string;
1076
- productKeys?: ProductKeys;
1077
- typeGuard: IsBooleanType;
1078
- };
1079
- 'cwr-modal-ui-refresh': {
1080
- defaultValue: boolean;
1081
- param: string;
1082
- productKeys?: ProductKeys;
1083
- typeGuard: IsBooleanType;
1084
- };
1085
- platform_editor_a11y_escape_link_dialog: {
1086
- defaultValue: boolean;
1087
- param: string;
1088
- productKeys?: ProductKeys;
1089
- typeGuard: IsBooleanType;
1090
- };
1091
- platform_editor_flexible_list_indentation: {
1092
- defaultValue: boolean;
1093
- param: string;
1094
- productKeys?: ProductKeys;
1095
- typeGuard: IsBooleanType;
1096
- };
1097
- platform_editor_flexible_list_schema: {
1098
- defaultValue: boolean;
1099
- param: string;
1100
- productKeys?: ProductKeys;
1101
- typeGuard: IsBooleanType;
1102
- };
1103
- platform_editor_vc90_transition_expand_icon: {
1104
- defaultValue: boolean;
1105
- param: string;
1106
- productKeys?: ProductKeys;
1107
- typeGuard: IsBooleanType;
1108
- };
1109
- platform_editor_vc90_transition_panel_icon: {
1110
- defaultValue: boolean;
1111
- param: string;
1112
- productKeys?: ProductKeys;
1113
- typeGuard: IsBooleanType;
1114
- };
1115
- platform_editor_vc90_transition_mentions: {
1116
- defaultValue: boolean;
1117
- param: string;
1118
- productKeys?: ProductKeys;
1119
- typeGuard: IsBooleanType;
1120
- };
1121
- platform_editor_emoji_default_scale: {
1122
- defaultValue: boolean;
1123
- param: string;
1124
- productKeys?: ProductKeys;
1125
- typeGuard: IsBooleanType;
1126
- };
1127
- platform_teamoji_26_refresh_emoji_picker: {
1128
- defaultValue: boolean;
1129
- param: string;
1130
- productKeys?: ProductKeys;
1131
- typeGuard: IsBooleanType;
1132
- };
1133
- platform_editor_toolbar_update_jira_config: {
1134
- defaultValue: boolean;
1135
- param: string;
1136
- productKeys?: ProductKeys;
1137
- typeGuard: IsBooleanType;
1138
- };
1139
- platform_editor_early_exit_return_draft: {
1140
- defaultValue: boolean;
1141
- param: string;
1142
- productKeys?: ProductKeys;
1143
- typeGuard: IsBooleanType;
1144
- };
1145
- platform_editor_discarded_unified_analytic_events: {
1146
- defaultValue: boolean;
1147
- param: string;
1148
- productKeys?: ProductKeys;
1149
- typeGuard: IsBooleanType;
1150
- };
1151
- platform_editor_ai_blockmenu_integration: {
1152
- defaultValue: boolean;
1153
- param: string;
1154
- productKeys?: ProductKeys;
1155
- typeGuard: IsBooleanType;
1156
- };
1157
- platform_editor_remix_in_block_menu: {
1158
- defaultValue: boolean;
1159
- param: string;
1160
- productKeys?: ProductKeys;
1161
- typeGuard: IsBooleanType;
1162
- };
1163
- platform_editor_ai_aifc_space_shortcut_patch: {
1164
- defaultValue: boolean;
1165
- param: string;
1166
- productKeys?: ProductKeys;
1167
- typeGuard: IsBooleanType;
1168
- };
1169
- platform_editor_media_reliability_observability: {
1170
- defaultValue: boolean;
1171
- param: string;
1172
- productKeys?: ProductKeys;
1173
- typeGuard: IsBooleanType;
1174
- };
1175
- platform_editor_media_external_badge_bbc_fix: {
1176
- defaultValue: boolean;
1177
- param: string;
1178
- productKeys?: ProductKeys;
1179
- typeGuard: IsBooleanType;
1180
- };
1181
- platform_editor_rovobutton_smartlink_toolbar_exp: {
1182
- defaultValue: boolean;
1183
- param: string;
1184
- productKeys?: ProductKeys;
1185
- typeGuard: IsBooleanType;
1186
- };
1187
- platform_editor_ai_smartlink_toolbar_v2_exp: {
1188
- defaultValue: boolean;
1189
- param: string;
1190
- productKeys?: ProductKeys;
1191
- typeGuard: IsBooleanType;
1192
- };
1193
- platform_editor_renderer_error_boundary_stable_key: {
1194
- defaultValue: boolean;
1195
- param: string;
1196
- productKeys?: ProductKeys;
1197
- typeGuard: IsBooleanType;
1198
- };
1199
- platform_editor_a11y_scrollable_region: {
1200
- defaultValue: boolean;
1201
- param: string;
1202
- productKeys?: ProductKeys;
1203
- typeGuard: IsBooleanType;
1204
- };
1205
- platform_editor_renderer_shadow_observer_cleanup: {
1206
- defaultValue: boolean;
1207
- param: string;
1208
- productKeys?: ProductKeys;
1209
- typeGuard: IsBooleanType;
1210
- };
1211
- confluence_fe_renderer_inline_node_mark_color_fix: {
1212
- defaultValue: boolean;
1213
- param: string;
1214
- productKeys?: ProductKeys;
1215
- typeGuard: IsBooleanType;
1216
- };
1217
- platform_editor_insert_location_check: {
1218
- defaultValue: boolean;
1219
- param: string;
1220
- productKeys?: ProductKeys;
1221
- typeGuard: IsBooleanType;
1222
- };
1223
- platform_editor_fix_editor_unhandled_type_errors: {
1224
- defaultValue: boolean;
1225
- param: string;
1226
- productKeys?: ProductKeys;
1227
- typeGuard: IsBooleanType;
1228
- };
1229
- cc_drag_and_drop_smart_link_from_content_to_tree: {
1230
- defaultValue: boolean;
1231
- param: string;
1232
- productKeys?: ProductKeys;
1233
- typeGuard: IsBooleanType;
1234
- };
1235
- platform_editor_small_font_size: {
1236
- defaultValue: boolean;
1237
- param: string;
1238
- productKeys?: ProductKeys;
1239
- typeGuard: IsBooleanType;
1240
- };
1241
- platform_editor_diff_plugin_extended: {
1242
- defaultValue: boolean;
1243
- param: string;
1244
- productKeys?: ProductKeys;
1245
- typeGuard: IsBooleanType;
1246
- };
1247
- platform_editor_fix_media_toolbar_border_dropdown: {
1248
- defaultValue: boolean;
1249
- param: string;
1250
- productKeys?: ProductKeys;
1251
- typeGuard: IsBooleanType;
1252
- };
1253
- platform_editor_fix_media_picker_hidden: {
1254
- defaultValue: boolean;
1255
- param: string;
1256
- productKeys?: ProductKeys;
1257
- typeGuard: IsBooleanType;
1258
- };
1259
- cc_editor_ttvc_media_hold_fix: {
1260
- defaultValue: boolean;
1261
- param: string;
1262
- productKeys?: ProductKeys;
1263
- typeGuard: IsBooleanType;
1264
- };
1265
- platform_editor_single_player_expand: {
1266
- defaultValue: boolean;
1267
- param: string;
1268
- productKeys?: ProductKeys;
1269
- typeGuard: IsBooleanType;
1270
- };
1271
- platform_editor_rovo_inline_chat_aria_label: {
1272
- defaultValue: boolean;
1273
- param: string;
1274
- productKeys?: ProductKeys;
1275
- typeGuard: IsBooleanType;
1276
- };
1277
- platform_editor_remove_collab_step_metrics: {
1278
- defaultValue: boolean;
1279
- param: string;
1280
- productKeys?: ProductKeys;
1281
- typeGuard: IsBooleanType;
1282
- };
1283
- platform_editor_editor_centre_content_on_find: {
1284
- defaultValue: boolean;
1285
- param: string;
1286
- productKeys?: ProductKeys;
1287
- typeGuard: IsBooleanType;
1288
- };
1289
- platform_editor_chromeless_expand_fix: {
1290
- defaultValue: boolean;
1291
- param: string;
1292
- productKeys?: ProductKeys;
1293
- typeGuard: IsBooleanType;
1294
- };
1295
- platform_editor_inline_media_copy_paste_fix: {
1296
- defaultValue: boolean;
1297
- param: string;
1298
- productKeys?: ProductKeys;
1299
- typeGuard: IsBooleanType;
1300
- };
1301
- platform_editor_misaligned_ai_screens_firefox_fix: {
1302
- defaultValue: boolean;
1303
- param: string;
1304
- productKeys?: ProductKeys;
1305
- typeGuard: IsBooleanType;
1306
- };
1307
- platform_editor_table_fit_to_content_auto_convert: {
1308
- defaultValue: boolean;
1309
- param: string;
1310
- productKeys?: ProductKeys;
1311
- typeGuard: IsBooleanType;
1312
- };
1313
- platform_editor_table_fit_to_content_on_demand: {
1314
- defaultValue: boolean;
1315
- param: string;
1316
- productKeys?: ProductKeys;
1317
- typeGuard: IsBooleanType;
1318
- };
1319
- platform_editor_fix_selection_wrapped_media_embed: {
1320
- defaultValue: boolean;
1321
- param: string;
1322
- productKeys?: ProductKeys;
1323
- typeGuard: IsBooleanType;
1324
- };
1325
- platform_editor_external_embed_grid_fix: {
1326
- defaultValue: boolean;
1327
- param: string;
1328
- productKeys?: ProductKeys;
1329
- typeGuard: IsBooleanType;
1330
- };
1331
- platform_editor_stricter_panelcolor_typecheck: {
1332
- defaultValue: boolean;
1333
- param: string;
1334
- productKeys?: ProductKeys;
1335
- typeGuard: IsBooleanType;
1336
- };
1337
- platform_editor_sync_block_ssr_config: {
1338
- defaultValue: boolean;
1339
- param: string;
1340
- productKeys?: ProductKeys;
1341
- typeGuard: IsBooleanType;
1342
- };
1343
- platform_editor_selection_toolbar_block_handle: {
1344
- defaultValue: boolean;
1345
- param: string;
1346
- productKeys?: ProductKeys;
1347
- typeGuard: IsBooleanType;
1348
- };
1349
- confluence_fe_create_page_suggestion: {
1350
- defaultValue: boolean;
1351
- param: string;
1352
- productKeys?: ProductKeys;
1353
- typeGuard: IsBooleanType;
1354
- };
1355
- platform_editor_improve_preset_builder_logging: {
1356
- defaultValue: boolean;
1357
- param: string;
1358
- productKeys?: ProductKeys;
1359
- typeGuard: IsBooleanType;
1360
- };
1361
- platform_editor_user_preference_override: {
1362
- defaultValue: boolean;
1363
- param: string;
1364
- productKeys?: ProductKeys;
1365
- typeGuard: IsBooleanType;
1366
- };
1367
- platform_editor_preserve_node_identity: {
1368
- defaultValue: boolean;
1369
- param: string;
1370
- productKeys?: ProductKeys;
1371
- typeGuard: IsBooleanType;
1372
- };
1373
- confluence_toc_nav_a11y: {
1374
- defaultValue: boolean;
1375
- param: string;
1376
- productKeys?: ProductKeys;
1377
- typeGuard: IsBooleanType;
1378
- };
1379
- platform_editor_ai_xstate_migration: {
1380
- defaultValue: boolean;
1381
- param: string;
1382
- productKeys?: ProductKeys;
1383
- typeGuard: IsBooleanType;
1384
- };
1385
- platform_editor_ai_multi_format_streaming: {
1386
- defaultValue: boolean;
1387
- param: string;
1388
- productKeys?: ProductKeys;
1389
- typeGuard: IsBooleanType;
1390
- };
1391
- platform_editor_dnd_accessibility_fixes_expand: {
1392
- defaultValue: boolean;
1393
- param: string;
1394
- productKeys?: ProductKeys;
1395
- typeGuard: IsBooleanType;
1396
- };
1397
- platform_editor_expand_content_a11y: {
1398
- defaultValue: boolean;
1399
- param: string;
1400
- productKeys?: ProductKeys;
1401
- typeGuard: IsBooleanType;
1402
- };
1403
- platform_editor_hydration_skip_react_portal: {
1404
- defaultValue: boolean;
1405
- param: string;
1406
- productKeys?: ProductKeys;
1407
- typeGuard: IsBooleanType;
1408
- };
1409
- platform_editor_static_css: {
1410
- defaultValue: boolean;
1411
- param: string;
1412
- productKeys?: ProductKeys;
1413
- typeGuard: IsBooleanType;
1414
- };
1415
- platform_editor_core_static_css: {
1416
- defaultValue: boolean;
1417
- param: string;
1418
- productKeys?: ProductKeys;
1419
- typeGuard: IsBooleanType;
1420
- };
1421
- platform_editor_core_non_ecc_static_css: {
1422
- defaultValue: boolean;
1423
- param: string;
1424
- productKeys?: ProductKeys;
1425
- typeGuard: IsBooleanType;
1426
- };
1427
- platform_editor_renderer_static_css: {
1428
- defaultValue: boolean;
1429
- param: string;
1430
- productKeys?: ProductKeys;
1431
- typeGuard: IsBooleanType;
1432
- };
1433
- platform_editor_ai_no_stream_skip_pacer: {
1434
- defaultValue: boolean;
1435
- param: string;
1436
- productKeys?: ProductKeys;
1437
- typeGuard: IsBooleanType;
1438
- };
1439
- platform_editor_drag_handle_keyboard_a11y: {
1440
- defaultValue: boolean;
1441
- param: string;
1442
- productKeys?: ProductKeys;
1443
- typeGuard: IsBooleanType;
1444
- };
1445
- show_mentions_in_suggest_reply: {
1446
- defaultValue: boolean;
1447
- param: string;
1448
- productKeys?: ProductKeys;
1449
- typeGuard: IsBooleanType;
1450
- };
1451
- platform_editor_fix_a11y_tab_focus_insertion_menu: {
1452
- defaultValue: boolean;
1453
- param: string;
1454
- productKeys?: ProductKeys;
1455
- typeGuard: IsBooleanType;
1456
- };
1457
- improve_3p_smart_link_resolve_rate: {
1458
- defaultValue: boolean;
1459
- param: string;
1460
- productKeys?: ProductKeys;
1461
- typeGuard: IsBooleanType;
1462
- };
1463
- platform_editor_media_reliability_enhancements: {
1464
- defaultValue: boolean;
1465
- param: string;
1466
- productKeys?: ProductKeys;
1467
- typeGuard: IsBooleanType;
1468
- };
1469
- platform_editor_table_q4_loveability: {
1470
- defaultValue: boolean;
1471
- param: string;
1472
- productKeys?: ProductKeys;
1473
- typeGuard: IsBooleanType;
1474
- };
1475
- platform_editor_table_menu_updates: {
1476
- defaultValue: boolean;
1477
- param: string;
1478
- productKeys?: ProductKeys;
1479
- typeGuard: IsBooleanType;
1480
- };
1481
- platform_editor_macro_placeholder_array_guard: {
1482
- defaultValue: boolean;
1483
- param: string;
1484
- productKeys?: ProductKeys;
1485
- typeGuard: IsBooleanType;
1486
- };
1487
- platform_editor_table_close_cell_menu_on_move_exp: {
1488
- defaultValue: boolean;
1489
- param: string;
1490
- productKeys?: ProductKeys;
1491
- typeGuard: IsBooleanType;
1492
- };
1493
- platform_editor_ai_rename_add_polish: {
1494
- defaultValue: boolean;
1495
- param: string;
1496
- productKeys?: ProductKeys;
1497
- typeGuard: IsBooleanType;
1498
- };
1499
- cc_dnd_smart_link_changeboard_platform_css: {
1500
- defaultValue: boolean;
1501
- param: string;
1502
- productKeys?: ProductKeys;
1503
- typeGuard: IsBooleanType;
1504
- };
1505
- platform_editor_ai_screen_layout_refactor: {
1506
- defaultValue: boolean;
1507
- param: string;
1508
- productKeys?: ProductKeys;
1509
- typeGuard: IsBooleanType;
1510
- };
1511
- platform_editor_emojis_in_renderer_smart_links: {
1512
- defaultValue: boolean;
1513
- param: string;
1514
- productKeys?: ProductKeys;
1515
- typeGuard: IsBooleanType;
1516
- };
1517
- work_item_modernization: {
1518
- defaultValue: boolean;
1519
- param: string;
1520
- productKeys?: ProductKeys;
1521
- typeGuard: IsBooleanType;
1522
- };
1523
- platform_editor_ai_tablecell_localids: {
1524
- defaultValue: boolean;
1525
- param: string;
1526
- productKeys?: ProductKeys;
1527
- typeGuard: IsBooleanType;
1528
- };
1529
- confluence_fe_disable_comment_if_offline_fix: {
1530
- defaultValue: boolean;
1531
- param: string;
1532
- productKeys?: ProductKeys;
1533
- typeGuard: IsBooleanType;
1534
- };
1535
- platform_editor_use_html_plus_parser: {
1536
- defaultValue: boolean;
1537
- param: string;
1538
- productKeys?: ProductKeys;
1539
- typeGuard: IsBooleanType;
1540
- };
1541
- platform_editor_korean_characters_split: {
1542
- defaultValue: boolean;
1543
- param: string;
1544
- productKeys?: ProductKeys;
1545
- typeGuard: IsBooleanType;
1546
- };
1547
- platform_editor_use_markdown_plus_parser: {
1548
- defaultValue: boolean;
1549
- param: string;
1550
- productKeys?: ProductKeys;
1551
- typeGuard: IsBooleanType;
1552
- };
1553
- platform_editor_ai_fix_error_discard_screen: {
1554
- defaultValue: boolean;
1555
- param: string;
1556
- productKeys?: ProductKeys;
1557
- typeGuard: IsBooleanType;
1558
- };
1559
- platform_editor_insert_menu_ai: {
1560
- defaultValue: boolean;
1561
- param: string;
1562
- productKeys?: ProductKeys;
1563
- typeGuard: IsBooleanType;
1564
- };
1565
- fix_copy_paste_external_media_renderer_to_editor: {
1566
- defaultValue: boolean;
1567
- param: string;
1568
- productKeys?: ProductKeys;
1569
- typeGuard: IsBooleanType;
1570
- };
1571
- platform_editor_show_diff_fix_missing_attrs: {
1572
- defaultValue: boolean;
1573
- param: string;
1574
- productKeys?: ProductKeys;
1575
- typeGuard: IsBooleanType;
1576
- };
1577
- platform_editor_fix_sticky_header_malfunction: {
1578
- defaultValue: boolean;
1579
- param: string;
1580
- productKeys?: ProductKeys;
1581
- typeGuard: IsBooleanType;
1582
- };
1583
- platform_editor_paste_actions_menu_v2: {
1584
- defaultValue: 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
1585
- param: string;
1586
- productKeys?: ProductKeys;
1587
- typeGuard: (value: unknown) => value is 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
1588
- values: ('control' | 'hasSpellingAndGrammar' | 'hasAltAiActions')[];
1589
- };
1590
- 'jira-smart-replies-v2': {
1591
- defaultValue: boolean;
1592
- param: string;
1593
- productKeys?: ProductKeys;
1594
- typeGuard: IsBooleanType;
1595
- };
1596
- confluence_editor_paste_3p_link_actions_menu: {
1597
- defaultValue: boolean;
1598
- param: string;
1599
- productKeys?: ProductKeys;
1600
- typeGuard: IsBooleanType;
1601
- };
1602
- platform_editor_ai_replace_doc: {
1603
- defaultValue: boolean;
1604
- param: string;
1605
- productKeys?: ProductKeys;
1606
- typeGuard: IsBooleanType;
1607
- };
1608
- platform_editor_default_toolbar_state: {
1609
- defaultValue: boolean;
1610
- param: string;
1611
- productKeys?: ProductKeys;
1612
- typeGuard: IsBooleanType;
1613
- };
1614
- platform_editor_nest_table_in_panel: {
1615
- defaultValue: boolean;
1616
- param: string;
1617
- productKeys?: ProductKeys;
1618
- typeGuard: IsBooleanType;
1619
- };
1620
- platform_editor_table_in_panel_paste_fallback: {
1621
- defaultValue: boolean;
1622
- param: string;
1623
- productKeys?: ProductKeys;
1624
- typeGuard: IsBooleanType;
1625
- };
1626
- platform_rovo_support_create_inline_comment: {
1627
- defaultValue: boolean;
1628
- param: string;
1629
- productKeys?: ProductKeys;
1630
- typeGuard: IsBooleanType;
1631
- };
1632
- platform_editor_ai_improve_formatting_toolbar: {
1633
- defaultValue: boolean;
1634
- param: string;
1635
- productKeys?: ProductKeys;
1636
- typeGuard: IsBooleanType;
1637
- };
1638
- 'a11y-fixes-week4-may-2026': {
1639
- defaultValue: boolean;
1640
- param: string;
1641
- productKeys?: ProductKeys;
1642
- typeGuard: IsBooleanType;
1643
- };
1644
- fix_free_gen_prompt_bar_position: {
1645
- defaultValue: boolean;
1646
- param: string;
1647
- productKeys?: ProductKeys;
1648
- typeGuard: IsBooleanType;
1649
- };
1650
- platform_editor_use_html_plus_streaming_parser: {
1651
- defaultValue: boolean;
1652
- param: string;
1653
- productKeys?: ProductKeys;
1654
- typeGuard: IsBooleanType;
1655
- };
1656
- platform_editor_wide_slash_trigger: {
1657
- defaultValue: boolean;
1658
- param: string;
1659
- productKeys?: ProductKeys;
1660
- typeGuard: IsBooleanType;
1661
- };
1662
- platform_editor_ai_new_aifc_editor_experience: {
1663
- defaultValue: boolean;
1664
- param: string;
1665
- productKeys?: ProductKeys;
1666
- typeGuard: IsBooleanType;
1667
- };
1668
- confluence_3p_in_cwr_ghost_icons: {
1669
- defaultValue: boolean;
1670
- param: string;
1671
- productKeys?: ProductKeys;
1672
- typeGuard: IsBooleanType;
1673
- };
1674
- platform_editor_lovability_text_bg_color: {
1675
- defaultValue: boolean;
1676
- param: string;
1677
- productKeys?: ProductKeys;
1678
- typeGuard: IsBooleanType;
1679
- };
1680
- cc_ai_insert_to_page_rovo_chat_experiment: {
1681
- defaultValue: boolean;
1682
- param: string;
1683
- productKeys?: ProductKeys;
1684
- typeGuard: IsBooleanType;
1685
- };
1686
- };
1687
- export {};