@atlaskit/tmp-editor-statsig 132.6.0 → 133.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 133.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`3e55e8eea5a11`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e55e8eea5a11) -
|
|
8
|
+
Fixes reduced profile card exp flag name
|
|
9
|
+
|
|
3
10
|
## 132.6.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -544,10 +544,10 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
544
544
|
defaultValue: false
|
|
545
545
|
}),
|
|
546
546
|
// Added 2026-07-09
|
|
547
|
-
|
|
547
|
+
platform_editor_reduced_agent_profile_cards: (0, _experimentBuilders.createBooleanExperiment)({
|
|
548
548
|
productKeys: {
|
|
549
|
-
confluence: '
|
|
550
|
-
jira: '
|
|
549
|
+
confluence: 'platform_editor_reduced_agent_profile_cards',
|
|
550
|
+
jira: 'platform_editor_reduced_agent_profile_cards'
|
|
551
551
|
},
|
|
552
552
|
param: 'isEnabled',
|
|
553
553
|
defaultValue: false
|
|
@@ -538,10 +538,10 @@ export const editorExperimentsConfig = {
|
|
|
538
538
|
defaultValue: false
|
|
539
539
|
}),
|
|
540
540
|
// Added 2026-07-09
|
|
541
|
-
|
|
541
|
+
platform_editor_reduced_agent_profile_cards: createBooleanExperiment({
|
|
542
542
|
productKeys: {
|
|
543
|
-
confluence: '
|
|
544
|
-
jira: '
|
|
543
|
+
confluence: 'platform_editor_reduced_agent_profile_cards',
|
|
544
|
+
jira: 'platform_editor_reduced_agent_profile_cards'
|
|
545
545
|
},
|
|
546
546
|
param: 'isEnabled',
|
|
547
547
|
defaultValue: false
|
|
@@ -538,10 +538,10 @@ export var editorExperimentsConfig = {
|
|
|
538
538
|
defaultValue: false
|
|
539
539
|
}),
|
|
540
540
|
// Added 2026-07-09
|
|
541
|
-
|
|
541
|
+
platform_editor_reduced_agent_profile_cards: createBooleanExperiment({
|
|
542
542
|
productKeys: {
|
|
543
|
-
confluence: '
|
|
544
|
-
jira: '
|
|
543
|
+
confluence: 'platform_editor_reduced_agent_profile_cards',
|
|
544
|
+
jira: 'platform_editor_reduced_agent_profile_cards'
|
|
545
545
|
},
|
|
546
546
|
param: 'isEnabled',
|
|
547
547
|
defaultValue: false
|
|
@@ -604,7 +604,7 @@ export declare const editorExperimentsConfig: {
|
|
|
604
604
|
productKeys?: ProductKeys;
|
|
605
605
|
typeGuard: IsBooleanType;
|
|
606
606
|
};
|
|
607
|
-
|
|
607
|
+
platform_editor_reduced_agent_profile_cards: {
|
|
608
608
|
defaultValue: boolean;
|
|
609
609
|
param: string;
|
|
610
610
|
productKeys?: ProductKeys;
|
package/package.json
CHANGED