@atlaskit/tmp-editor-statsig 114.1.0 → 114.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 114.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0c3036cbf6b5c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0c3036cbf6b5c) -
|
|
8
|
+
Add gated Rovo actions footer experiment for eligible resolved 3P Smart Link embeds in Confluence.
|
|
9
|
+
|
|
3
10
|
## 114.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1027,6 +1027,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1027
1027
|
param: 'isEnabled',
|
|
1028
1028
|
defaultValue: false
|
|
1029
1029
|
}),
|
|
1030
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1031
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1032
|
+
productKeys: {
|
|
1033
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1034
|
+
},
|
|
1035
|
+
param: 'isEnabled',
|
|
1036
|
+
defaultValue: false
|
|
1037
|
+
}),
|
|
1030
1038
|
// Added 2025-01-23
|
|
1031
1039
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1032
1040
|
productKeys: {
|
|
@@ -1021,6 +1021,14 @@ export const editorExperimentsConfig = {
|
|
|
1021
1021
|
param: 'isEnabled',
|
|
1022
1022
|
defaultValue: false
|
|
1023
1023
|
}),
|
|
1024
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1025
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: createBooleanExperiment({
|
|
1026
|
+
productKeys: {
|
|
1027
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1028
|
+
},
|
|
1029
|
+
param: 'isEnabled',
|
|
1030
|
+
defaultValue: false
|
|
1031
|
+
}),
|
|
1024
1032
|
// Added 2025-01-23
|
|
1025
1033
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1026
1034
|
productKeys: {
|
|
@@ -1021,6 +1021,14 @@ export var editorExperimentsConfig = {
|
|
|
1021
1021
|
param: 'isEnabled',
|
|
1022
1022
|
defaultValue: false
|
|
1023
1023
|
}),
|
|
1024
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1025
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: createBooleanExperiment({
|
|
1026
|
+
productKeys: {
|
|
1027
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1028
|
+
},
|
|
1029
|
+
param: 'isEnabled',
|
|
1030
|
+
defaultValue: false
|
|
1031
|
+
}),
|
|
1024
1032
|
// Added 2025-01-23
|
|
1025
1033
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1026
1034
|
productKeys: {
|
|
@@ -701,6 +701,12 @@ export declare const editorExperimentsConfig: {
|
|
|
701
701
|
productKeys?: ProductKeys;
|
|
702
702
|
typeGuard: IsBooleanType;
|
|
703
703
|
};
|
|
704
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: {
|
|
705
|
+
defaultValue: boolean;
|
|
706
|
+
param: string;
|
|
707
|
+
productKeys?: ProductKeys;
|
|
708
|
+
typeGuard: IsBooleanType;
|
|
709
|
+
};
|
|
704
710
|
social_proof_3p_unauth_block_exp: {
|
|
705
711
|
defaultValue: boolean;
|
|
706
712
|
param: string;
|
package/package.json
CHANGED