@atlaskit/tmp-editor-statsig 2.1.14 → 2.1.15

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
+ ## 2.1.15
4
+
5
+ ### Patch Changes
6
+
7
+ - [#147137](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/147137)
8
+ [`339de234bcb4c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/339de234bcb4c) -
9
+ [EDF-1508] Initial spike for Multi Prompt experiment
10
+
3
11
  ## 2.1.14
4
12
 
5
13
  ### Patch Changes
@@ -214,5 +214,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
214
214
  param: 'isEnabled',
215
215
  typeGuard: isBoolean,
216
216
  defaultValue: false
217
+ },
218
+ // Added 2024-09-23
219
+ // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_multi_prompts/setup
220
+ 'editor_ai_-_multi_prompts': {
221
+ productKeys: {
222
+ confluence: 'editor_ai_-_multi_prompts'
223
+ },
224
+ param: 'cohort',
225
+ typeGuard: oneOf(['control', 'test']),
226
+ defaultValue: 'control'
217
227
  }
218
228
  };
@@ -208,5 +208,15 @@ export const editorExperimentsConfig = {
208
208
  param: 'isEnabled',
209
209
  typeGuard: isBoolean,
210
210
  defaultValue: false
211
+ },
212
+ // Added 2024-09-23
213
+ // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_multi_prompts/setup
214
+ 'editor_ai_-_multi_prompts': {
215
+ productKeys: {
216
+ confluence: 'editor_ai_-_multi_prompts'
217
+ },
218
+ param: 'cohort',
219
+ typeGuard: oneOf(['control', 'test']),
220
+ defaultValue: 'control'
211
221
  }
212
222
  };
@@ -208,5 +208,15 @@ export var editorExperimentsConfig = {
208
208
  param: 'isEnabled',
209
209
  typeGuard: isBoolean,
210
210
  defaultValue: false
211
+ },
212
+ // Added 2024-09-23
213
+ // https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_multi_prompts/setup
214
+ 'editor_ai_-_multi_prompts': {
215
+ productKeys: {
216
+ confluence: 'editor_ai_-_multi_prompts'
217
+ },
218
+ param: 'cohort',
219
+ typeGuard: oneOf(['control', 'test']),
220
+ defaultValue: 'control'
211
221
  }
212
222
  };
@@ -175,5 +175,13 @@ export declare const editorExperimentsConfig: {
175
175
  typeGuard: typeof isBoolean;
176
176
  defaultValue: boolean;
177
177
  };
178
+ 'editor_ai_-_multi_prompts': {
179
+ productKeys: {
180
+ confluence: string;
181
+ };
182
+ param: string;
183
+ typeGuard: (value: unknown) => value is "control" | "test";
184
+ defaultValue: "control" | "test";
185
+ };
178
186
  };
179
187
  export {};
@@ -24,6 +24,7 @@ export declare let _overrides: Partial<{
24
24
  'nested-expand-in-expand': boolean;
25
25
  platform_editor_ai_command_palette_post_ga: "control" | "test";
26
26
  platform_editor_table_use_shared_state_hook: boolean;
27
+ 'editor_ai_-_multi_prompts': "control" | "test";
27
28
  }>;
28
29
  export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
29
30
  /**
@@ -175,5 +175,13 @@ export declare const editorExperimentsConfig: {
175
175
  typeGuard: typeof isBoolean;
176
176
  defaultValue: boolean;
177
177
  };
178
+ 'editor_ai_-_multi_prompts': {
179
+ productKeys: {
180
+ confluence: string;
181
+ };
182
+ param: string;
183
+ typeGuard: (value: unknown) => value is "control" | "test";
184
+ defaultValue: "control" | "test";
185
+ };
178
186
  };
179
187
  export {};
@@ -24,6 +24,7 @@ export declare let _overrides: Partial<{
24
24
  'nested-expand-in-expand': boolean;
25
25
  platform_editor_ai_command_palette_post_ga: "control" | "test";
26
26
  platform_editor_table_use_shared_state_hook: boolean;
27
+ 'editor_ai_-_multi_prompts': "control" | "test";
27
28
  }>;
28
29
  export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
29
30
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "2.1.14",
3
+ "version": "2.1.15",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",