@atlaskit/tmp-editor-statsig 132.5.0 → 132.6.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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 132.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`4718ca6f37dbd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4718ca6f37dbd) -
|
|
8
|
+
[CCI-18026] Route Company Hub Concise Page Summary streaming requests to cc-smarts behind the
|
|
9
|
+
`cc_smarts_concise_page_summary_migration` experiment.
|
|
10
|
+
|
|
11
|
+
Usage:
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
expValEquals('cc_smarts_concise_page_summary_migration', 'useCcSmarts', true, false);
|
|
15
|
+
```
|
|
16
|
+
|
|
3
17
|
## 132.5.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -2426,6 +2426,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2426
2426
|
param: 'useCcSmarts',
|
|
2427
2427
|
defaultValue: false
|
|
2428
2428
|
}),
|
|
2429
|
+
cc_smarts_concise_page_summary_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2430
|
+
productKeys: {
|
|
2431
|
+
confluence: 'cc_smarts_concise_page_summary_migration'
|
|
2432
|
+
},
|
|
2433
|
+
param: 'useCcSmarts',
|
|
2434
|
+
defaultValue: false
|
|
2435
|
+
}),
|
|
2429
2436
|
// Added 2026-06-24 — HUBS-850 — gates the --ak-editor-extension-block-spacing block-margin hook
|
|
2430
2437
|
platform_editor_extension_block_spacing: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2431
2438
|
productKeys: {
|
|
@@ -2420,6 +2420,13 @@ export const editorExperimentsConfig = {
|
|
|
2420
2420
|
param: 'useCcSmarts',
|
|
2421
2421
|
defaultValue: false
|
|
2422
2422
|
}),
|
|
2423
|
+
cc_smarts_concise_page_summary_migration: createBooleanExperiment({
|
|
2424
|
+
productKeys: {
|
|
2425
|
+
confluence: 'cc_smarts_concise_page_summary_migration'
|
|
2426
|
+
},
|
|
2427
|
+
param: 'useCcSmarts',
|
|
2428
|
+
defaultValue: false
|
|
2429
|
+
}),
|
|
2423
2430
|
// Added 2026-06-24 — HUBS-850 — gates the --ak-editor-extension-block-spacing block-margin hook
|
|
2424
2431
|
platform_editor_extension_block_spacing: createBooleanExperiment({
|
|
2425
2432
|
productKeys: {
|
|
@@ -2420,6 +2420,13 @@ export var editorExperimentsConfig = {
|
|
|
2420
2420
|
param: 'useCcSmarts',
|
|
2421
2421
|
defaultValue: false
|
|
2422
2422
|
}),
|
|
2423
|
+
cc_smarts_concise_page_summary_migration: createBooleanExperiment({
|
|
2424
|
+
productKeys: {
|
|
2425
|
+
confluence: 'cc_smarts_concise_page_summary_migration'
|
|
2426
|
+
},
|
|
2427
|
+
param: 'useCcSmarts',
|
|
2428
|
+
defaultValue: false
|
|
2429
|
+
}),
|
|
2423
2430
|
// Added 2026-06-24 — HUBS-850 — gates the --ak-editor-extension-block-spacing block-margin hook
|
|
2424
2431
|
platform_editor_extension_block_spacing: createBooleanExperiment({
|
|
2425
2432
|
productKeys: {
|
|
@@ -1768,6 +1768,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1768
1768
|
productKeys?: ProductKeys;
|
|
1769
1769
|
typeGuard: IsBooleanType;
|
|
1770
1770
|
};
|
|
1771
|
+
cc_smarts_concise_page_summary_migration: {
|
|
1772
|
+
defaultValue: boolean;
|
|
1773
|
+
param: string;
|
|
1774
|
+
productKeys?: ProductKeys;
|
|
1775
|
+
typeGuard: IsBooleanType;
|
|
1776
|
+
};
|
|
1771
1777
|
platform_editor_extension_block_spacing: {
|
|
1772
1778
|
defaultValue: boolean;
|
|
1773
1779
|
param: string;
|
package/package.json
CHANGED