@atlaskit/tmp-editor-statsig 74.2.0 → 74.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 74.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`266e293748871`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/266e293748871) -
|
|
8
|
+
[ux] Adds AI image generation to premium macros Carousel, Cards, & Spotlight behind an experiment
|
|
9
|
+
gate.
|
|
10
|
+
|
|
3
11
|
## 74.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1340,6 +1340,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1340
1340
|
param: 'isEnabled',
|
|
1341
1341
|
defaultValue: false
|
|
1342
1342
|
}),
|
|
1343
|
+
// Added 2026-04-17
|
|
1344
|
+
cc_page_experiences_premium_macros_img_generation: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1345
|
+
productKeys: {
|
|
1346
|
+
confluence: 'cc_page_experiences_premium_macros_img_generation'
|
|
1347
|
+
},
|
|
1348
|
+
param: 'isEnabled',
|
|
1349
|
+
defaultValue: false
|
|
1350
|
+
}),
|
|
1343
1351
|
// Added 2026-02-23
|
|
1344
1352
|
'cc-maui-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1345
1353
|
productKeys: {
|
|
@@ -1334,6 +1334,14 @@ export const editorExperimentsConfig = {
|
|
|
1334
1334
|
param: 'isEnabled',
|
|
1335
1335
|
defaultValue: false
|
|
1336
1336
|
}),
|
|
1337
|
+
// Added 2026-04-17
|
|
1338
|
+
cc_page_experiences_premium_macros_img_generation: createBooleanExperiment({
|
|
1339
|
+
productKeys: {
|
|
1340
|
+
confluence: 'cc_page_experiences_premium_macros_img_generation'
|
|
1341
|
+
},
|
|
1342
|
+
param: 'isEnabled',
|
|
1343
|
+
defaultValue: false
|
|
1344
|
+
}),
|
|
1337
1345
|
// Added 2026-02-23
|
|
1338
1346
|
'cc-maui-experiment': createBooleanExperiment({
|
|
1339
1347
|
productKeys: {
|
|
@@ -1334,6 +1334,14 @@ export var editorExperimentsConfig = {
|
|
|
1334
1334
|
param: 'isEnabled',
|
|
1335
1335
|
defaultValue: false
|
|
1336
1336
|
}),
|
|
1337
|
+
// Added 2026-04-17
|
|
1338
|
+
cc_page_experiences_premium_macros_img_generation: createBooleanExperiment({
|
|
1339
|
+
productKeys: {
|
|
1340
|
+
confluence: 'cc_page_experiences_premium_macros_img_generation'
|
|
1341
|
+
},
|
|
1342
|
+
param: 'isEnabled',
|
|
1343
|
+
defaultValue: false
|
|
1344
|
+
}),
|
|
1337
1345
|
// Added 2026-02-23
|
|
1338
1346
|
'cc-maui-experiment': createBooleanExperiment({
|
|
1339
1347
|
productKeys: {
|
|
@@ -1026,6 +1026,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1026
1026
|
productKeys?: ProductKeys;
|
|
1027
1027
|
typeGuard: IsBooleanType;
|
|
1028
1028
|
};
|
|
1029
|
+
cc_page_experiences_premium_macros_img_generation: {
|
|
1030
|
+
defaultValue: boolean;
|
|
1031
|
+
param: string;
|
|
1032
|
+
productKeys?: ProductKeys;
|
|
1033
|
+
typeGuard: IsBooleanType;
|
|
1034
|
+
};
|
|
1029
1035
|
'cc-maui-experiment': {
|
|
1030
1036
|
defaultValue: boolean;
|
|
1031
1037
|
param: string;
|
|
@@ -1026,6 +1026,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1026
1026
|
productKeys?: ProductKeys;
|
|
1027
1027
|
typeGuard: IsBooleanType;
|
|
1028
1028
|
};
|
|
1029
|
+
cc_page_experiences_premium_macros_img_generation: {
|
|
1030
|
+
defaultValue: boolean;
|
|
1031
|
+
param: string;
|
|
1032
|
+
productKeys?: ProductKeys;
|
|
1033
|
+
typeGuard: IsBooleanType;
|
|
1034
|
+
};
|
|
1029
1035
|
'cc-maui-experiment': {
|
|
1030
1036
|
defaultValue: boolean;
|
|
1031
1037
|
param: string;
|
package/package.json
CHANGED