@atlaskit/tmp-editor-statsig 88.5.0 → 89.1.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 +20 -0
- package/dist/cjs/experiments-config.js +17 -9
- package/dist/es2019/experiments-config.js +17 -9
- package/dist/esm/experiments-config.js +17 -9
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 89.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`0f434033d49b4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f434033d49b4) -
|
|
8
|
+
Add remix, remix_edit, and inline_edit experience values to creation context payloads so frontend
|
|
9
|
+
requests can be logged and routed by experience.
|
|
10
|
+
|
|
11
|
+
## 89.0.0
|
|
12
|
+
|
|
13
|
+
### Major Changes
|
|
14
|
+
|
|
15
|
+
- [`3e2877f105afc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e2877f105afc) -
|
|
16
|
+
Remove code block auto-detection experiment from editor statsig catalog.
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- [`be7cb592d8951`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/be7cb592d8951) -
|
|
21
|
+
NAVX-5108 Implementing UI for new inline tailored rovo cta
|
|
22
|
+
|
|
3
23
|
## 88.5.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -177,6 +177,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
177
177
|
param: 'isEnabled',
|
|
178
178
|
defaultValue: false
|
|
179
179
|
}),
|
|
180
|
+
// Added 2026-06-01
|
|
181
|
+
rovo_remix_experience_context: (0, _experimentBuilders.createBooleanExperiment)({
|
|
182
|
+
productKeys: {
|
|
183
|
+
confluence: 'rovo_remix_experience_context'
|
|
184
|
+
},
|
|
185
|
+
param: 'isEnabled',
|
|
186
|
+
defaultValue: false
|
|
187
|
+
}),
|
|
180
188
|
// Added 2026-04-28
|
|
181
189
|
'agent-managed_blocks_mvp': (0, _experimentBuilders.createBooleanExperiment)({
|
|
182
190
|
productKeys: {
|
|
@@ -558,15 +566,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
558
566
|
param: 'isEnabled',
|
|
559
567
|
defaultValue: false
|
|
560
568
|
}),
|
|
561
|
-
// Added 2026-05-25
|
|
562
|
-
platform_editor_code_block_auto_detection: (0, _experimentBuilders.createBooleanExperiment)({
|
|
563
|
-
productKeys: {
|
|
564
|
-
confluence: 'platform_editor_code_block_auto_detection',
|
|
565
|
-
jira: 'platform_editor_code_block_auto_detection'
|
|
566
|
-
},
|
|
567
|
-
param: 'isEnabled',
|
|
568
|
-
defaultValue: false
|
|
569
|
-
}),
|
|
570
569
|
// Added 2025-07-14
|
|
571
570
|
platform_editor_debounce_portal_provider: (0, _experimentBuilders.createBooleanExperiment)({
|
|
572
571
|
productKeys: {
|
|
@@ -1057,6 +1056,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1057
1056
|
param: 'isEnabled',
|
|
1058
1057
|
defaultValue: false
|
|
1059
1058
|
}),
|
|
1059
|
+
// Added 2026-05-29 — Inline rovo action on resolved inline smart links
|
|
1060
|
+
platform_sl_3p_auth_inline_tailored_cta: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1061
|
+
productKeys: {
|
|
1062
|
+
confluence: 'platform_sl_3p_auth_inline_tailored_cta',
|
|
1063
|
+
jira: 'platform_sl_3p_auth_inline_tailored_cta'
|
|
1064
|
+
},
|
|
1065
|
+
param: 'isEnabled',
|
|
1066
|
+
defaultValue: false
|
|
1067
|
+
}),
|
|
1060
1068
|
// Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
|
|
1061
1069
|
platform_sl_3p_post_auth_chat_open_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1062
1070
|
productKeys: {
|
|
@@ -171,6 +171,14 @@ export const editorExperimentsConfig = {
|
|
|
171
171
|
param: 'isEnabled',
|
|
172
172
|
defaultValue: false
|
|
173
173
|
}),
|
|
174
|
+
// Added 2026-06-01
|
|
175
|
+
rovo_remix_experience_context: createBooleanExperiment({
|
|
176
|
+
productKeys: {
|
|
177
|
+
confluence: 'rovo_remix_experience_context'
|
|
178
|
+
},
|
|
179
|
+
param: 'isEnabled',
|
|
180
|
+
defaultValue: false
|
|
181
|
+
}),
|
|
174
182
|
// Added 2026-04-28
|
|
175
183
|
'agent-managed_blocks_mvp': createBooleanExperiment({
|
|
176
184
|
productKeys: {
|
|
@@ -552,15 +560,6 @@ export const editorExperimentsConfig = {
|
|
|
552
560
|
param: 'isEnabled',
|
|
553
561
|
defaultValue: false
|
|
554
562
|
}),
|
|
555
|
-
// Added 2026-05-25
|
|
556
|
-
platform_editor_code_block_auto_detection: createBooleanExperiment({
|
|
557
|
-
productKeys: {
|
|
558
|
-
confluence: 'platform_editor_code_block_auto_detection',
|
|
559
|
-
jira: 'platform_editor_code_block_auto_detection'
|
|
560
|
-
},
|
|
561
|
-
param: 'isEnabled',
|
|
562
|
-
defaultValue: false
|
|
563
|
-
}),
|
|
564
563
|
// Added 2025-07-14
|
|
565
564
|
platform_editor_debounce_portal_provider: createBooleanExperiment({
|
|
566
565
|
productKeys: {
|
|
@@ -1051,6 +1050,15 @@ export const editorExperimentsConfig = {
|
|
|
1051
1050
|
param: 'isEnabled',
|
|
1052
1051
|
defaultValue: false
|
|
1053
1052
|
}),
|
|
1053
|
+
// Added 2026-05-29 — Inline rovo action on resolved inline smart links
|
|
1054
|
+
platform_sl_3p_auth_inline_tailored_cta: createBooleanExperiment({
|
|
1055
|
+
productKeys: {
|
|
1056
|
+
confluence: 'platform_sl_3p_auth_inline_tailored_cta',
|
|
1057
|
+
jira: 'platform_sl_3p_auth_inline_tailored_cta'
|
|
1058
|
+
},
|
|
1059
|
+
param: 'isEnabled',
|
|
1060
|
+
defaultValue: false
|
|
1061
|
+
}),
|
|
1054
1062
|
// Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
|
|
1055
1063
|
platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
|
|
1056
1064
|
productKeys: {
|
|
@@ -171,6 +171,14 @@ export var editorExperimentsConfig = {
|
|
|
171
171
|
param: 'isEnabled',
|
|
172
172
|
defaultValue: false
|
|
173
173
|
}),
|
|
174
|
+
// Added 2026-06-01
|
|
175
|
+
rovo_remix_experience_context: createBooleanExperiment({
|
|
176
|
+
productKeys: {
|
|
177
|
+
confluence: 'rovo_remix_experience_context'
|
|
178
|
+
},
|
|
179
|
+
param: 'isEnabled',
|
|
180
|
+
defaultValue: false
|
|
181
|
+
}),
|
|
174
182
|
// Added 2026-04-28
|
|
175
183
|
'agent-managed_blocks_mvp': createBooleanExperiment({
|
|
176
184
|
productKeys: {
|
|
@@ -552,15 +560,6 @@ export var editorExperimentsConfig = {
|
|
|
552
560
|
param: 'isEnabled',
|
|
553
561
|
defaultValue: false
|
|
554
562
|
}),
|
|
555
|
-
// Added 2026-05-25
|
|
556
|
-
platform_editor_code_block_auto_detection: createBooleanExperiment({
|
|
557
|
-
productKeys: {
|
|
558
|
-
confluence: 'platform_editor_code_block_auto_detection',
|
|
559
|
-
jira: 'platform_editor_code_block_auto_detection'
|
|
560
|
-
},
|
|
561
|
-
param: 'isEnabled',
|
|
562
|
-
defaultValue: false
|
|
563
|
-
}),
|
|
564
563
|
// Added 2025-07-14
|
|
565
564
|
platform_editor_debounce_portal_provider: createBooleanExperiment({
|
|
566
565
|
productKeys: {
|
|
@@ -1051,6 +1050,15 @@ export var editorExperimentsConfig = {
|
|
|
1051
1050
|
param: 'isEnabled',
|
|
1052
1051
|
defaultValue: false
|
|
1053
1052
|
}),
|
|
1053
|
+
// Added 2026-05-29 — Inline rovo action on resolved inline smart links
|
|
1054
|
+
platform_sl_3p_auth_inline_tailored_cta: createBooleanExperiment({
|
|
1055
|
+
productKeys: {
|
|
1056
|
+
confluence: 'platform_sl_3p_auth_inline_tailored_cta',
|
|
1057
|
+
jira: 'platform_sl_3p_auth_inline_tailored_cta'
|
|
1058
|
+
},
|
|
1059
|
+
param: 'isEnabled',
|
|
1060
|
+
defaultValue: false
|
|
1061
|
+
}),
|
|
1054
1062
|
// Added 2026-05-21 — Post-auth GDrive Smart Link to Rovo Chat auto-open
|
|
1055
1063
|
platform_sl_3p_post_auth_chat_open_exp: createBooleanExperiment({
|
|
1056
1064
|
productKeys: {
|
|
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
|
|
|
33
33
|
productKeys?: ProductKeys;
|
|
34
34
|
typeGuard: IsBooleanType;
|
|
35
35
|
};
|
|
36
|
+
rovo_remix_experience_context: {
|
|
37
|
+
defaultValue: boolean;
|
|
38
|
+
param: string;
|
|
39
|
+
productKeys?: ProductKeys;
|
|
40
|
+
typeGuard: IsBooleanType;
|
|
41
|
+
};
|
|
36
42
|
'databases-native-embeds-v2': {
|
|
37
43
|
defaultValue: boolean;
|
|
38
44
|
param: string;
|
|
@@ -179,12 +185,6 @@ export declare const editorExperimentsConfig: {
|
|
|
179
185
|
productKeys?: ProductKeys;
|
|
180
186
|
typeGuard: IsBooleanType;
|
|
181
187
|
};
|
|
182
|
-
platform_editor_code_block_auto_detection: {
|
|
183
|
-
defaultValue: boolean;
|
|
184
|
-
param: string;
|
|
185
|
-
productKeys?: ProductKeys;
|
|
186
|
-
typeGuard: IsBooleanType;
|
|
187
|
-
};
|
|
188
188
|
platform_editor_render_bodied_extension_as_inline: {
|
|
189
189
|
defaultValue: boolean;
|
|
190
190
|
param: string;
|
|
@@ -778,6 +778,12 @@ export declare const editorExperimentsConfig: {
|
|
|
778
778
|
productKeys?: ProductKeys;
|
|
779
779
|
typeGuard: IsBooleanType;
|
|
780
780
|
};
|
|
781
|
+
platform_sl_3p_auth_inline_tailored_cta: {
|
|
782
|
+
defaultValue: boolean;
|
|
783
|
+
param: string;
|
|
784
|
+
productKeys?: ProductKeys;
|
|
785
|
+
typeGuard: IsBooleanType;
|
|
786
|
+
};
|
|
781
787
|
platform_synced_block: {
|
|
782
788
|
defaultValue: boolean;
|
|
783
789
|
param: string;
|
|
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
|
|
|
33
33
|
productKeys?: ProductKeys;
|
|
34
34
|
typeGuard: IsBooleanType;
|
|
35
35
|
};
|
|
36
|
+
rovo_remix_experience_context: {
|
|
37
|
+
defaultValue: boolean;
|
|
38
|
+
param: string;
|
|
39
|
+
productKeys?: ProductKeys;
|
|
40
|
+
typeGuard: IsBooleanType;
|
|
41
|
+
};
|
|
36
42
|
'databases-native-embeds-v2': {
|
|
37
43
|
defaultValue: boolean;
|
|
38
44
|
param: string;
|
|
@@ -179,12 +185,6 @@ export declare const editorExperimentsConfig: {
|
|
|
179
185
|
productKeys?: ProductKeys;
|
|
180
186
|
typeGuard: IsBooleanType;
|
|
181
187
|
};
|
|
182
|
-
platform_editor_code_block_auto_detection: {
|
|
183
|
-
defaultValue: boolean;
|
|
184
|
-
param: string;
|
|
185
|
-
productKeys?: ProductKeys;
|
|
186
|
-
typeGuard: IsBooleanType;
|
|
187
|
-
};
|
|
188
188
|
platform_editor_render_bodied_extension_as_inline: {
|
|
189
189
|
defaultValue: boolean;
|
|
190
190
|
param: string;
|
|
@@ -778,6 +778,12 @@ export declare const editorExperimentsConfig: {
|
|
|
778
778
|
productKeys?: ProductKeys;
|
|
779
779
|
typeGuard: IsBooleanType;
|
|
780
780
|
};
|
|
781
|
+
platform_sl_3p_auth_inline_tailored_cta: {
|
|
782
|
+
defaultValue: boolean;
|
|
783
|
+
param: string;
|
|
784
|
+
productKeys?: ProductKeys;
|
|
785
|
+
typeGuard: IsBooleanType;
|
|
786
|
+
};
|
|
781
787
|
platform_synced_block: {
|
|
782
788
|
defaultValue: boolean;
|
|
783
789
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "89.1.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",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@atlaskit/feature-gate-js-client": "^5.7.0",
|
|
37
37
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
38
|
-
"@atlaskit/react-ufo": "^6.
|
|
38
|
+
"@atlaskit/react-ufo": "^6.7.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"platform-feature-flags": {
|