npm package diff

Package: @forge/cli-shared

Versions: 6.4.0-next.11 - 6.4.0-next.12

File: package/out/service/statsig-service.js

Index: package/out/service/statsig-service.js
===================================================================
--- package/out/service/statsig-service.js
+++ package/out/service/statsig-service.js
@@ -5,11 +5,8 @@
 class StatsigReader {
     async testForgeCliTestGate() {
         return (await this.checkGate('forge-cli-test-gate')) ?? false;
     }
-    async testForgeCliBundleRuntimeLoaderGate() {
-        return (await this.checkGate('forge-cli-bundle-runtime-loader')) ?? false;
-    }
     async getForgeCliTestDynamicConfig() {
         return (await this.getDynamicConfig('forge-cli-test-dynamic-configs')) ?? { value: [] };
     }
     async isLogsV2ApiEnabled() {
@@ -17,8 +14,11 @@
     }
     async isAtlasProductSupported() {
         return (await this.checkGate('forge-cli-enable-atlas-product-support')) ?? false;
     }
+    async testForgeCliBundleRuntimeLoaderGate() {
+        return (await this.checkGate('forge-cli-bundle-runtime-loader')) ?? false;
+    }
 }
 exports.StatsigReader = StatsigReader;
 var STATSIG_API_KEYS;
 (function (STATSIG_API_KEYS) {
@@ -107,9 +107,11 @@
                         atlassianAccountId: context.accountId
                     },
                     customAttributes: {
                         appId: context.appId,
-                        version: context.version
+                        version: context.version,
+                        atlassianAccountId: context.accountId,
+                        ...customAttributes
                     },
                     targetApp: 'forge_cli'
                 })
             });
@@ -136,9 +138,11 @@
                         atlassianAccountId: context.accountId
                     },
                     metadata: {
                         appId: context.appId,
-                        version: context.version
+                        version: context.version,
+                        atlassianAccountId: context.accountId,
+                        ...metadata
                     },
                     namespace: 'forge_cli'
                 })
             });