@atlaskit/tmp-editor-statsig 2.1.12 → 2.1.13
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 +9 -0
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +8 -0
- package/dist/types/setup.d.ts +1 -0
- package/dist/types-ts4.5/experiments-config.d.ts +8 -0
- package/dist/types-ts4.5/setup.d.ts +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.1.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#144888](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/144888)
|
|
8
|
+
[`ac1408cf343b5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ac1408cf343b5) -
|
|
9
|
+
[ux] EDF-1569 Removed Rovo footer from agents screen, behind
|
|
10
|
+
platform_editor_ai_command_palette_post_ga experiment. Added experiment to editor config.
|
|
11
|
+
|
|
3
12
|
## 2.1.12
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -196,5 +196,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
196
196
|
param: 'isEnabled',
|
|
197
197
|
typeGuard: isBoolean,
|
|
198
198
|
defaultValue: false
|
|
199
|
+
},
|
|
200
|
+
// Added 2024-09-24
|
|
201
|
+
platform_editor_ai_command_palette_post_ga: {
|
|
202
|
+
productKeys: {
|
|
203
|
+
confluence: 'platform_editor_ai_command_palette_post_ga'
|
|
204
|
+
},
|
|
205
|
+
param: 'cohort',
|
|
206
|
+
typeGuard: oneOf(['control', 'test']),
|
|
207
|
+
defaultValue: 'control'
|
|
199
208
|
}
|
|
200
209
|
};
|
|
@@ -190,5 +190,14 @@ export const editorExperimentsConfig = {
|
|
|
190
190
|
param: 'isEnabled',
|
|
191
191
|
typeGuard: isBoolean,
|
|
192
192
|
defaultValue: false
|
|
193
|
+
},
|
|
194
|
+
// Added 2024-09-24
|
|
195
|
+
platform_editor_ai_command_palette_post_ga: {
|
|
196
|
+
productKeys: {
|
|
197
|
+
confluence: 'platform_editor_ai_command_palette_post_ga'
|
|
198
|
+
},
|
|
199
|
+
param: 'cohort',
|
|
200
|
+
typeGuard: oneOf(['control', 'test']),
|
|
201
|
+
defaultValue: 'control'
|
|
193
202
|
}
|
|
194
203
|
};
|
|
@@ -190,5 +190,14 @@ export var editorExperimentsConfig = {
|
|
|
190
190
|
param: 'isEnabled',
|
|
191
191
|
typeGuard: isBoolean,
|
|
192
192
|
defaultValue: false
|
|
193
|
+
},
|
|
194
|
+
// Added 2024-09-24
|
|
195
|
+
platform_editor_ai_command_palette_post_ga: {
|
|
196
|
+
productKeys: {
|
|
197
|
+
confluence: 'platform_editor_ai_command_palette_post_ga'
|
|
198
|
+
},
|
|
199
|
+
param: 'cohort',
|
|
200
|
+
typeGuard: oneOf(['control', 'test']),
|
|
201
|
+
defaultValue: 'control'
|
|
193
202
|
}
|
|
194
203
|
};
|
|
@@ -159,5 +159,13 @@ export declare const editorExperimentsConfig: {
|
|
|
159
159
|
typeGuard: typeof isBoolean;
|
|
160
160
|
defaultValue: boolean;
|
|
161
161
|
};
|
|
162
|
+
platform_editor_ai_command_palette_post_ga: {
|
|
163
|
+
productKeys: {
|
|
164
|
+
confluence: string;
|
|
165
|
+
};
|
|
166
|
+
param: string;
|
|
167
|
+
typeGuard: (value: unknown) => value is "control" | "test";
|
|
168
|
+
defaultValue: "control" | "test";
|
|
169
|
+
};
|
|
162
170
|
};
|
|
163
171
|
export {};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare let _overrides: Partial<{
|
|
|
22
22
|
platform_renderer_table_sticky_scrollbar: boolean;
|
|
23
23
|
'nest-media-and-codeblock-in-quote': boolean;
|
|
24
24
|
'nested-expand-in-expand': boolean;
|
|
25
|
+
platform_editor_ai_command_palette_post_ga: "control" | "test";
|
|
25
26
|
}>;
|
|
26
27
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
27
28
|
/**
|
|
@@ -159,5 +159,13 @@ export declare const editorExperimentsConfig: {
|
|
|
159
159
|
typeGuard: typeof isBoolean;
|
|
160
160
|
defaultValue: boolean;
|
|
161
161
|
};
|
|
162
|
+
platform_editor_ai_command_palette_post_ga: {
|
|
163
|
+
productKeys: {
|
|
164
|
+
confluence: string;
|
|
165
|
+
};
|
|
166
|
+
param: string;
|
|
167
|
+
typeGuard: (value: unknown) => value is "control" | "test";
|
|
168
|
+
defaultValue: "control" | "test";
|
|
169
|
+
};
|
|
162
170
|
};
|
|
163
171
|
export {};
|
|
@@ -22,6 +22,7 @@ export declare let _overrides: Partial<{
|
|
|
22
22
|
platform_renderer_table_sticky_scrollbar: boolean;
|
|
23
23
|
'nest-media-and-codeblock-in-quote': boolean;
|
|
24
24
|
'nested-expand-in-expand': boolean;
|
|
25
|
+
platform_editor_ai_command_palette_post_ga: "control" | "test";
|
|
25
26
|
}>;
|
|
26
27
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
27
28
|
/**
|
package/package.json
CHANGED