@atlaskit/tmp-editor-statsig 133.2.0 → 133.3.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 +7 -0
- package/dist/cjs/exp-val-equals-internal.js +1 -1
- package/dist/cjs/experiments-config.js +8 -0
- package/dist/es2019/exp-val-equals-internal.js +1 -1
- package/dist/es2019/experiments-config.js +8 -0
- package/dist/esm/exp-val-equals-internal.js +1 -1
- package/dist/esm/experiments-config.js +8 -0
- package/dist/types/experiments-config.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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.
|
|
@@ -1410,6 +1410,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1410
1410
|
param: 'isEnabled',
|
|
1411
1411
|
defaultValue: false
|
|
1412
1412
|
}),
|
|
1413
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1414
|
+
cc_maui_create_keyword_aa: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1415
|
+
productKeys: {
|
|
1416
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1417
|
+
},
|
|
1418
|
+
param: 'isEnabled',
|
|
1419
|
+
defaultValue: false
|
|
1420
|
+
}),
|
|
1413
1421
|
// Added 2026-07-13
|
|
1414
1422
|
confluence_native_tabs_experiment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1415
1423
|
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.
|
|
@@ -1404,6 +1404,14 @@ export const editorExperimentsConfig = {
|
|
|
1404
1404
|
param: 'isEnabled',
|
|
1405
1405
|
defaultValue: false
|
|
1406
1406
|
}),
|
|
1407
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1408
|
+
cc_maui_create_keyword_aa: createBooleanExperiment({
|
|
1409
|
+
productKeys: {
|
|
1410
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1411
|
+
},
|
|
1412
|
+
param: 'isEnabled',
|
|
1413
|
+
defaultValue: false
|
|
1414
|
+
}),
|
|
1407
1415
|
// Added 2026-07-13
|
|
1408
1416
|
confluence_native_tabs_experiment: createBooleanExperiment({
|
|
1409
1417
|
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.
|
|
@@ -1404,6 +1404,14 @@ export var editorExperimentsConfig = {
|
|
|
1404
1404
|
param: 'isEnabled',
|
|
1405
1405
|
defaultValue: false
|
|
1406
1406
|
}),
|
|
1407
|
+
// A/A experiment paired with cc_maui_create_keyword, used only to balance exposures.
|
|
1408
|
+
cc_maui_create_keyword_aa: createBooleanExperiment({
|
|
1409
|
+
productKeys: {
|
|
1410
|
+
confluence: 'cc_maui_create_keyword_aa'
|
|
1411
|
+
},
|
|
1412
|
+
param: 'isEnabled',
|
|
1413
|
+
defaultValue: false
|
|
1414
|
+
}),
|
|
1407
1415
|
// Added 2026-07-13
|
|
1408
1416
|
confluence_native_tabs_experiment: createBooleanExperiment({
|
|
1409
1417
|
productKeys: {
|
|
@@ -1082,6 +1082,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1082
1082
|
productKeys?: ProductKeys;
|
|
1083
1083
|
typeGuard: IsBooleanType;
|
|
1084
1084
|
};
|
|
1085
|
+
cc_maui_create_keyword_aa: {
|
|
1086
|
+
defaultValue: boolean;
|
|
1087
|
+
param: string;
|
|
1088
|
+
productKeys?: ProductKeys;
|
|
1089
|
+
typeGuard: IsBooleanType;
|
|
1090
|
+
};
|
|
1085
1091
|
confluence_native_tabs_experiment: {
|
|
1086
1092
|
defaultValue: boolean;
|
|
1087
1093
|
param: string;
|
package/package.json
CHANGED