@atlaskit/tmp-editor-statsig 127.1.0 → 127.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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 127.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`feba1b79f0baf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/feba1b79f0baf) -
8
+ Add pre-auth inline Smart Link CTA 'Preview' experiment (ROVOGROWTH-635).
9
+
10
+ When the `rovogrowth-635-pre-auth-cta-preview-fg` feature gate is enabled and the user is in the
11
+ experiment treatment, the connect button on unauthorised inline Smart Links shows 'Preview'
12
+ instead of the provider-specific 'Connect your {provider} account' label.
13
+
14
+ Feature gate is off by default — safe to merge dark.
15
+
16
+ Consumers can check the new experiment config entry with `editorExperiments`:
17
+
18
+ ```ts
19
+ editorExperiments('rovogrowth-635-pre-auth-cta-preview-exp', 'isEnabled');
20
+ ```
21
+
3
22
  ## 127.1.0
4
23
 
5
24
  ### Minor Changes
@@ -1104,6 +1104,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1104
1104
  param: 'isEnabled',
1105
1105
  defaultValue: false
1106
1106
  }),
1107
+ // Added 2026-05-11 — Pre-auth inline CTA 'Preview' experiment for unauthorised 3P inline smart links
1108
+ 'rovogrowth-635-pre-auth-cta-preview-exp': (0, _experimentBuilders.createBooleanExperiment)({
1109
+ productKeys: {
1110
+ confluence: 'rovogrowth-635-pre-auth-cta-preview-exp',
1111
+ jira: 'rovogrowth-635-pre-auth-cta-preview-exp'
1112
+ },
1113
+ param: 'isEnabled',
1114
+ defaultValue: false
1115
+ }),
1107
1116
  // Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
1108
1117
  platform_sl_3p_preauth_social_proof_inline_cta: (0, _experimentBuilders.createBooleanExperiment)({
1109
1118
  productKeys: {
@@ -1098,6 +1098,15 @@ export const editorExperimentsConfig = {
1098
1098
  param: 'isEnabled',
1099
1099
  defaultValue: false
1100
1100
  }),
1101
+ // Added 2026-05-11 — Pre-auth inline CTA 'Preview' experiment for unauthorised 3P inline smart links
1102
+ 'rovogrowth-635-pre-auth-cta-preview-exp': createBooleanExperiment({
1103
+ productKeys: {
1104
+ confluence: 'rovogrowth-635-pre-auth-cta-preview-exp',
1105
+ jira: 'rovogrowth-635-pre-auth-cta-preview-exp'
1106
+ },
1107
+ param: 'isEnabled',
1108
+ defaultValue: false
1109
+ }),
1101
1110
  // Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
1102
1111
  platform_sl_3p_preauth_social_proof_inline_cta: createBooleanExperiment({
1103
1112
  productKeys: {
@@ -1098,6 +1098,15 @@ export var editorExperimentsConfig = {
1098
1098
  param: 'isEnabled',
1099
1099
  defaultValue: false
1100
1100
  }),
1101
+ // Added 2026-05-11 — Pre-auth inline CTA 'Preview' experiment for unauthorised 3P inline smart links
1102
+ 'rovogrowth-635-pre-auth-cta-preview-exp': createBooleanExperiment({
1103
+ productKeys: {
1104
+ confluence: 'rovogrowth-635-pre-auth-cta-preview-exp',
1105
+ jira: 'rovogrowth-635-pre-auth-cta-preview-exp'
1106
+ },
1107
+ param: 'isEnabled',
1108
+ defaultValue: false
1109
+ }),
1101
1110
  // Added 2026-04-29 — Social proof inline CTA for unauthorised 3P inline smart links
1102
1111
  platform_sl_3p_preauth_social_proof_inline_cta: createBooleanExperiment({
1103
1112
  productKeys: {
@@ -750,6 +750,12 @@ export declare const editorExperimentsConfig: {
750
750
  productKeys?: ProductKeys;
751
751
  typeGuard: IsBooleanType;
752
752
  };
753
+ 'rovogrowth-635-pre-auth-cta-preview-exp': {
754
+ defaultValue: boolean;
755
+ param: string;
756
+ productKeys?: ProductKeys;
757
+ typeGuard: IsBooleanType;
758
+ };
753
759
  platform_sl_3p_preauth_social_proof_inline_cta: {
754
760
  defaultValue: boolean;
755
761
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "127.1.0",
3
+ "version": "127.2.0",
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",