@atlaskit/tmp-editor-statsig 108.1.0 → 108.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 108.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`ccf2e0f0ba838`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ccf2e0f0ba838) -
8
+ [CCI-17112] Route Heading Autocomplete via cc-smarts behind SPRT.
9
+
10
+ `callHeadingAutocompleteApi` now branches on the editor experiment
11
+ `cc_smarts_heading_autocomplete_migration` (param `useCcSmarts`):
12
+ - **Control arm (default):** `/gateway/api/assist/api/ai/v2/ai-feature/heading-autocomplete`
13
+ (conversational-ai-platform — current source of truth, unchanged behaviour).
14
+ - **Test arm:** `/gateway/api/ai/v2/ai-feature/heading-autocomplete` (cc-smarts — new home,
15
+ reached via the `cc-smarts-ai-feature` stargate wildcard route).
16
+
17
+ Wire shape is byte-for-byte identical between the two backends; only the URL path changes. Mirrors
18
+ the `cc_smarts_comment_summary_followups_migration` pattern (AFM PR-388153). With the experiment
19
+ at 0%, this is a no-op behaviour change in production.
20
+
21
+ Adds a `try`/`catch` around `expValEquals` so the API fails closed to the convo-ai control arm on
22
+ Statsig read errors (per the convo-ai → cc-smarts migration skill guardrail).
23
+
24
+ Registers the new boolean experiment in `@atlaskit/tmp-editor-statsig/experiments-config`.
25
+
26
+ Tests live in the sibling `@af/editor-plugin-ai-autocomplete-tests` package per AFM ratcheting
27
+ rule "No tests in Editor plugin packages"; `heading-autocomplete-api-mock.ts` globs both the
28
+ convo-ai (`/gateway/api/assist/...`) and cc-smarts URLs.
29
+
30
+ - [`19773530cd51c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/19773530cd51c) -
31
+ Add fallbackMediaNameFetcher support to MediaCard (FileCard) and MediaViewer (header display),
32
+ gated behind the platform_editor_media_name_fallback_viewer_card experiment
33
+
34
+ ## 108.2.0
35
+
36
+ ### Minor Changes
37
+
38
+ - [`91fb45b6e63f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/91fb45b6e63f3) -
39
+ Add gated inline Smart Link icon extraction through link-extractors
40
+
3
41
  ## 108.1.0
4
42
 
5
43
  ### Minor Changes
@@ -59,6 +59,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
59
59
  platform_editor_table_menu_updates: false,
60
60
  platform_editor_core_static_css: false,
61
61
  'cwr-modal-ui-refresh': false,
62
+ 'cc-disambiguation-in-cwr': false,
62
63
  'cwr-reduce-prompt-suggestion-max-chars': false,
63
64
  'cwr-staging-area-close-as-minimize-button': false,
64
65
  prompt_tile_content_type_localizaiton: false,
@@ -606,6 +606,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
606
606
  param: 'isEnabled',
607
607
  defaultValue: false
608
608
  }),
609
+ // Added 2026-06-12
610
+ platform_editor_media_name_fallback_viewer_card: (0, _experimentBuilders.createBooleanExperiment)({
611
+ productKeys: {
612
+ confluence: 'platform_editor_media_name_fallback_viewer_card'
613
+ },
614
+ param: 'isEnabled',
615
+ defaultValue: false
616
+ }),
609
617
  // Added 2025-06-05
610
618
  platform_editor_block_controls_perf_optimization: (0, _experimentBuilders.createBooleanExperiment)({
611
619
  productKeys: {
@@ -1016,6 +1024,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1016
1024
  param: 'isEnabled',
1017
1025
  defaultValue: false
1018
1026
  }),
1027
+ // Added 2026-06-16 — Use link-extractors inline icon extraction for Confluence 1P/3P connection byline
1028
+ confluence_1p_and_3p_connection_byline_experiment: (0, _experimentBuilders.createBooleanExperiment)({
1029
+ productKeys: {
1030
+ confluence: 'confluence_1p_and_3p_connection_byline_experiment'
1031
+ },
1032
+ param: 'isEnabled',
1033
+ defaultValue: false
1034
+ }),
1019
1035
  // Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
1020
1036
  platform_sl_3p_post_auth_chat_open_exp: (0, _experimentBuilders.createBooleanExperiment)({
1021
1037
  productKeys: {
@@ -1364,6 +1380,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1364
1380
  param: 'isEnabled',
1365
1381
  defaultValue: false
1366
1382
  }),
1383
+ // Added 2026-06-08
1384
+ 'cc-disambiguation-in-cwr': (0, _experimentBuilders.createBooleanExperiment)({
1385
+ productKeys: {
1386
+ confluence: 'cc-disambiguation-in-cwr'
1387
+ },
1388
+ param: 'isEnabled',
1389
+ defaultValue: false
1390
+ }),
1367
1391
  // Added 2026-06-11
1368
1392
  'cwr-reduce-prompt-suggestion-max-chars': (0, _experimentBuilders.createBooleanExperiment)({
1369
1393
  productKeys: {
@@ -2238,5 +2262,12 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2238
2262
  },
2239
2263
  param: 'isEnabled',
2240
2264
  defaultValue: false
2265
+ }),
2266
+ cc_smarts_heading_autocomplete_migration: (0, _experimentBuilders.createBooleanExperiment)({
2267
+ productKeys: {
2268
+ confluence: 'cc_smarts_heading_autocomplete_migration'
2269
+ },
2270
+ param: 'useCcSmarts',
2271
+ defaultValue: false
2241
2272
  })
2242
2273
  };
@@ -53,6 +53,7 @@ export const testBooleanOverrides = {
53
53
  platform_editor_table_menu_updates: false,
54
54
  platform_editor_core_static_css: false,
55
55
  'cwr-modal-ui-refresh': false,
56
+ 'cc-disambiguation-in-cwr': false,
56
57
  'cwr-reduce-prompt-suggestion-max-chars': false,
57
58
  'cwr-staging-area-close-as-minimize-button': false,
58
59
  prompt_tile_content_type_localizaiton: false,
@@ -600,6 +600,14 @@ export const editorExperimentsConfig = {
600
600
  param: 'isEnabled',
601
601
  defaultValue: false
602
602
  }),
603
+ // Added 2026-06-12
604
+ platform_editor_media_name_fallback_viewer_card: createBooleanExperiment({
605
+ productKeys: {
606
+ confluence: 'platform_editor_media_name_fallback_viewer_card'
607
+ },
608
+ param: 'isEnabled',
609
+ defaultValue: false
610
+ }),
603
611
  // Added 2025-06-05
604
612
  platform_editor_block_controls_perf_optimization: createBooleanExperiment({
605
613
  productKeys: {
@@ -1010,6 +1018,14 @@ export const editorExperimentsConfig = {
1010
1018
  param: 'isEnabled',
1011
1019
  defaultValue: false
1012
1020
  }),
1021
+ // Added 2026-06-16 — Use link-extractors inline icon extraction for Confluence 1P/3P connection byline
1022
+ confluence_1p_and_3p_connection_byline_experiment: createBooleanExperiment({
1023
+ productKeys: {
1024
+ confluence: 'confluence_1p_and_3p_connection_byline_experiment'
1025
+ },
1026
+ param: 'isEnabled',
1027
+ defaultValue: false
1028
+ }),
1013
1029
  // Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
1014
1030
  platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
1015
1031
  productKeys: {
@@ -1358,6 +1374,14 @@ export const editorExperimentsConfig = {
1358
1374
  param: 'isEnabled',
1359
1375
  defaultValue: false
1360
1376
  }),
1377
+ // Added 2026-06-08
1378
+ 'cc-disambiguation-in-cwr': createBooleanExperiment({
1379
+ productKeys: {
1380
+ confluence: 'cc-disambiguation-in-cwr'
1381
+ },
1382
+ param: 'isEnabled',
1383
+ defaultValue: false
1384
+ }),
1361
1385
  // Added 2026-06-11
1362
1386
  'cwr-reduce-prompt-suggestion-max-chars': createBooleanExperiment({
1363
1387
  productKeys: {
@@ -2232,5 +2256,12 @@ export const editorExperimentsConfig = {
2232
2256
  },
2233
2257
  param: 'isEnabled',
2234
2258
  defaultValue: false
2259
+ }),
2260
+ cc_smarts_heading_autocomplete_migration: createBooleanExperiment({
2261
+ productKeys: {
2262
+ confluence: 'cc_smarts_heading_autocomplete_migration'
2263
+ },
2264
+ param: 'useCcSmarts',
2265
+ defaultValue: false
2235
2266
  })
2236
2267
  };
@@ -53,6 +53,7 @@ export var testBooleanOverrides = {
53
53
  platform_editor_table_menu_updates: false,
54
54
  platform_editor_core_static_css: false,
55
55
  'cwr-modal-ui-refresh': false,
56
+ 'cc-disambiguation-in-cwr': false,
56
57
  'cwr-reduce-prompt-suggestion-max-chars': false,
57
58
  'cwr-staging-area-close-as-minimize-button': false,
58
59
  prompt_tile_content_type_localizaiton: false,
@@ -600,6 +600,14 @@ export var editorExperimentsConfig = {
600
600
  param: 'isEnabled',
601
601
  defaultValue: false
602
602
  }),
603
+ // Added 2026-06-12
604
+ platform_editor_media_name_fallback_viewer_card: createBooleanExperiment({
605
+ productKeys: {
606
+ confluence: 'platform_editor_media_name_fallback_viewer_card'
607
+ },
608
+ param: 'isEnabled',
609
+ defaultValue: false
610
+ }),
603
611
  // Added 2025-06-05
604
612
  platform_editor_block_controls_perf_optimization: createBooleanExperiment({
605
613
  productKeys: {
@@ -1010,6 +1018,14 @@ export var editorExperimentsConfig = {
1010
1018
  param: 'isEnabled',
1011
1019
  defaultValue: false
1012
1020
  }),
1021
+ // Added 2026-06-16 — Use link-extractors inline icon extraction for Confluence 1P/3P connection byline
1022
+ confluence_1p_and_3p_connection_byline_experiment: createBooleanExperiment({
1023
+ productKeys: {
1024
+ confluence: 'confluence_1p_and_3p_connection_byline_experiment'
1025
+ },
1026
+ param: 'isEnabled',
1027
+ defaultValue: false
1028
+ }),
1013
1029
  // Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
1014
1030
  platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
1015
1031
  productKeys: {
@@ -1358,6 +1374,14 @@ export var editorExperimentsConfig = {
1358
1374
  param: 'isEnabled',
1359
1375
  defaultValue: false
1360
1376
  }),
1377
+ // Added 2026-06-08
1378
+ 'cc-disambiguation-in-cwr': createBooleanExperiment({
1379
+ productKeys: {
1380
+ confluence: 'cc-disambiguation-in-cwr'
1381
+ },
1382
+ param: 'isEnabled',
1383
+ defaultValue: false
1384
+ }),
1361
1385
  // Added 2026-06-11
1362
1386
  'cwr-reduce-prompt-suggestion-max-chars': createBooleanExperiment({
1363
1387
  productKeys: {
@@ -2232,5 +2256,12 @@ export var editorExperimentsConfig = {
2232
2256
  },
2233
2257
  param: 'isEnabled',
2234
2258
  defaultValue: false
2259
+ }),
2260
+ cc_smarts_heading_autocomplete_migration: createBooleanExperiment({
2261
+ productKeys: {
2262
+ confluence: 'cc_smarts_heading_autocomplete_migration'
2263
+ },
2264
+ param: 'useCcSmarts',
2265
+ defaultValue: false
2235
2266
  })
2236
2267
  };
@@ -332,6 +332,12 @@ export declare const editorExperimentsConfig: {
332
332
  productKeys?: ProductKeys;
333
333
  typeGuard: IsBooleanType;
334
334
  };
335
+ platform_editor_media_name_fallback_viewer_card: {
336
+ defaultValue: boolean;
337
+ param: string;
338
+ productKeys?: ProductKeys;
339
+ typeGuard: IsBooleanType;
340
+ };
335
341
  platform_editor_block_controls_perf_optimization: {
336
342
  defaultValue: boolean;
337
343
  param: string;
@@ -731,6 +737,12 @@ export declare const editorExperimentsConfig: {
731
737
  productKeys?: ProductKeys;
732
738
  typeGuard: IsBooleanType;
733
739
  };
740
+ confluence_1p_and_3p_connection_byline_experiment: {
741
+ defaultValue: boolean;
742
+ param: string;
743
+ productKeys?: ProductKeys;
744
+ typeGuard: IsBooleanType;
745
+ };
734
746
  platform_synced_block: {
735
747
  defaultValue: boolean;
736
748
  param: string;
@@ -1052,6 +1064,12 @@ export declare const editorExperimentsConfig: {
1052
1064
  productKeys?: ProductKeys;
1053
1065
  typeGuard: IsBooleanType;
1054
1066
  };
1067
+ 'cc-disambiguation-in-cwr': {
1068
+ defaultValue: boolean;
1069
+ param: string;
1070
+ productKeys?: ProductKeys;
1071
+ typeGuard: IsBooleanType;
1072
+ };
1055
1073
  'cwr-reduce-prompt-suggestion-max-chars': {
1056
1074
  defaultValue: boolean;
1057
1075
  param: string;
@@ -1635,5 +1653,11 @@ export declare const editorExperimentsConfig: {
1635
1653
  productKeys?: ProductKeys;
1636
1654
  typeGuard: IsBooleanType;
1637
1655
  };
1656
+ cc_smarts_heading_autocomplete_migration: {
1657
+ defaultValue: boolean;
1658
+ param: string;
1659
+ productKeys?: ProductKeys;
1660
+ typeGuard: IsBooleanType;
1661
+ };
1638
1662
  };
1639
1663
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "108.1.0",
3
+ "version": "108.3.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",