@atlaskit/tmp-editor-statsig 135.0.1 → 135.2.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 +55 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +18 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +18 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +18 -0
- package/dist/types/experiments-config.d.ts +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b91c14d4dbad7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b91c14d4dbad7) -
|
|
8
|
+
Editor; Ensure only the first table row can become a sticky header when the rounded table patch is
|
|
9
|
+
enabled
|
|
10
|
+
|
|
11
|
+
Renderer; Patch table body elements to have rounded corners when overridden by consumers
|
|
12
|
+
|
|
13
|
+
## 135.1.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- [`5174794d869df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5174794d869df) -
|
|
18
|
+
Add the third-party (3P) prompt tile to Create-with-Rovo personalized suggestions, gated behind
|
|
19
|
+
the `confluence_cwr_3p_connection_suggested_prompts` experiment (Control / Variant A / Variant B).
|
|
20
|
+
|
|
21
|
+
The frontend owns all experiment logic and passes a plain `enable3pPromptOn3rdCard` boolean to
|
|
22
|
+
`fetchPersonalizedPromptSuggestionsStream`; the backend uses it only to gate 3P tile generation.
|
|
23
|
+
The modal and its preloads share one prompt-suggestions cache, so all of them decide the flag with
|
|
24
|
+
a no-exposure cohort read (only eligible users request the tile). The Statsig exposure fires once,
|
|
25
|
+
when the modal actually opens, so preloads don't dilute the experiment. Variant B renders up to
|
|
26
|
+
two connector icons on the 3P tile via `RovoLogoForAppSource`, falling back to the single tile
|
|
27
|
+
icon (Variant A behaviour) when there are no connectors.
|
|
28
|
+
|
|
29
|
+
A `track` eligibility event is emitted when the modal opens so the "admin allowed no 3P apps → not
|
|
30
|
+
in the experiment" segment (which fires no Statsig exposure) is still counted, alongside
|
|
31
|
+
eligible/cohort and connectors-unavailable outcomes.
|
|
32
|
+
|
|
33
|
+
`useEnsureConnectorsLoaded` gains an optional `enabled` flag (default `true`): the 3P tile loads
|
|
34
|
+
connectors only on the exposure surface or for variants, so control on a preload surface pays no
|
|
35
|
+
connectors fetch — and no extra render — on every create-button mount.
|
|
36
|
+
|
|
37
|
+
Usage:
|
|
38
|
+
|
|
39
|
+
```ts
|
|
40
|
+
import { fetchPersonalizedPromptSuggestionsStream } from '@atlassian/conversation-assistant-service/services/assistance-service/main';
|
|
41
|
+
import {
|
|
42
|
+
type ThirdPartyConnector,
|
|
43
|
+
THIRD_PARTY_PROMPT_SOURCE_CONTENT_TYPE,
|
|
44
|
+
} from '@atlassian/conversation-assistant-service-api/types/assistance-service';
|
|
45
|
+
|
|
46
|
+
// Opt in to the 3P tile on the 3rd card (variants A/B only); omit the flag otherwise
|
|
47
|
+
// so the request stays byte-identical for everyone else.
|
|
48
|
+
const { generator } = await assistanceService.fetchPersonalizedPromptSuggestionsStream({
|
|
49
|
+
enable3pPromptOn3rdCard: true,
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
// A returned tile is the 3P tile when its source content type matches; it carries the
|
|
53
|
+
// connectors used to render the product icons.
|
|
54
|
+
const is3pTile = tile.source_content_type === THIRD_PARTY_PROMPT_SOURCE_CONTENT_TYPE;
|
|
55
|
+
const connectors: ThirdPartyConnector[] | undefined = tile.third_party_connectors;
|
|
56
|
+
```
|
|
57
|
+
|
|
3
58
|
## 135.0.1
|
|
4
59
|
|
|
5
60
|
### Patch Changes
|
|
@@ -17,7 +17,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
17
17
|
platform_editor_paste_actions_menu_v2: 'control',
|
|
18
18
|
cc_smarts_should_improve_writing_migration: 'control',
|
|
19
19
|
confluence_quick_insert_embeds: 'control',
|
|
20
|
-
cc_cwr_prompt_strength_indicator: 'control'
|
|
20
|
+
cc_cwr_prompt_strength_indicator: 'control',
|
|
21
|
+
confluence_cwr_3p_connection_suggested_prompts: 'control'
|
|
21
22
|
};
|
|
22
23
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
23
24
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
@@ -517,6 +517,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
517
517
|
values: ['control', 'variant1'],
|
|
518
518
|
defaultValue: 'control'
|
|
519
519
|
}),
|
|
520
|
+
// Added 2026-07-21
|
|
521
|
+
confluence_cwr_3p_connection_suggested_prompts: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
522
|
+
productKeys: {
|
|
523
|
+
confluence: 'confluence_cwr_3p_connection_suggested_prompts'
|
|
524
|
+
},
|
|
525
|
+
param: 'cohort',
|
|
526
|
+
values: ['control', 'variant_a', 'variant_b'],
|
|
527
|
+
defaultValue: 'control'
|
|
528
|
+
}),
|
|
520
529
|
// Added 2026-03-02
|
|
521
530
|
platform_editor_inline_card_dispatch_guard: (0, _experimentBuilders.createBooleanExperiment)({
|
|
522
531
|
productKeys: {
|
|
@@ -2076,6 +2085,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2076
2085
|
param: 'isEnabled',
|
|
2077
2086
|
defaultValue: false
|
|
2078
2087
|
}),
|
|
2088
|
+
// Added 2026-07-22
|
|
2089
|
+
platform_editor_table_q4_patch_5: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2090
|
+
productKeys: {
|
|
2091
|
+
confluence: 'platform_editor_table_q4_patch_5',
|
|
2092
|
+
jira: 'platform_editor_table_q4_patch_5'
|
|
2093
|
+
},
|
|
2094
|
+
param: 'isEnabled',
|
|
2095
|
+
defaultValue: false
|
|
2096
|
+
}),
|
|
2079
2097
|
// Added 2026-05-11
|
|
2080
2098
|
platform_editor_table_menu_updates: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2081
2099
|
productKeys: {
|
|
@@ -11,7 +11,8 @@ export const testMultivariateOverrides = {
|
|
|
11
11
|
platform_editor_paste_actions_menu_v2: 'control',
|
|
12
12
|
cc_smarts_should_improve_writing_migration: 'control',
|
|
13
13
|
confluence_quick_insert_embeds: 'control',
|
|
14
|
-
cc_cwr_prompt_strength_indicator: 'control'
|
|
14
|
+
cc_cwr_prompt_strength_indicator: 'control',
|
|
15
|
+
confluence_cwr_3p_connection_suggested_prompts: 'control'
|
|
15
16
|
};
|
|
16
17
|
export const testBooleanOverrides = {
|
|
17
18
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
@@ -511,6 +511,15 @@ export const editorExperimentsConfig = {
|
|
|
511
511
|
values: ['control', 'variant1'],
|
|
512
512
|
defaultValue: 'control'
|
|
513
513
|
}),
|
|
514
|
+
// Added 2026-07-21
|
|
515
|
+
confluence_cwr_3p_connection_suggested_prompts: createMultivariateExperiment({
|
|
516
|
+
productKeys: {
|
|
517
|
+
confluence: 'confluence_cwr_3p_connection_suggested_prompts'
|
|
518
|
+
},
|
|
519
|
+
param: 'cohort',
|
|
520
|
+
values: ['control', 'variant_a', 'variant_b'],
|
|
521
|
+
defaultValue: 'control'
|
|
522
|
+
}),
|
|
514
523
|
// Added 2026-03-02
|
|
515
524
|
platform_editor_inline_card_dispatch_guard: createBooleanExperiment({
|
|
516
525
|
productKeys: {
|
|
@@ -2070,6 +2079,15 @@ export const editorExperimentsConfig = {
|
|
|
2070
2079
|
param: 'isEnabled',
|
|
2071
2080
|
defaultValue: false
|
|
2072
2081
|
}),
|
|
2082
|
+
// Added 2026-07-22
|
|
2083
|
+
platform_editor_table_q4_patch_5: createBooleanExperiment({
|
|
2084
|
+
productKeys: {
|
|
2085
|
+
confluence: 'platform_editor_table_q4_patch_5',
|
|
2086
|
+
jira: 'platform_editor_table_q4_patch_5'
|
|
2087
|
+
},
|
|
2088
|
+
param: 'isEnabled',
|
|
2089
|
+
defaultValue: false
|
|
2090
|
+
}),
|
|
2073
2091
|
// Added 2026-05-11
|
|
2074
2092
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2075
2093
|
productKeys: {
|
|
@@ -11,7 +11,8 @@ export var testMultivariateOverrides = {
|
|
|
11
11
|
platform_editor_paste_actions_menu_v2: 'control',
|
|
12
12
|
cc_smarts_should_improve_writing_migration: 'control',
|
|
13
13
|
confluence_quick_insert_embeds: 'control',
|
|
14
|
-
cc_cwr_prompt_strength_indicator: 'control'
|
|
14
|
+
cc_cwr_prompt_strength_indicator: 'control',
|
|
15
|
+
confluence_cwr_3p_connection_suggested_prompts: 'control'
|
|
15
16
|
};
|
|
16
17
|
export var testBooleanOverrides = {
|
|
17
18
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
@@ -511,6 +511,15 @@ export var editorExperimentsConfig = {
|
|
|
511
511
|
values: ['control', 'variant1'],
|
|
512
512
|
defaultValue: 'control'
|
|
513
513
|
}),
|
|
514
|
+
// Added 2026-07-21
|
|
515
|
+
confluence_cwr_3p_connection_suggested_prompts: createMultivariateExperiment({
|
|
516
|
+
productKeys: {
|
|
517
|
+
confluence: 'confluence_cwr_3p_connection_suggested_prompts'
|
|
518
|
+
},
|
|
519
|
+
param: 'cohort',
|
|
520
|
+
values: ['control', 'variant_a', 'variant_b'],
|
|
521
|
+
defaultValue: 'control'
|
|
522
|
+
}),
|
|
514
523
|
// Added 2026-03-02
|
|
515
524
|
platform_editor_inline_card_dispatch_guard: createBooleanExperiment({
|
|
516
525
|
productKeys: {
|
|
@@ -2070,6 +2079,15 @@ export var editorExperimentsConfig = {
|
|
|
2070
2079
|
param: 'isEnabled',
|
|
2071
2080
|
defaultValue: false
|
|
2072
2081
|
}),
|
|
2082
|
+
// Added 2026-07-22
|
|
2083
|
+
platform_editor_table_q4_patch_5: createBooleanExperiment({
|
|
2084
|
+
productKeys: {
|
|
2085
|
+
confluence: 'platform_editor_table_q4_patch_5',
|
|
2086
|
+
jira: 'platform_editor_table_q4_patch_5'
|
|
2087
|
+
},
|
|
2088
|
+
param: 'isEnabled',
|
|
2089
|
+
defaultValue: false
|
|
2090
|
+
}),
|
|
2073
2091
|
// Added 2026-05-11
|
|
2074
2092
|
platform_editor_table_menu_updates: createBooleanExperiment({
|
|
2075
2093
|
productKeys: {
|
|
@@ -1521,6 +1521,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1521
1521
|
productKeys?: ProductKeys;
|
|
1522
1522
|
typeGuard: IsBooleanType;
|
|
1523
1523
|
};
|
|
1524
|
+
platform_editor_table_q4_patch_5: {
|
|
1525
|
+
defaultValue: boolean;
|
|
1526
|
+
param: string;
|
|
1527
|
+
productKeys?: ProductKeys;
|
|
1528
|
+
typeGuard: IsBooleanType;
|
|
1529
|
+
};
|
|
1524
1530
|
platform_editor_table_menu_updates: {
|
|
1525
1531
|
defaultValue: boolean;
|
|
1526
1532
|
param: string;
|
|
@@ -1840,5 +1846,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1840
1846
|
productKeys?: ProductKeys;
|
|
1841
1847
|
typeGuard: IsBooleanType;
|
|
1842
1848
|
};
|
|
1849
|
+
confluence_cwr_3p_connection_suggested_prompts: {
|
|
1850
|
+
defaultValue: 'control' | 'variant_a' | 'variant_b';
|
|
1851
|
+
param: string;
|
|
1852
|
+
productKeys?: ProductKeys;
|
|
1853
|
+
typeGuard: (value: unknown) => value is 'control' | 'variant_a' | 'variant_b';
|
|
1854
|
+
values: ('control' | 'variant_a' | 'variant_b')[];
|
|
1855
|
+
};
|
|
1843
1856
|
};
|
|
1844
1857
|
export {};
|
package/package.json
CHANGED