@naylence/runtime 0.3.5-test.945 → 0.3.5-test.946

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.945
101
+ // Generated from package.json version: 0.3.5-test.946
102
102
  /**
103
103
  * The package version, injected at build time.
104
104
  * @internal
105
105
  */
106
- const VERSION = '0.3.5-test.945';
106
+ const VERSION = '0.3.5-test.946';
107
107
 
108
108
  /**
109
109
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -30061,13 +30061,18 @@ class BroadcastChannelListener extends TransportListener {
30061
30061
  });
30062
30062
  }
30063
30063
  asCallbackGrant() {
30064
- return this.withLegacySnakeCaseKeys({
30064
+ const grant = {
30065
30065
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE,
30066
30066
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE,
30067
30067
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
30068
30068
  channelName: this._channelName,
30069
30069
  inboxCapacity: this._inboxCapacity,
30070
- });
30070
+ };
30071
+ // Include localNodeId for transport frame multiplexing if node is available
30072
+ if (this._routingNode) {
30073
+ grant.localNodeId = this._routingNode.id;
30074
+ }
30075
+ return this.withLegacySnakeCaseKeys(grant);
30071
30076
  }
30072
30077
  _registerChannelListener() {
30073
30078
  if (this._channelHandler) {
@@ -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.945
99
+ // Generated from package.json version: 0.3.5-test.946
100
100
  /**
101
101
  * The package version, injected at build time.
102
102
  * @internal
103
103
  */
104
- const VERSION = '0.3.5-test.945';
104
+ const VERSION = '0.3.5-test.946';
105
105
 
106
106
  /**
107
107
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -30059,13 +30059,18 @@ class BroadcastChannelListener extends TransportListener {
30059
30059
  });
30060
30060
  }
30061
30061
  asCallbackGrant() {
30062
- return this.withLegacySnakeCaseKeys({
30062
+ const grant = {
30063
30063
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE,
30064
30064
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE,
30065
30065
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
30066
30066
  channelName: this._channelName,
30067
30067
  inboxCapacity: this._inboxCapacity,
30068
- });
30068
+ };
30069
+ // Include localNodeId for transport frame multiplexing if node is available
30070
+ if (this._routingNode) {
30071
+ grant.localNodeId = this._routingNode.id;
30072
+ }
30073
+ return this.withLegacySnakeCaseKeys(grant);
30069
30074
  }
30070
30075
  _registerChannelListener() {
30071
30076
  if (this._channelHandler) {
@@ -142,13 +142,18 @@ class BroadcastChannelListener extends transport_listener_js_1.TransportListener
142
142
  });
143
143
  }
144
144
  asCallbackGrant() {
145
- return this.withLegacySnakeCaseKeys({
145
+ const grant = {
146
146
  type: broadcast_channel_connector_js_1.BROADCAST_CHANNEL_CONNECTOR_TYPE,
147
147
  connectorType: broadcast_channel_connector_js_1.BROADCAST_CHANNEL_CONNECTOR_TYPE,
148
148
  connectionGrantType: broadcast_channel_connection_grant_js_1.BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
149
149
  channelName: this._channelName,
150
150
  inboxCapacity: this._inboxCapacity,
151
- });
151
+ };
152
+ // Include localNodeId for transport frame multiplexing if node is available
153
+ if (this._routingNode) {
154
+ grant.localNodeId = this._routingNode.id;
155
+ }
156
+ return this.withLegacySnakeCaseKeys(grant);
152
157
  }
153
158
  _registerChannelListener() {
154
159
  if (this._channelHandler) {
@@ -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.945
3
+ // Generated from package.json version: 0.3.5-test.946
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.945';
10
+ exports.VERSION = '0.3.5-test.946';
@@ -138,13 +138,18 @@ export class BroadcastChannelListener extends TransportListener {
138
138
  });
139
139
  }
140
140
  asCallbackGrant() {
141
- return this.withLegacySnakeCaseKeys({
141
+ const grant = {
142
142
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE,
143
143
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE,
144
144
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
145
145
  channelName: this._channelName,
146
146
  inboxCapacity: this._inboxCapacity,
147
- });
147
+ };
148
+ // Include localNodeId for transport frame multiplexing if node is available
149
+ if (this._routingNode) {
150
+ grant.localNodeId = this._routingNode.id;
151
+ }
152
+ return this.withLegacySnakeCaseKeys(grant);
148
153
  }
149
154
  _registerChannelListener() {
150
155
  if (this._channelHandler) {
@@ -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.945
2
+ // Generated from package.json version: 0.3.5-test.946
3
3
  /**
4
4
  * The package version, injected at build time.
5
5
  * @internal
6
6
  */
7
- export const VERSION = '0.3.5-test.945';
7
+ export const VERSION = '0.3.5-test.946';
@@ -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.945
17
+ // Generated from package.json version: 0.3.5-test.946
18
18
  /**
19
19
  * The package version, injected at build time.
20
20
  * @internal
21
21
  */
22
- const VERSION = '0.3.5-test.945';
22
+ const VERSION = '0.3.5-test.946';
23
23
 
24
24
  /**
25
25
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -36242,13 +36242,18 @@ class BroadcastChannelListener extends TransportListener {
36242
36242
  });
36243
36243
  }
36244
36244
  asCallbackGrant() {
36245
- return this.withLegacySnakeCaseKeys({
36245
+ const grant = {
36246
36246
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE,
36247
36247
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE,
36248
36248
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
36249
36249
  channelName: this._channelName,
36250
36250
  inboxCapacity: this._inboxCapacity,
36251
- });
36251
+ };
36252
+ // Include localNodeId for transport frame multiplexing if node is available
36253
+ if (this._routingNode) {
36254
+ grant.localNodeId = this._routingNode.id;
36255
+ }
36256
+ return this.withLegacySnakeCaseKeys(grant);
36252
36257
  }
36253
36258
  _registerChannelListener() {
36254
36259
  if (this._channelHandler) {
@@ -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.945
16
+ // Generated from package.json version: 0.3.5-test.946
17
17
  /**
18
18
  * The package version, injected at build time.
19
19
  * @internal
20
20
  */
21
- const VERSION = '0.3.5-test.945';
21
+ const VERSION = '0.3.5-test.946';
22
22
 
23
23
  /**
24
24
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -36241,13 +36241,18 @@ class BroadcastChannelListener extends TransportListener {
36241
36241
  });
36242
36242
  }
36243
36243
  asCallbackGrant() {
36244
- return this.withLegacySnakeCaseKeys({
36244
+ const grant = {
36245
36245
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE,
36246
36246
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE,
36247
36247
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
36248
36248
  channelName: this._channelName,
36249
36249
  inboxCapacity: this._inboxCapacity,
36250
- });
36250
+ };
36251
+ // Include localNodeId for transport frame multiplexing if node is available
36252
+ if (this._routingNode) {
36253
+ grant.localNodeId = this._routingNode.id;
36254
+ }
36255
+ return this.withLegacySnakeCaseKeys(grant);
36251
36256
  }
36252
36257
  _registerChannelListener() {
36253
36258
  if (this._channelHandler) {
@@ -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.945
5481
+ // Generated from package.json version: 0.3.5-test.946
5482
5482
  /**
5483
5483
  * The package version, injected at build time.
5484
5484
  * @internal
5485
5485
  */
5486
- const VERSION = '0.3.5-test.945';
5486
+ const VERSION = '0.3.5-test.946';
5487
5487
 
5488
5488
  /**
5489
5489
  * Fame errors module - Fame protocol specific error classes
@@ -32818,13 +32818,18 @@ class BroadcastChannelListener extends TransportListener {
32818
32818
  });
32819
32819
  }
32820
32820
  asCallbackGrant() {
32821
- return this.withLegacySnakeCaseKeys({
32821
+ const grant = {
32822
32822
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE$1,
32823
32823
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE$1,
32824
32824
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
32825
32825
  channelName: this._channelName,
32826
32826
  inboxCapacity: this._inboxCapacity,
32827
- });
32827
+ };
32828
+ // Include localNodeId for transport frame multiplexing if node is available
32829
+ if (this._routingNode) {
32830
+ grant.localNodeId = this._routingNode.id;
32831
+ }
32832
+ return this.withLegacySnakeCaseKeys(grant);
32828
32833
  }
32829
32834
  _registerChannelListener() {
32830
32835
  if (this._channelHandler) {
@@ -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.945
5480
+ // Generated from package.json version: 0.3.5-test.946
5481
5481
  /**
5482
5482
  * The package version, injected at build time.
5483
5483
  * @internal
5484
5484
  */
5485
- const VERSION = '0.3.5-test.945';
5485
+ const VERSION = '0.3.5-test.946';
5486
5486
 
5487
5487
  /**
5488
5488
  * Fame errors module - Fame protocol specific error classes
@@ -32817,13 +32817,18 @@ class BroadcastChannelListener extends TransportListener {
32817
32817
  });
32818
32818
  }
32819
32819
  asCallbackGrant() {
32820
- return this.withLegacySnakeCaseKeys({
32820
+ const grant = {
32821
32821
  type: BROADCAST_CHANNEL_CONNECTOR_TYPE$1,
32822
32822
  connectorType: BROADCAST_CHANNEL_CONNECTOR_TYPE$1,
32823
32823
  connectionGrantType: BROADCAST_CHANNEL_CONNECTION_GRANT_TYPE,
32824
32824
  channelName: this._channelName,
32825
32825
  inboxCapacity: this._inboxCapacity,
32826
- });
32826
+ };
32827
+ // Include localNodeId for transport frame multiplexing if node is available
32828
+ if (this._routingNode) {
32829
+ grant.localNodeId = this._routingNode.id;
32830
+ }
32831
+ return this.withLegacySnakeCaseKeys(grant);
32827
32832
  }
32828
32833
  _registerChannelListener() {
32829
32834
  if (this._channelHandler) {
@@ -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.945";
5
+ export declare const VERSION = "0.3.5-test.946";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naylence/runtime",
3
- "version": "0.3.5-test.945",
3
+ "version": "0.3.5-test.946",
4
4
  "type": "module",
5
5
  "description": "Naylence Runtime - Complete TypeScript runtime",
6
6
  "author": "Naylence Dev <naylencedev@gmail.com>",