@atlaskit/tmp-editor-statsig 120.0.0 → 120.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 120.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6a73f3cc58350`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6a73f3cc58350) -
|
|
8
|
+
Hide block template action for agent-managed blocks behind the agent-managed block template
|
|
9
|
+
experiment.
|
|
10
|
+
|
|
3
11
|
## 120.0.0
|
|
4
12
|
|
|
5
13
|
### Major Changes
|
|
@@ -192,6 +192,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
192
192
|
param: 'isEnabled',
|
|
193
193
|
defaultValue: false
|
|
194
194
|
}),
|
|
195
|
+
// Added 2026-06-30
|
|
196
|
+
'agent-managed-blocks-stop-block-template': (0, _experimentBuilders.createBooleanExperiment)({
|
|
197
|
+
productKeys: {
|
|
198
|
+
confluence: 'agent-managed-blocks-stop-block-template'
|
|
199
|
+
},
|
|
200
|
+
param: 'isEnabled',
|
|
201
|
+
defaultValue: false
|
|
202
|
+
}),
|
|
195
203
|
// Added 2026-05-05
|
|
196
204
|
'databases-native-embeds-v2': (0, _experimentBuilders.createBooleanExperiment)({
|
|
197
205
|
productKeys: {
|
|
@@ -186,6 +186,14 @@ export const editorExperimentsConfig = {
|
|
|
186
186
|
param: 'isEnabled',
|
|
187
187
|
defaultValue: false
|
|
188
188
|
}),
|
|
189
|
+
// Added 2026-06-30
|
|
190
|
+
'agent-managed-blocks-stop-block-template': createBooleanExperiment({
|
|
191
|
+
productKeys: {
|
|
192
|
+
confluence: 'agent-managed-blocks-stop-block-template'
|
|
193
|
+
},
|
|
194
|
+
param: 'isEnabled',
|
|
195
|
+
defaultValue: false
|
|
196
|
+
}),
|
|
189
197
|
// Added 2026-05-05
|
|
190
198
|
'databases-native-embeds-v2': createBooleanExperiment({
|
|
191
199
|
productKeys: {
|
|
@@ -186,6 +186,14 @@ export var editorExperimentsConfig = {
|
|
|
186
186
|
param: 'isEnabled',
|
|
187
187
|
defaultValue: false
|
|
188
188
|
}),
|
|
189
|
+
// Added 2026-06-30
|
|
190
|
+
'agent-managed-blocks-stop-block-template': createBooleanExperiment({
|
|
191
|
+
productKeys: {
|
|
192
|
+
confluence: 'agent-managed-blocks-stop-block-template'
|
|
193
|
+
},
|
|
194
|
+
param: 'isEnabled',
|
|
195
|
+
defaultValue: false
|
|
196
|
+
}),
|
|
189
197
|
// Added 2026-05-05
|
|
190
198
|
'databases-native-embeds-v2': createBooleanExperiment({
|
|
191
199
|
productKeys: {
|
|
@@ -63,6 +63,12 @@ export declare const editorExperimentsConfig: {
|
|
|
63
63
|
productKeys?: ProductKeys;
|
|
64
64
|
typeGuard: IsBooleanType;
|
|
65
65
|
};
|
|
66
|
+
'agent-managed-blocks-stop-block-template': {
|
|
67
|
+
defaultValue: boolean;
|
|
68
|
+
param: string;
|
|
69
|
+
productKeys?: ProductKeys;
|
|
70
|
+
typeGuard: IsBooleanType;
|
|
71
|
+
};
|
|
66
72
|
cc_editor_ai_content_mode: {
|
|
67
73
|
defaultValue: 'control' | 'test';
|
|
68
74
|
param: string;
|
package/package.json
CHANGED