@atlaskit/tmp-editor-statsig 133.2.0 → 133.3.1
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 +14 -0
- package/dist/cjs/exp-val-equals-internal.js +1 -1
- package/dist/cjs/experiments-config.js +8 -8
- package/dist/es2019/exp-val-equals-internal.js +1 -1
- package/dist/es2019/experiments-config.js +8 -8
- package/dist/esm/exp-val-equals-internal.js +1 -1
- package/dist/esm/experiments-config.js +8 -8
- package/dist/types/experiments-config.d.ts +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 133.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9120ffa5e7699`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9120ffa5e7699) -
|
|
8
|
+
Clean up experiment `agent-managed-blocks-stop-block-template`.
|
|
9
|
+
|
|
10
|
+
## 133.3.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`4f0a4f4c814fa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f0a4f4c814fa) -
|
|
15
|
+
only aa experiment exposure
|
|
16
|
+
|
|
3
17
|
## 133.2.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -12,7 +12,7 @@ var _setup = require("./setup");
|
|
|
12
12
|
// This internal representation doesn't currently support productKeys
|
|
13
13
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
14
14
|
// we determine our preferred approach forward
|
|
15
|
-
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
|
|
15
|
+
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'cc_maui_create_keyword_aa', 'platform_use_unicode_emojis'];
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Check the value if an editor experiment.
|
|
@@ -262,14 +262,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
262
262
|
param: 'isEnabled',
|
|
263
263
|
defaultValue: false
|
|
264
264
|
}),
|
|
265
|
-
// Added 2026-06-30
|
|
266
|
-
'agent-managed-blocks-stop-block-template': (0, _experimentBuilders.createBooleanExperiment)({
|
|
267
|
-
productKeys: {
|
|
268
|
-
confluence: 'agent-managed-blocks-stop-block-template'
|
|
269
|
-
},
|
|
270
|
-
param: 'isEnabled',
|
|
271
|
-
defaultValue: false
|
|
272
|
-
}),
|
|
273
265
|
// Added 2026-05-05
|
|
274
266
|
'databases-native-embeds-v2': (0, _experimentBuilders.createBooleanExperiment)({
|
|
275
267
|
productKeys: {
|
|
@@ -1410,6 +1402,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1410
1402
|
param: 'isEnabled',
|
|
1411
1403
|
defaultValue: false
|
|
1412
1404
|
}),
|
|
1405
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1406
|
+
cc_maui_create_keyword_aa: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1407
|
+
productKeys: {
|
|
1408
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1409
|
+
},
|
|
1410
|
+
param: 'isEnabled',
|
|
1411
|
+
defaultValue: false
|
|
1412
|
+
}),
|
|
1413
1413
|
// Added 2026-07-13
|
|
1414
1414
|
confluence_native_tabs_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1415
1415
|
productKeys: {
|
|
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
|
|
|
6
6
|
// This internal representation doesn't currently support productKeys
|
|
7
7
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
8
8
|
// we determine our preferred approach forward
|
|
9
|
-
const allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
|
|
9
|
+
const allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'cc_maui_create_keyword_aa', 'platform_use_unicode_emojis'];
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Check the value if an editor experiment.
|
|
@@ -256,14 +256,6 @@ export const editorExperimentsConfig = {
|
|
|
256
256
|
param: 'isEnabled',
|
|
257
257
|
defaultValue: false
|
|
258
258
|
}),
|
|
259
|
-
// Added 2026-06-30
|
|
260
|
-
'agent-managed-blocks-stop-block-template': createBooleanExperiment({
|
|
261
|
-
productKeys: {
|
|
262
|
-
confluence: 'agent-managed-blocks-stop-block-template'
|
|
263
|
-
},
|
|
264
|
-
param: 'isEnabled',
|
|
265
|
-
defaultValue: false
|
|
266
|
-
}),
|
|
267
259
|
// Added 2026-05-05
|
|
268
260
|
'databases-native-embeds-v2': createBooleanExperiment({
|
|
269
261
|
productKeys: {
|
|
@@ -1404,6 +1396,14 @@ export const editorExperimentsConfig = {
|
|
|
1404
1396
|
param: 'isEnabled',
|
|
1405
1397
|
defaultValue: false
|
|
1406
1398
|
}),
|
|
1399
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1400
|
+
cc_maui_create_keyword_aa: createBooleanExperiment({
|
|
1401
|
+
productKeys: {
|
|
1402
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1403
|
+
},
|
|
1404
|
+
param: 'isEnabled',
|
|
1405
|
+
defaultValue: false
|
|
1406
|
+
}),
|
|
1407
1407
|
// Added 2026-07-13
|
|
1408
1408
|
confluence_native_tabs_experiment: createBooleanExperiment({
|
|
1409
1409
|
productKeys: {
|
|
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
|
|
|
6
6
|
// This internal representation doesn't currently support productKeys
|
|
7
7
|
// the way expVal(...) does, this adds temporary support for some keys while
|
|
8
8
|
// we determine our preferred approach forward
|
|
9
|
-
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
|
|
9
|
+
var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'cc_maui_create_keyword_aa', 'platform_use_unicode_emojis'];
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Check the value if an editor experiment.
|
|
@@ -256,14 +256,6 @@ export var editorExperimentsConfig = {
|
|
|
256
256
|
param: 'isEnabled',
|
|
257
257
|
defaultValue: false
|
|
258
258
|
}),
|
|
259
|
-
// Added 2026-06-30
|
|
260
|
-
'agent-managed-blocks-stop-block-template': createBooleanExperiment({
|
|
261
|
-
productKeys: {
|
|
262
|
-
confluence: 'agent-managed-blocks-stop-block-template'
|
|
263
|
-
},
|
|
264
|
-
param: 'isEnabled',
|
|
265
|
-
defaultValue: false
|
|
266
|
-
}),
|
|
267
259
|
// Added 2026-05-05
|
|
268
260
|
'databases-native-embeds-v2': createBooleanExperiment({
|
|
269
261
|
productKeys: {
|
|
@@ -1404,6 +1396,14 @@ export var editorExperimentsConfig = {
|
|
|
1404
1396
|
param: 'isEnabled',
|
|
1405
1397
|
defaultValue: false
|
|
1406
1398
|
}),
|
|
1399
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1400
|
+
cc_maui_create_keyword_aa: createBooleanExperiment({
|
|
1401
|
+
productKeys: {
|
|
1402
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1403
|
+
},
|
|
1404
|
+
param: 'isEnabled',
|
|
1405
|
+
defaultValue: false
|
|
1406
|
+
}),
|
|
1407
1407
|
// Added 2026-07-13
|
|
1408
1408
|
confluence_native_tabs_experiment: createBooleanExperiment({
|
|
1409
1409
|
productKeys: {
|
|
@@ -93,12 +93,6 @@ export declare const editorExperimentsConfig: {
|
|
|
93
93
|
productKeys?: ProductKeys;
|
|
94
94
|
typeGuard: IsBooleanType;
|
|
95
95
|
};
|
|
96
|
-
'agent-managed-blocks-stop-block-template': {
|
|
97
|
-
defaultValue: boolean;
|
|
98
|
-
param: string;
|
|
99
|
-
productKeys?: ProductKeys;
|
|
100
|
-
typeGuard: IsBooleanType;
|
|
101
|
-
};
|
|
102
96
|
cc_editor_ai_content_mode: {
|
|
103
97
|
defaultValue: 'control' | 'test';
|
|
104
98
|
param: string;
|
|
@@ -1082,6 +1076,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1082
1076
|
productKeys?: ProductKeys;
|
|
1083
1077
|
typeGuard: IsBooleanType;
|
|
1084
1078
|
};
|
|
1079
|
+
cc_maui_create_keyword_aa: {
|
|
1080
|
+
defaultValue: boolean;
|
|
1081
|
+
param: string;
|
|
1082
|
+
productKeys?: ProductKeys;
|
|
1083
|
+
typeGuard: IsBooleanType;
|
|
1084
|
+
};
|
|
1085
1085
|
confluence_native_tabs_experiment: {
|
|
1086
1086
|
defaultValue: boolean;
|
|
1087
1087
|
param: string;
|
package/package.json
CHANGED