@atlaskit/tmp-editor-statsig 62.0.0 → 62.2.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 62.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`65f1d80415ae8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/65f1d80415ae8) -
8
+ EDITOR-679 improve reliability of media provider
9
+
10
+ ## 62.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`80a2b27ade0a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/80a2b27ade0a5) -
15
+ [ux] EDITOR-6391 remove margin top from hide macro
16
+
3
17
  ## 62.0.0
4
18
 
5
19
  ### Major Changes
@@ -1123,6 +1123,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1123
1123
  param: 'isEnabled',
1124
1124
  defaultValue: false
1125
1125
  }),
1126
+ // Added 2026-04-13
1127
+ platform_editor_hide_extension_renderer_support: (0, _experimentBuilders.createBooleanExperiment)({
1128
+ productKeys: {
1129
+ confluence: 'platform_editor_hide_extension_renderer_support'
1130
+ },
1131
+ param: 'isEnabled',
1132
+ defaultValue: false
1133
+ }),
1126
1134
  // Added 2025-12-22
1127
1135
  platform_editor_sample_renderer_rendered_event: (0, _experimentBuilders.createBooleanExperiment)({
1128
1136
  productKeys: {
@@ -1988,5 +1996,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1988
1996
  },
1989
1997
  param: 'isEnabled',
1990
1998
  defaultValue: false
1999
+ }),
2000
+ // Added 2026-04-12
2001
+ platform_editor_media_reliability_enhancements: (0, _experimentBuilders.createBooleanExperiment)({
2002
+ productKeys: {
2003
+ confluence: 'platform_editor_media_reliability_enhancements'
2004
+ },
2005
+ param: 'isEnabled',
2006
+ defaultValue: false
1991
2007
  })
1992
2008
  };
@@ -1117,6 +1117,14 @@ export const editorExperimentsConfig = {
1117
1117
  param: 'isEnabled',
1118
1118
  defaultValue: false
1119
1119
  }),
1120
+ // Added 2026-04-13
1121
+ platform_editor_hide_extension_renderer_support: createBooleanExperiment({
1122
+ productKeys: {
1123
+ confluence: 'platform_editor_hide_extension_renderer_support'
1124
+ },
1125
+ param: 'isEnabled',
1126
+ defaultValue: false
1127
+ }),
1120
1128
  // Added 2025-12-22
1121
1129
  platform_editor_sample_renderer_rendered_event: createBooleanExperiment({
1122
1130
  productKeys: {
@@ -1982,5 +1990,13 @@ export const editorExperimentsConfig = {
1982
1990
  },
1983
1991
  param: 'isEnabled',
1984
1992
  defaultValue: false
1993
+ }),
1994
+ // Added 2026-04-12
1995
+ platform_editor_media_reliability_enhancements: createBooleanExperiment({
1996
+ productKeys: {
1997
+ confluence: 'platform_editor_media_reliability_enhancements'
1998
+ },
1999
+ param: 'isEnabled',
2000
+ defaultValue: false
1985
2001
  })
1986
2002
  };
@@ -1117,6 +1117,14 @@ export var editorExperimentsConfig = {
1117
1117
  param: 'isEnabled',
1118
1118
  defaultValue: false
1119
1119
  }),
1120
+ // Added 2026-04-13
1121
+ platform_editor_hide_extension_renderer_support: createBooleanExperiment({
1122
+ productKeys: {
1123
+ confluence: 'platform_editor_hide_extension_renderer_support'
1124
+ },
1125
+ param: 'isEnabled',
1126
+ defaultValue: false
1127
+ }),
1120
1128
  // Added 2025-12-22
1121
1129
  platform_editor_sample_renderer_rendered_event: createBooleanExperiment({
1122
1130
  productKeys: {
@@ -1982,5 +1990,13 @@ export var editorExperimentsConfig = {
1982
1990
  },
1983
1991
  param: 'isEnabled',
1984
1992
  defaultValue: false
1993
+ }),
1994
+ // Added 2026-04-12
1995
+ platform_editor_media_reliability_enhancements: createBooleanExperiment({
1996
+ productKeys: {
1997
+ confluence: 'platform_editor_media_reliability_enhancements'
1998
+ },
1999
+ param: 'isEnabled',
2000
+ defaultValue: false
1985
2001
  })
1986
2002
  };
@@ -845,6 +845,12 @@ export declare const editorExperimentsConfig: {
845
845
  productKeys?: ProductKeys;
846
846
  typeGuard: IsBooleanType;
847
847
  };
848
+ platform_editor_hide_extension_renderer_support: {
849
+ defaultValue: boolean;
850
+ param: string;
851
+ productKeys?: ProductKeys;
852
+ typeGuard: IsBooleanType;
853
+ };
848
854
  platform_editor_sample_renderer_rendered_event: {
849
855
  defaultValue: boolean;
850
856
  param: string;
@@ -1460,5 +1466,11 @@ export declare const editorExperimentsConfig: {
1460
1466
  productKeys?: ProductKeys;
1461
1467
  typeGuard: IsBooleanType;
1462
1468
  };
1469
+ platform_editor_media_reliability_enhancements: {
1470
+ defaultValue: boolean;
1471
+ param: string;
1472
+ productKeys?: ProductKeys;
1473
+ typeGuard: IsBooleanType;
1474
+ };
1463
1475
  };
1464
1476
  export {};
@@ -845,6 +845,12 @@ export declare const editorExperimentsConfig: {
845
845
  productKeys?: ProductKeys;
846
846
  typeGuard: IsBooleanType;
847
847
  };
848
+ platform_editor_hide_extension_renderer_support: {
849
+ defaultValue: boolean;
850
+ param: string;
851
+ productKeys?: ProductKeys;
852
+ typeGuard: IsBooleanType;
853
+ };
848
854
  platform_editor_sample_renderer_rendered_event: {
849
855
  defaultValue: boolean;
850
856
  param: string;
@@ -1460,5 +1466,11 @@ export declare const editorExperimentsConfig: {
1460
1466
  productKeys?: ProductKeys;
1461
1467
  typeGuard: IsBooleanType;
1462
1468
  };
1469
+ platform_editor_media_reliability_enhancements: {
1470
+ defaultValue: boolean;
1471
+ param: string;
1472
+ productKeys?: ProductKeys;
1473
+ typeGuard: IsBooleanType;
1474
+ };
1463
1475
  };
1464
1476
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "62.0.0",
3
+ "version": "62.2.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",