@atlaskit/tmp-editor-statsig 13.33.0 → 13.34.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.34.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`83b11ab9079a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/83b11ab9079a9) -
|
|
8
|
+
EDITOR-2480 Enabled ADF prompts for all products behind new fg.
|
|
9
|
+
|
|
3
10
|
## 13.33.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -441,14 +441,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
441
441
|
values: ['control', 'adf_gemini25flash', 'adf_gpt41mini'],
|
|
442
442
|
defaultValue: 'control'
|
|
443
443
|
}),
|
|
444
|
-
// Added 2025-06-18
|
|
445
|
-
platform_editor_ai_ct_sg_adf_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
446
|
-
productKeys: {
|
|
447
|
-
confluence: 'platform_editor_ai_ct_sg_adf_streaming'
|
|
448
|
-
},
|
|
449
|
-
param: 'isEnabled',
|
|
450
|
-
defaultValue: false
|
|
451
|
-
}),
|
|
452
444
|
// Added 2025-08-20
|
|
453
445
|
platform_editor_ai_non_iw_adf_streaming: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
454
446
|
productKeys: {
|
|
@@ -435,14 +435,6 @@ export const editorExperimentsConfig = {
|
|
|
435
435
|
values: ['control', 'adf_gemini25flash', 'adf_gpt41mini'],
|
|
436
436
|
defaultValue: 'control'
|
|
437
437
|
}),
|
|
438
|
-
// Added 2025-06-18
|
|
439
|
-
platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
|
|
440
|
-
productKeys: {
|
|
441
|
-
confluence: 'platform_editor_ai_ct_sg_adf_streaming'
|
|
442
|
-
},
|
|
443
|
-
param: 'isEnabled',
|
|
444
|
-
defaultValue: false
|
|
445
|
-
}),
|
|
446
438
|
// Added 2025-08-20
|
|
447
439
|
platform_editor_ai_non_iw_adf_streaming: createMultivariateExperiment({
|
|
448
440
|
productKeys: {
|
|
@@ -435,14 +435,6 @@ export var editorExperimentsConfig = {
|
|
|
435
435
|
values: ['control', 'adf_gemini25flash', 'adf_gpt41mini'],
|
|
436
436
|
defaultValue: 'control'
|
|
437
437
|
}),
|
|
438
|
-
// Added 2025-06-18
|
|
439
|
-
platform_editor_ai_ct_sg_adf_streaming: createBooleanExperiment({
|
|
440
|
-
productKeys: {
|
|
441
|
-
confluence: 'platform_editor_ai_ct_sg_adf_streaming'
|
|
442
|
-
},
|
|
443
|
-
param: 'isEnabled',
|
|
444
|
-
defaultValue: false
|
|
445
|
-
}),
|
|
446
438
|
// Added 2025-08-20
|
|
447
439
|
platform_editor_ai_non_iw_adf_streaming: createMultivariateExperiment({
|
|
448
440
|
productKeys: {
|
|
@@ -319,12 +319,6 @@ export declare const editorExperimentsConfig: {
|
|
|
319
319
|
param: string;
|
|
320
320
|
productKeys?: import("./types").ProductKeys;
|
|
321
321
|
};
|
|
322
|
-
platform_editor_ai_ct_sg_adf_streaming: {
|
|
323
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
324
|
-
defaultValue: boolean;
|
|
325
|
-
param: string;
|
|
326
|
-
productKeys?: import("./types").ProductKeys;
|
|
327
|
-
};
|
|
328
322
|
platform_editor_ai_non_iw_adf_streaming: {
|
|
329
323
|
values: ("control" | "adf_gemini25flash" | "adf_gpt41mini")[];
|
|
330
324
|
typeGuard: (value: unknown) => value is "control" | "adf_gemini25flash" | "adf_gpt41mini";
|
|
@@ -319,12 +319,6 @@ export declare const editorExperimentsConfig: {
|
|
|
319
319
|
param: string;
|
|
320
320
|
productKeys?: import("./types").ProductKeys;
|
|
321
321
|
};
|
|
322
|
-
platform_editor_ai_ct_sg_adf_streaming: {
|
|
323
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
324
|
-
defaultValue: boolean;
|
|
325
|
-
param: string;
|
|
326
|
-
productKeys?: import("./types").ProductKeys;
|
|
327
|
-
};
|
|
328
322
|
platform_editor_ai_non_iw_adf_streaming: {
|
|
329
323
|
values: ("control" | "adf_gemini25flash" | "adf_gpt41mini")[];
|
|
330
324
|
typeGuard: (value: unknown) => value is "control" | "adf_gemini25flash" | "adf_gpt41mini";
|
package/package.json
CHANGED