@naylence/agent-sdk 0.3.4-test.715 → 0.3.4-test.716

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.
@@ -15671,12 +15671,12 @@
15671
15671
  // --- END ENV SHIM ---
15672
15672
 
15673
15673
  // This file is auto-generated during build - do not edit manually
15674
- // Generated from package.json version: 0.3.5-test.915
15674
+ // Generated from package.json version: 0.3.5-test.916
15675
15675
  /**
15676
15676
  * The package version, injected at build time.
15677
15677
  * @internal
15678
15678
  */
15679
- const VERSION$1 = '0.3.5-test.915';
15679
+ const VERSION$1 = '0.3.5-test.916';
15680
15680
 
15681
15681
  /**
15682
15682
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -45942,7 +45942,8 @@
45942
45942
  candidate.profileName.trim().length > 0
45943
45943
  ? candidate.profileName
45944
45944
  : PROFILE_NAME_DIRECT;
45945
- return { profile: profileValue.toLowerCase() };
45945
+ const normalizedProfile = profileValue.trim().toLowerCase();
45946
+ return { profile: normalizedProfile };
45946
45947
  }
45947
45948
  function resolveProfileConfig(profileName) {
45948
45949
  const profile = PROFILE_MAP$1[profileName];