@naylence/runtime 0.3.5-test.915 → 0.3.5-test.916

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.
@@ -98,12 +98,12 @@ installProcessEnvShim();
98
98
  // --- END ENV SHIM ---
99
99
 
100
100
  // This file is auto-generated during build - do not edit manually
101
- // Generated from package.json version: 0.3.5-test.915
101
+ // Generated from package.json version: 0.3.5-test.916
102
102
  /**
103
103
  * The package version, injected at build time.
104
104
  * @internal
105
105
  */
106
- const VERSION = '0.3.5-test.915';
106
+ const VERSION = '0.3.5-test.916';
107
107
 
108
108
  /**
109
109
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -31987,7 +31987,8 @@ function normalizeConfig$m(config) {
31987
31987
  candidate.profileName.trim().length > 0
31988
31988
  ? candidate.profileName
31989
31989
  : PROFILE_NAME_DIRECT;
31990
- return { profile: profileValue.toLowerCase() };
31990
+ const normalizedProfile = profileValue.trim().toLowerCase();
31991
+ return { profile: normalizedProfile };
31991
31992
  }
31992
31993
  function resolveProfileConfig(profileName) {
31993
31994
  const profile = PROFILE_MAP$1[profileName];
@@ -96,12 +96,12 @@ installProcessEnvShim();
96
96
  // --- END ENV SHIM ---
97
97
 
98
98
  // This file is auto-generated during build - do not edit manually
99
- // Generated from package.json version: 0.3.5-test.915
99
+ // Generated from package.json version: 0.3.5-test.916
100
100
  /**
101
101
  * The package version, injected at build time.
102
102
  * @internal
103
103
  */
104
- const VERSION = '0.3.5-test.915';
104
+ const VERSION = '0.3.5-test.916';
105
105
 
106
106
  /**
107
107
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -31985,7 +31985,8 @@ function normalizeConfig$m(config) {
31985
31985
  candidate.profileName.trim().length > 0
31986
31986
  ? candidate.profileName
31987
31987
  : PROFILE_NAME_DIRECT;
31988
- return { profile: profileValue.toLowerCase() };
31988
+ const normalizedProfile = profileValue.trim().toLowerCase();
31989
+ return { profile: normalizedProfile };
31989
31990
  }
31990
31991
  function resolveProfileConfig(profileName) {
31991
31992
  const profile = PROFILE_MAP$1[profileName];
@@ -259,7 +259,8 @@ function normalizeConfig(config) {
259
259
  candidate.profileName.trim().length > 0
260
260
  ? candidate.profileName
261
261
  : PROFILE_NAME_DIRECT;
262
- return { profile: profileValue.toLowerCase() };
262
+ const normalizedProfile = profileValue.trim().toLowerCase();
263
+ return { profile: normalizedProfile };
263
264
  }
264
265
  function resolveProfileConfig(profileName) {
265
266
  const profile = PROFILE_MAP[profileName];
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  // This file is auto-generated during build - do not edit manually
3
- // Generated from package.json version: 0.3.5-test.915
3
+ // Generated from package.json version: 0.3.5-test.916
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
5
  exports.VERSION = void 0;
6
6
  /**
7
7
  * The package version, injected at build time.
8
8
  * @internal
9
9
  */
10
- exports.VERSION = '0.3.5-test.915';
10
+ exports.VERSION = '0.3.5-test.916';
@@ -255,7 +255,8 @@ function normalizeConfig(config) {
255
255
  candidate.profileName.trim().length > 0
256
256
  ? candidate.profileName
257
257
  : PROFILE_NAME_DIRECT;
258
- return { profile: profileValue.toLowerCase() };
258
+ const normalizedProfile = profileValue.trim().toLowerCase();
259
+ return { profile: normalizedProfile };
259
260
  }
260
261
  function resolveProfileConfig(profileName) {
261
262
  const profile = PROFILE_MAP[profileName];
@@ -1,7 +1,7 @@
1
1
  // This file is auto-generated during build - do not edit manually
2
- // Generated from package.json version: 0.3.5-test.915
2
+ // Generated from package.json version: 0.3.5-test.916
3
3
  /**
4
4
  * The package version, injected at build time.
5
5
  * @internal
6
6
  */
7
- export const VERSION = '0.3.5-test.915';
7
+ export const VERSION = '0.3.5-test.916';
@@ -14,12 +14,12 @@ var websocketPlugin = require('@fastify/websocket');
14
14
  var ed25519 = require('@noble/ed25519');
15
15
 
16
16
  // This file is auto-generated during build - do not edit manually
17
- // Generated from package.json version: 0.3.5-test.915
17
+ // Generated from package.json version: 0.3.5-test.916
18
18
  /**
19
19
  * The package version, injected at build time.
20
20
  * @internal
21
21
  */
22
- const VERSION = '0.3.5-test.915';
22
+ const VERSION = '0.3.5-test.916';
23
23
 
24
24
  /**
25
25
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -30709,7 +30709,8 @@ function normalizeConfig$m(config) {
30709
30709
  candidate.profileName.trim().length > 0
30710
30710
  ? candidate.profileName
30711
30711
  : PROFILE_NAME_DIRECT;
30712
- return { profile: profileValue.toLowerCase() };
30712
+ const normalizedProfile = profileValue.trim().toLowerCase();
30713
+ return { profile: normalizedProfile };
30713
30714
  }
30714
30715
  function resolveProfileConfig(profileName) {
30715
30716
  const profile = PROFILE_MAP$1[profileName];
@@ -13,12 +13,12 @@ import websocketPlugin from '@fastify/websocket';
13
13
  import { sign, hashes, verify } from '@noble/ed25519';
14
14
 
15
15
  // This file is auto-generated during build - do not edit manually
16
- // Generated from package.json version: 0.3.5-test.915
16
+ // Generated from package.json version: 0.3.5-test.916
17
17
  /**
18
18
  * The package version, injected at build time.
19
19
  * @internal
20
20
  */
21
- const VERSION = '0.3.5-test.915';
21
+ const VERSION = '0.3.5-test.916';
22
22
 
23
23
  /**
24
24
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -30708,7 +30708,8 @@ function normalizeConfig$m(config) {
30708
30708
  candidate.profileName.trim().length > 0
30709
30709
  ? candidate.profileName
30710
30710
  : PROFILE_NAME_DIRECT;
30711
- return { profile: profileValue.toLowerCase() };
30711
+ const normalizedProfile = profileValue.trim().toLowerCase();
30712
+ return { profile: normalizedProfile };
30712
30713
  }
30713
30714
  function resolveProfileConfig(profileName) {
30714
30715
  const profile = PROFILE_MAP$1[profileName];
@@ -5364,12 +5364,12 @@ for (const [name, config] of Object.entries(SQLITE_PROFILES)) {
5364
5364
  }
5365
5365
 
5366
5366
  // This file is auto-generated during build - do not edit manually
5367
- // Generated from package.json version: 0.3.5-test.915
5367
+ // Generated from package.json version: 0.3.5-test.916
5368
5368
  /**
5369
5369
  * The package version, injected at build time.
5370
5370
  * @internal
5371
5371
  */
5372
- const VERSION = '0.3.5-test.915';
5372
+ const VERSION = '0.3.5-test.916';
5373
5373
 
5374
5374
  /**
5375
5375
  * Fame errors module - Fame protocol specific error classes
@@ -35269,7 +35269,8 @@ function normalizeConfig$m(config) {
35269
35269
  candidate.profileName.trim().length > 0
35270
35270
  ? candidate.profileName
35271
35271
  : PROFILE_NAME_DIRECT;
35272
- return { profile: profileValue.toLowerCase() };
35272
+ const normalizedProfile = profileValue.trim().toLowerCase();
35273
+ return { profile: normalizedProfile };
35273
35274
  }
35274
35275
  function resolveProfileConfig(profileName) {
35275
35276
  const profile = PROFILE_MAP$1[profileName];
@@ -5363,12 +5363,12 @@ for (const [name, config] of Object.entries(SQLITE_PROFILES)) {
5363
5363
  }
5364
5364
 
5365
5365
  // This file is auto-generated during build - do not edit manually
5366
- // Generated from package.json version: 0.3.5-test.915
5366
+ // Generated from package.json version: 0.3.5-test.916
5367
5367
  /**
5368
5368
  * The package version, injected at build time.
5369
5369
  * @internal
5370
5370
  */
5371
- const VERSION = '0.3.5-test.915';
5371
+ const VERSION = '0.3.5-test.916';
5372
5372
 
5373
5373
  /**
5374
5374
  * Fame errors module - Fame protocol specific error classes
@@ -35268,7 +35268,8 @@ function normalizeConfig$m(config) {
35268
35268
  candidate.profileName.trim().length > 0
35269
35269
  ? candidate.profileName
35270
35270
  : PROFILE_NAME_DIRECT;
35271
- return { profile: profileValue.toLowerCase() };
35271
+ const normalizedProfile = profileValue.trim().toLowerCase();
35272
+ return { profile: normalizedProfile };
35272
35273
  }
35273
35274
  function resolveProfileConfig(profileName) {
35274
35275
  const profile = PROFILE_MAP$1[profileName];
@@ -2,4 +2,4 @@
2
2
  * The package version, injected at build time.
3
3
  * @internal
4
4
  */
5
- export declare const VERSION = "0.3.5-test.915";
5
+ export declare const VERSION = "0.3.5-test.916";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naylence/runtime",
3
- "version": "0.3.5-test.915",
3
+ "version": "0.3.5-test.916",
4
4
  "type": "module",
5
5
  "description": "Naylence Runtime - Complete TypeScript runtime",
6
6
  "author": "Naylence Dev <naylencedev@gmail.com>",