@atlaskit/tmp-editor-statsig 36.1.0 → 36.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 36.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`3e12453af02dd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e12453af02dd) -
8
+ EDITOR-5922: Fix space shortcut activating opt in flow
9
+
10
+ ## 36.2.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`b941a7ee841df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b941a7ee841df) -
15
+ EDITOR-5683 update outdated browser list to exclude browser versions before March 2024
16
+ - [`224048d036344`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/224048d036344) -
17
+ EDITOR-5683 do not rethrow setMetadataError: Cannot send metadata, currently offline and
18
+ setMetadataError: Cannot send metadata, not initialized yet as they are intermittent connection
19
+ errors
20
+
3
21
  ## 36.1.0
4
22
 
5
23
  ### Minor Changes
@@ -789,6 +789,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
789
789
  param: 'isEnabled',
790
790
  defaultValue: false
791
791
  }),
792
+ // Added 2026-03-11
793
+ platform_editor_native_embeds: (0, _experimentBuilders.createBooleanExperiment)({
794
+ productKeys: {
795
+ confluence: 'platform_editor_native_embeds'
796
+ },
797
+ param: 'isEnabled',
798
+ defaultValue: false
799
+ }),
792
800
  // Added 2025-08-05
793
801
  platform_editor_native_anchor_with_dnd: (0, _experimentBuilders.createBooleanExperiment)({
794
802
  productKeys: {
@@ -1293,6 +1301,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1293
1301
  param: 'isEnabled',
1294
1302
  defaultValue: false
1295
1303
  }),
1304
+ // Added 2026-03-16
1305
+ platform_editor_ignore_metadata_connection_errors: (0, _experimentBuilders.createBooleanExperiment)({
1306
+ productKeys: {
1307
+ confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
1308
+ },
1309
+ param: 'isEnabled',
1310
+ defaultValue: false
1311
+ }),
1296
1312
  // Added 2026-01-26
1297
1313
  platform_editor_ai_fix_streaming_json_escape: (0, _experimentBuilders.createBooleanExperiment)({
1298
1314
  productKeys: {
@@ -1380,6 +1396,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1380
1396
  param: 'isEnabled',
1381
1397
  defaultValue: false
1382
1398
  }),
1399
+ // Added 2026-16-05
1400
+ platform_editor_outdated_browser_update: (0, _experimentBuilders.createBooleanExperiment)({
1401
+ productKeys: {
1402
+ confluence: 'platform_editor_outdated_browser_update'
1403
+ },
1404
+ param: 'isEnabled',
1405
+ defaultValue: false
1406
+ }),
1383
1407
  // Added 2026-02-05
1384
1408
  cc_fd_db_top_editor_toolbar: (0, _experimentBuilders.createMultivariateExperiment)({
1385
1409
  productKeys: {
@@ -1610,6 +1634,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1610
1634
  param: 'isEnabled',
1611
1635
  defaultValue: false
1612
1636
  }),
1637
+ // Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
1638
+ platform_editor_ai_aifc_space_shortcut_patch: (0, _experimentBuilders.createBooleanExperiment)({
1639
+ productKeys: {
1640
+ confluence: 'platform_editor_ai_aifc_space_shortcut_patch'
1641
+ },
1642
+ param: 'isEnabled',
1643
+ defaultValue: false
1644
+ }),
1613
1645
  // Added 2026-03-05
1614
1646
  platform_editor_eslint_suppression_fix: (0, _experimentBuilders.createBooleanExperiment)({
1615
1647
  productKeys: {
@@ -1738,5 +1770,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1738
1770
  },
1739
1771
  param: 'isEnabled',
1740
1772
  defaultValue: false
1773
+ }),
1774
+ // Added 2026-03-13
1775
+ platform_editor_misaligned_ai_screens_firefox_fix: (0, _experimentBuilders.createBooleanExperiment)({
1776
+ productKeys: {
1777
+ confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
1778
+ jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
1779
+ },
1780
+ param: 'isEnabled',
1781
+ defaultValue: false
1741
1782
  })
1742
1783
  };
@@ -783,6 +783,14 @@ export const editorExperimentsConfig = {
783
783
  param: 'isEnabled',
784
784
  defaultValue: false
785
785
  }),
786
+ // Added 2026-03-11
787
+ platform_editor_native_embeds: createBooleanExperiment({
788
+ productKeys: {
789
+ confluence: 'platform_editor_native_embeds'
790
+ },
791
+ param: 'isEnabled',
792
+ defaultValue: false
793
+ }),
786
794
  // Added 2025-08-05
787
795
  platform_editor_native_anchor_with_dnd: createBooleanExperiment({
788
796
  productKeys: {
@@ -1287,6 +1295,14 @@ export const editorExperimentsConfig = {
1287
1295
  param: 'isEnabled',
1288
1296
  defaultValue: false
1289
1297
  }),
1298
+ // Added 2026-03-16
1299
+ platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
1300
+ productKeys: {
1301
+ confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
1302
+ },
1303
+ param: 'isEnabled',
1304
+ defaultValue: false
1305
+ }),
1290
1306
  // Added 2026-01-26
1291
1307
  platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
1292
1308
  productKeys: {
@@ -1374,6 +1390,14 @@ export const editorExperimentsConfig = {
1374
1390
  param: 'isEnabled',
1375
1391
  defaultValue: false
1376
1392
  }),
1393
+ // Added 2026-16-05
1394
+ platform_editor_outdated_browser_update: createBooleanExperiment({
1395
+ productKeys: {
1396
+ confluence: 'platform_editor_outdated_browser_update'
1397
+ },
1398
+ param: 'isEnabled',
1399
+ defaultValue: false
1400
+ }),
1377
1401
  // Added 2026-02-05
1378
1402
  cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
1379
1403
  productKeys: {
@@ -1604,6 +1628,14 @@ export const editorExperimentsConfig = {
1604
1628
  param: 'isEnabled',
1605
1629
  defaultValue: false
1606
1630
  }),
1631
+ // Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
1632
+ platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
1633
+ productKeys: {
1634
+ confluence: 'platform_editor_ai_aifc_space_shortcut_patch'
1635
+ },
1636
+ param: 'isEnabled',
1637
+ defaultValue: false
1638
+ }),
1607
1639
  // Added 2026-03-05
1608
1640
  platform_editor_eslint_suppression_fix: createBooleanExperiment({
1609
1641
  productKeys: {
@@ -1732,5 +1764,14 @@ export const editorExperimentsConfig = {
1732
1764
  },
1733
1765
  param: 'isEnabled',
1734
1766
  defaultValue: false
1767
+ }),
1768
+ // Added 2026-03-13
1769
+ platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1770
+ productKeys: {
1771
+ confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
1772
+ jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
1773
+ },
1774
+ param: 'isEnabled',
1775
+ defaultValue: false
1735
1776
  })
1736
1777
  };
@@ -783,6 +783,14 @@ export var editorExperimentsConfig = {
783
783
  param: 'isEnabled',
784
784
  defaultValue: false
785
785
  }),
786
+ // Added 2026-03-11
787
+ platform_editor_native_embeds: createBooleanExperiment({
788
+ productKeys: {
789
+ confluence: 'platform_editor_native_embeds'
790
+ },
791
+ param: 'isEnabled',
792
+ defaultValue: false
793
+ }),
786
794
  // Added 2025-08-05
787
795
  platform_editor_native_anchor_with_dnd: createBooleanExperiment({
788
796
  productKeys: {
@@ -1287,6 +1295,14 @@ export var editorExperimentsConfig = {
1287
1295
  param: 'isEnabled',
1288
1296
  defaultValue: false
1289
1297
  }),
1298
+ // Added 2026-03-16
1299
+ platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
1300
+ productKeys: {
1301
+ confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
1302
+ },
1303
+ param: 'isEnabled',
1304
+ defaultValue: false
1305
+ }),
1290
1306
  // Added 2026-01-26
1291
1307
  platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
1292
1308
  productKeys: {
@@ -1374,6 +1390,14 @@ export var editorExperimentsConfig = {
1374
1390
  param: 'isEnabled',
1375
1391
  defaultValue: false
1376
1392
  }),
1393
+ // Added 2026-16-05
1394
+ platform_editor_outdated_browser_update: createBooleanExperiment({
1395
+ productKeys: {
1396
+ confluence: 'platform_editor_outdated_browser_update'
1397
+ },
1398
+ param: 'isEnabled',
1399
+ defaultValue: false
1400
+ }),
1377
1401
  // Added 2026-02-05
1378
1402
  cc_fd_db_top_editor_toolbar: createMultivariateExperiment({
1379
1403
  productKeys: {
@@ -1604,6 +1628,14 @@ export var editorExperimentsConfig = {
1604
1628
  param: 'isEnabled',
1605
1629
  defaultValue: false
1606
1630
  }),
1631
+ // Added for space shortcut plugin: when on, space shortcut is not added if AI opt-in is not enabled
1632
+ platform_editor_ai_aifc_space_shortcut_patch: createBooleanExperiment({
1633
+ productKeys: {
1634
+ confluence: 'platform_editor_ai_aifc_space_shortcut_patch'
1635
+ },
1636
+ param: 'isEnabled',
1637
+ defaultValue: false
1638
+ }),
1607
1639
  // Added 2026-03-05
1608
1640
  platform_editor_eslint_suppression_fix: createBooleanExperiment({
1609
1641
  productKeys: {
@@ -1732,5 +1764,14 @@ export var editorExperimentsConfig = {
1732
1764
  },
1733
1765
  param: 'isEnabled',
1734
1766
  defaultValue: false
1767
+ }),
1768
+ // Added 2026-03-13
1769
+ platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1770
+ productKeys: {
1771
+ confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
1772
+ jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
1773
+ },
1774
+ param: 'isEnabled',
1775
+ defaultValue: false
1735
1776
  })
1736
1777
  };
@@ -547,6 +547,12 @@ export declare const editorExperimentsConfig: {
547
547
  productKeys?: ProductKeys;
548
548
  typeGuard: IsBooleanType;
549
549
  };
550
+ platform_editor_native_embeds: {
551
+ defaultValue: boolean;
552
+ param: string;
553
+ productKeys?: ProductKeys;
554
+ typeGuard: IsBooleanType;
555
+ };
550
556
  platform_editor_native_anchor_with_dnd: {
551
557
  defaultValue: boolean;
552
558
  param: string;
@@ -941,6 +947,12 @@ export declare const editorExperimentsConfig: {
941
947
  productKeys?: ProductKeys;
942
948
  typeGuard: IsBooleanType;
943
949
  };
950
+ platform_editor_ignore_metadata_connection_errors: {
951
+ defaultValue: boolean;
952
+ param: string;
953
+ productKeys?: ProductKeys;
954
+ typeGuard: IsBooleanType;
955
+ };
944
956
  platform_editor_ai_fix_streaming_json_escape: {
945
957
  defaultValue: boolean;
946
958
  param: string;
@@ -1013,6 +1025,12 @@ export declare const editorExperimentsConfig: {
1013
1025
  productKeys?: ProductKeys;
1014
1026
  typeGuard: IsBooleanType;
1015
1027
  };
1028
+ platform_editor_outdated_browser_update: {
1029
+ defaultValue: boolean;
1030
+ param: string;
1031
+ productKeys?: ProductKeys;
1032
+ typeGuard: IsBooleanType;
1033
+ };
1016
1034
  cc_fd_db_top_editor_toolbar: {
1017
1035
  defaultValue: 'control' | 'new-description' | 'orig-description';
1018
1036
  param: string;
@@ -1170,6 +1188,12 @@ export declare const editorExperimentsConfig: {
1170
1188
  productKeys?: ProductKeys;
1171
1189
  typeGuard: IsBooleanType;
1172
1190
  };
1191
+ platform_editor_ai_aifc_space_shortcut_patch: {
1192
+ defaultValue: boolean;
1193
+ param: string;
1194
+ productKeys?: ProductKeys;
1195
+ typeGuard: IsBooleanType;
1196
+ };
1173
1197
  platform_editor_media_reliability_observability: {
1174
1198
  defaultValue: boolean;
1175
1199
  param: string;
@@ -1278,5 +1302,11 @@ export declare const editorExperimentsConfig: {
1278
1302
  productKeys?: ProductKeys;
1279
1303
  typeGuard: IsBooleanType;
1280
1304
  };
1305
+ platform_editor_misaligned_ai_screens_firefox_fix: {
1306
+ defaultValue: boolean;
1307
+ param: string;
1308
+ productKeys?: ProductKeys;
1309
+ typeGuard: IsBooleanType;
1310
+ };
1281
1311
  };
1282
1312
  export {};
@@ -547,6 +547,12 @@ export declare const editorExperimentsConfig: {
547
547
  productKeys?: ProductKeys;
548
548
  typeGuard: IsBooleanType;
549
549
  };
550
+ platform_editor_native_embeds: {
551
+ defaultValue: boolean;
552
+ param: string;
553
+ productKeys?: ProductKeys;
554
+ typeGuard: IsBooleanType;
555
+ };
550
556
  platform_editor_native_anchor_with_dnd: {
551
557
  defaultValue: boolean;
552
558
  param: string;
@@ -941,6 +947,12 @@ export declare const editorExperimentsConfig: {
941
947
  productKeys?: ProductKeys;
942
948
  typeGuard: IsBooleanType;
943
949
  };
950
+ platform_editor_ignore_metadata_connection_errors: {
951
+ defaultValue: boolean;
952
+ param: string;
953
+ productKeys?: ProductKeys;
954
+ typeGuard: IsBooleanType;
955
+ };
944
956
  platform_editor_ai_fix_streaming_json_escape: {
945
957
  defaultValue: boolean;
946
958
  param: string;
@@ -1013,6 +1025,12 @@ export declare const editorExperimentsConfig: {
1013
1025
  productKeys?: ProductKeys;
1014
1026
  typeGuard: IsBooleanType;
1015
1027
  };
1028
+ platform_editor_outdated_browser_update: {
1029
+ defaultValue: boolean;
1030
+ param: string;
1031
+ productKeys?: ProductKeys;
1032
+ typeGuard: IsBooleanType;
1033
+ };
1016
1034
  cc_fd_db_top_editor_toolbar: {
1017
1035
  defaultValue: 'control' | 'new-description' | 'orig-description';
1018
1036
  param: string;
@@ -1170,6 +1188,12 @@ export declare const editorExperimentsConfig: {
1170
1188
  productKeys?: ProductKeys;
1171
1189
  typeGuard: IsBooleanType;
1172
1190
  };
1191
+ platform_editor_ai_aifc_space_shortcut_patch: {
1192
+ defaultValue: boolean;
1193
+ param: string;
1194
+ productKeys?: ProductKeys;
1195
+ typeGuard: IsBooleanType;
1196
+ };
1173
1197
  platform_editor_media_reliability_observability: {
1174
1198
  defaultValue: boolean;
1175
1199
  param: string;
@@ -1278,5 +1302,11 @@ export declare const editorExperimentsConfig: {
1278
1302
  productKeys?: ProductKeys;
1279
1303
  typeGuard: IsBooleanType;
1280
1304
  };
1305
+ platform_editor_misaligned_ai_screens_firefox_fix: {
1306
+ defaultValue: boolean;
1307
+ param: string;
1308
+ productKeys?: ProductKeys;
1309
+ typeGuard: IsBooleanType;
1310
+ };
1281
1311
  };
1282
1312
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "36.1.0",
3
+ "version": "36.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",