@naylence/runtime 0.3.5-test.944 → 0.3.5-test.945
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 +10 -7
- package/dist/browser/index.mjs +10 -7
- package/dist/cjs/naylence/fame/connector/broadcast-channel-listener.js +8 -5
- package/dist/cjs/version.js +2 -2
- package/dist/esm/naylence/fame/connector/broadcast-channel-listener.js +8 -5
- package/dist/esm/version.js +2 -2
- package/dist/node/index.cjs +10 -7
- package/dist/node/index.mjs +10 -7
- package/dist/node/node.cjs +10 -7
- package/dist/node/node.mjs +10 -7
- 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.945
|
|
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.945';
|
|
107
107
|
|
|
108
108
|
/**
|
|
109
109
|
* Fame protocol specific error classes with WebSocket close codes and proper inheritance.
|
|
@@ -30264,15 +30264,18 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
30264
30264
|
};
|
|
30265
30265
|
}
|
|
30266
30266
|
// Automatically configure transport frame multiplexing:
|
|
30267
|
-
//
|
|
30267
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
30268
30268
|
const broadcastConfig = connectorConfig;
|
|
30269
|
+
if (!broadcastConfig.localNodeId) {
|
|
30270
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
30271
|
+
}
|
|
30269
30272
|
if (!broadcastConfig.remoteNodeId) {
|
|
30270
|
-
broadcastConfig.remoteNodeId =
|
|
30273
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
30271
30274
|
logger$o.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
30272
30275
|
sender_id: params.senderId,
|
|
30273
30276
|
system_id: systemId,
|
|
30274
|
-
remote_node_id:
|
|
30275
|
-
local_node_id: broadcastConfig.localNodeId
|
|
30277
|
+
remote_node_id: systemId,
|
|
30278
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
30276
30279
|
});
|
|
30277
30280
|
}
|
|
30278
30281
|
else {
|
|
@@ -30280,7 +30283,7 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
30280
30283
|
sender_id: params.senderId,
|
|
30281
30284
|
system_id: systemId,
|
|
30282
30285
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
30283
|
-
local_node_id: broadcastConfig.localNodeId
|
|
30286
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
30284
30287
|
});
|
|
30285
30288
|
}
|
|
30286
30289
|
try {
|
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.945
|
|
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.945';
|
|
105
105
|
|
|
106
106
|
/**
|
|
107
107
|
* Fame protocol specific error classes with WebSocket close codes and proper inheritance.
|
|
@@ -30262,15 +30262,18 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
30262
30262
|
};
|
|
30263
30263
|
}
|
|
30264
30264
|
// Automatically configure transport frame multiplexing:
|
|
30265
|
-
//
|
|
30265
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
30266
30266
|
const broadcastConfig = connectorConfig;
|
|
30267
|
+
if (!broadcastConfig.localNodeId) {
|
|
30268
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
30269
|
+
}
|
|
30267
30270
|
if (!broadcastConfig.remoteNodeId) {
|
|
30268
|
-
broadcastConfig.remoteNodeId =
|
|
30271
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
30269
30272
|
logger$o.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
30270
30273
|
sender_id: params.senderId,
|
|
30271
30274
|
system_id: systemId,
|
|
30272
|
-
remote_node_id:
|
|
30273
|
-
local_node_id: broadcastConfig.localNodeId
|
|
30275
|
+
remote_node_id: systemId,
|
|
30276
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
30274
30277
|
});
|
|
30275
30278
|
}
|
|
30276
30279
|
else {
|
|
@@ -30278,7 +30281,7 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
30278
30281
|
sender_id: params.senderId,
|
|
30279
30282
|
system_id: systemId,
|
|
30280
30283
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
30281
|
-
local_node_id: broadcastConfig.localNodeId
|
|
30284
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
30282
30285
|
});
|
|
30283
30286
|
}
|
|
30284
30287
|
try {
|
|
@@ -345,15 +345,18 @@ class BroadcastChannelListener extends transport_listener_js_1.TransportListener
|
|
|
345
345
|
};
|
|
346
346
|
}
|
|
347
347
|
// Automatically configure transport frame multiplexing:
|
|
348
|
-
//
|
|
348
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
349
349
|
const broadcastConfig = connectorConfig;
|
|
350
|
+
if (!broadcastConfig.localNodeId) {
|
|
351
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
352
|
+
}
|
|
350
353
|
if (!broadcastConfig.remoteNodeId) {
|
|
351
|
-
broadcastConfig.remoteNodeId =
|
|
354
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
352
355
|
logger.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
353
356
|
sender_id: params.senderId,
|
|
354
357
|
system_id: systemId,
|
|
355
|
-
remote_node_id:
|
|
356
|
-
local_node_id: broadcastConfig.localNodeId
|
|
358
|
+
remote_node_id: systemId,
|
|
359
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
357
360
|
});
|
|
358
361
|
}
|
|
359
362
|
else {
|
|
@@ -361,7 +364,7 @@ class BroadcastChannelListener extends transport_listener_js_1.TransportListener
|
|
|
361
364
|
sender_id: params.senderId,
|
|
362
365
|
system_id: systemId,
|
|
363
366
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
364
|
-
local_node_id: broadcastConfig.localNodeId
|
|
367
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
365
368
|
});
|
|
366
369
|
}
|
|
367
370
|
try {
|
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.945
|
|
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.945';
|
|
@@ -341,15 +341,18 @@ export class BroadcastChannelListener extends TransportListener {
|
|
|
341
341
|
};
|
|
342
342
|
}
|
|
343
343
|
// Automatically configure transport frame multiplexing:
|
|
344
|
-
//
|
|
344
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
345
345
|
const broadcastConfig = connectorConfig;
|
|
346
|
+
if (!broadcastConfig.localNodeId) {
|
|
347
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
348
|
+
}
|
|
346
349
|
if (!broadcastConfig.remoteNodeId) {
|
|
347
|
-
broadcastConfig.remoteNodeId =
|
|
350
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
348
351
|
logger.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
349
352
|
sender_id: params.senderId,
|
|
350
353
|
system_id: systemId,
|
|
351
|
-
remote_node_id:
|
|
352
|
-
local_node_id: broadcastConfig.localNodeId
|
|
354
|
+
remote_node_id: systemId,
|
|
355
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
353
356
|
});
|
|
354
357
|
}
|
|
355
358
|
else {
|
|
@@ -357,7 +360,7 @@ export class BroadcastChannelListener extends TransportListener {
|
|
|
357
360
|
sender_id: params.senderId,
|
|
358
361
|
system_id: systemId,
|
|
359
362
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
360
|
-
local_node_id: broadcastConfig.localNodeId
|
|
363
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
361
364
|
});
|
|
362
365
|
}
|
|
363
366
|
try {
|
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.945
|
|
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.945';
|
package/dist/node/index.cjs
CHANGED
|
@@ -14,12 +14,12 @@ var fastify = require('fastify');
|
|
|
14
14
|
var websocketPlugin = require('@fastify/websocket');
|
|
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.945
|
|
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.945';
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* Fame protocol specific error classes with WebSocket close codes and proper inheritance.
|
|
@@ -36445,15 +36445,18 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
36445
36445
|
};
|
|
36446
36446
|
}
|
|
36447
36447
|
// Automatically configure transport frame multiplexing:
|
|
36448
|
-
//
|
|
36448
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
36449
36449
|
const broadcastConfig = connectorConfig;
|
|
36450
|
+
if (!broadcastConfig.localNodeId) {
|
|
36451
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
36452
|
+
}
|
|
36450
36453
|
if (!broadcastConfig.remoteNodeId) {
|
|
36451
|
-
broadcastConfig.remoteNodeId =
|
|
36454
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
36452
36455
|
logger$a.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
36453
36456
|
sender_id: params.senderId,
|
|
36454
36457
|
system_id: systemId,
|
|
36455
|
-
remote_node_id:
|
|
36456
|
-
local_node_id: broadcastConfig.localNodeId
|
|
36458
|
+
remote_node_id: systemId,
|
|
36459
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
36457
36460
|
});
|
|
36458
36461
|
}
|
|
36459
36462
|
else {
|
|
@@ -36461,7 +36464,7 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
36461
36464
|
sender_id: params.senderId,
|
|
36462
36465
|
system_id: systemId,
|
|
36463
36466
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
36464
|
-
local_node_id: broadcastConfig.localNodeId
|
|
36467
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
36465
36468
|
});
|
|
36466
36469
|
}
|
|
36467
36470
|
try {
|
package/dist/node/index.mjs
CHANGED
|
@@ -13,12 +13,12 @@ import fastify from 'fastify';
|
|
|
13
13
|
import websocketPlugin from '@fastify/websocket';
|
|
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.945
|
|
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.945';
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
24
|
* Fame protocol specific error classes with WebSocket close codes and proper inheritance.
|
|
@@ -36444,15 +36444,18 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
36444
36444
|
};
|
|
36445
36445
|
}
|
|
36446
36446
|
// Automatically configure transport frame multiplexing:
|
|
36447
|
-
//
|
|
36447
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
36448
36448
|
const broadcastConfig = connectorConfig;
|
|
36449
|
+
if (!broadcastConfig.localNodeId) {
|
|
36450
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
36451
|
+
}
|
|
36449
36452
|
if (!broadcastConfig.remoteNodeId) {
|
|
36450
|
-
broadcastConfig.remoteNodeId =
|
|
36453
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
36451
36454
|
logger$a.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
36452
36455
|
sender_id: params.senderId,
|
|
36453
36456
|
system_id: systemId,
|
|
36454
|
-
remote_node_id:
|
|
36455
|
-
local_node_id: broadcastConfig.localNodeId
|
|
36457
|
+
remote_node_id: systemId,
|
|
36458
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
36456
36459
|
});
|
|
36457
36460
|
}
|
|
36458
36461
|
else {
|
|
@@ -36460,7 +36463,7 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
36460
36463
|
sender_id: params.senderId,
|
|
36461
36464
|
system_id: systemId,
|
|
36462
36465
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
36463
|
-
local_node_id: broadcastConfig.localNodeId
|
|
36466
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
36464
36467
|
});
|
|
36465
36468
|
}
|
|
36466
36469
|
try {
|
package/dist/node/node.cjs
CHANGED
|
@@ -5478,12 +5478,12 @@ for (const [name, config] of Object.entries(SQLITE_PROFILES)) {
|
|
|
5478
5478
|
}
|
|
5479
5479
|
|
|
5480
5480
|
// This file is auto-generated during build - do not edit manually
|
|
5481
|
-
// Generated from package.json version: 0.3.5-test.
|
|
5481
|
+
// Generated from package.json version: 0.3.5-test.945
|
|
5482
5482
|
/**
|
|
5483
5483
|
* The package version, injected at build time.
|
|
5484
5484
|
* @internal
|
|
5485
5485
|
*/
|
|
5486
|
-
const VERSION = '0.3.5-test.
|
|
5486
|
+
const VERSION = '0.3.5-test.945';
|
|
5487
5487
|
|
|
5488
5488
|
/**
|
|
5489
5489
|
* Fame errors module - Fame protocol specific error classes
|
|
@@ -33021,15 +33021,18 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
33021
33021
|
};
|
|
33022
33022
|
}
|
|
33023
33023
|
// Automatically configure transport frame multiplexing:
|
|
33024
|
-
//
|
|
33024
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
33025
33025
|
const broadcastConfig = connectorConfig;
|
|
33026
|
+
if (!broadcastConfig.localNodeId) {
|
|
33027
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
33028
|
+
}
|
|
33026
33029
|
if (!broadcastConfig.remoteNodeId) {
|
|
33027
|
-
broadcastConfig.remoteNodeId =
|
|
33030
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
33028
33031
|
logger$n.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
33029
33032
|
sender_id: params.senderId,
|
|
33030
33033
|
system_id: systemId,
|
|
33031
|
-
remote_node_id:
|
|
33032
|
-
local_node_id: broadcastConfig.localNodeId
|
|
33034
|
+
remote_node_id: systemId,
|
|
33035
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
33033
33036
|
});
|
|
33034
33037
|
}
|
|
33035
33038
|
else {
|
|
@@ -33037,7 +33040,7 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
33037
33040
|
sender_id: params.senderId,
|
|
33038
33041
|
system_id: systemId,
|
|
33039
33042
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
33040
|
-
local_node_id: broadcastConfig.localNodeId
|
|
33043
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
33041
33044
|
});
|
|
33042
33045
|
}
|
|
33043
33046
|
try {
|
package/dist/node/node.mjs
CHANGED
|
@@ -5477,12 +5477,12 @@ for (const [name, config] of Object.entries(SQLITE_PROFILES)) {
|
|
|
5477
5477
|
}
|
|
5478
5478
|
|
|
5479
5479
|
// This file is auto-generated during build - do not edit manually
|
|
5480
|
-
// Generated from package.json version: 0.3.5-test.
|
|
5480
|
+
// Generated from package.json version: 0.3.5-test.945
|
|
5481
5481
|
/**
|
|
5482
5482
|
* The package version, injected at build time.
|
|
5483
5483
|
* @internal
|
|
5484
5484
|
*/
|
|
5485
|
-
const VERSION = '0.3.5-test.
|
|
5485
|
+
const VERSION = '0.3.5-test.945';
|
|
5486
5486
|
|
|
5487
5487
|
/**
|
|
5488
5488
|
* Fame errors module - Fame protocol specific error classes
|
|
@@ -33020,15 +33020,18 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
33020
33020
|
};
|
|
33021
33021
|
}
|
|
33022
33022
|
// Automatically configure transport frame multiplexing:
|
|
33023
|
-
//
|
|
33023
|
+
// Use node IDs (not connector IDs) for node-to-node targeting
|
|
33024
33024
|
const broadcastConfig = connectorConfig;
|
|
33025
|
+
if (!broadcastConfig.localNodeId) {
|
|
33026
|
+
broadcastConfig.localNodeId = routingNode.id;
|
|
33027
|
+
}
|
|
33025
33028
|
if (!broadcastConfig.remoteNodeId) {
|
|
33026
|
-
broadcastConfig.remoteNodeId =
|
|
33029
|
+
broadcastConfig.remoteNodeId = systemId;
|
|
33027
33030
|
logger$n.debug('broadcast_channel_listener_auto_configured_remote_node_id', {
|
|
33028
33031
|
sender_id: params.senderId,
|
|
33029
33032
|
system_id: systemId,
|
|
33030
|
-
remote_node_id:
|
|
33031
|
-
local_node_id: broadcastConfig.localNodeId
|
|
33033
|
+
remote_node_id: systemId,
|
|
33034
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
33032
33035
|
});
|
|
33033
33036
|
}
|
|
33034
33037
|
else {
|
|
@@ -33036,7 +33039,7 @@ class BroadcastChannelListener extends TransportListener {
|
|
|
33036
33039
|
sender_id: params.senderId,
|
|
33037
33040
|
system_id: systemId,
|
|
33038
33041
|
remote_node_id: broadcastConfig.remoteNodeId,
|
|
33039
|
-
local_node_id: broadcastConfig.localNodeId
|
|
33042
|
+
local_node_id: broadcastConfig.localNodeId,
|
|
33040
33043
|
});
|
|
33041
33044
|
}
|
|
33042
33045
|
try {
|
package/dist/types/version.d.ts
CHANGED