@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.
- package/dist/browser/index.cjs +4 -3
- package/dist/browser/index.mjs +4 -3
- package/dist/cjs/naylence/fame/node/admission/admission-profile-factory.js +2 -1
- package/dist/cjs/version.js +2 -2
- package/dist/esm/naylence/fame/node/admission/admission-profile-factory.js +2 -1
- package/dist/esm/version.js +2 -2
- package/dist/node/index.cjs +4 -3
- package/dist/node/index.mjs +4 -3
- package/dist/node/node.cjs +4 -3
- package/dist/node/node.mjs +4 -3
- package/dist/types/version.d.ts +1 -1
- package/package.json +1 -1
package/dist/browser/index.cjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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];
|
package/dist/browser/index.mjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
262
|
+
const normalizedProfile = profileValue.trim().toLowerCase();
|
|
263
|
+
return { profile: normalizedProfile };
|
|
263
264
|
}
|
|
264
265
|
function resolveProfileConfig(profileName) {
|
|
265
266
|
const profile = PROFILE_MAP[profileName];
|
package/dist/cjs/version.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
258
|
+
const normalizedProfile = profileValue.trim().toLowerCase();
|
|
259
|
+
return { profile: normalizedProfile };
|
|
259
260
|
}
|
|
260
261
|
function resolveProfileConfig(profileName) {
|
|
261
262
|
const profile = PROFILE_MAP[profileName];
|
package/dist/esm/version.js
CHANGED
|
@@ -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.
|
|
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.
|
|
7
|
+
export const VERSION = '0.3.5-test.916';
|
package/dist/node/index.cjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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];
|
package/dist/node/index.mjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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];
|
package/dist/node/node.cjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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];
|
package/dist/node/node.mjs
CHANGED
|
@@ -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.
|
|
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.
|
|
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
|
-
|
|
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];
|
package/dist/types/version.d.ts
CHANGED