@naylence/runtime 0.3.5-test.926 → 0.3.5-test.928

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.926
101
+ // Generated from package.json version: 0.3.5-test.928
102
102
  /**
103
103
  * The package version, injected at build time.
104
104
  * @internal
105
105
  */
106
- const VERSION = '0.3.5-test.926';
106
+ const VERSION = '0.3.5-test.928';
107
107
 
108
108
  /**
109
109
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -1189,12 +1189,26 @@ class TaskSpawner {
1189
1189
  });
1190
1190
  return;
1191
1191
  }
1192
- // All other exceptions are considered real failures
1193
- logger$1b.error('background_task_failed', {
1194
- task_name: taskName,
1195
- error: error.message,
1196
- stack: error.stack,
1197
- });
1192
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
1193
+ const isRetriableError = error.name === 'FameConnectError' ||
1194
+ error.message.includes('missed heartbeat') ||
1195
+ error.message.includes('Timeout waiting for');
1196
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
1197
+ // Log non-retriable errors as errors (fatal failures)
1198
+ if (isRetriableError) {
1199
+ logger$1b.warning('background_task_failed', {
1200
+ task_name: taskName,
1201
+ error: error.message,
1202
+ retriable: true,
1203
+ });
1204
+ }
1205
+ else {
1206
+ logger$1b.error('background_task_failed', {
1207
+ task_name: taskName,
1208
+ error: error.message,
1209
+ stack: error.stack,
1210
+ });
1211
+ }
1198
1212
  if (this._lastSpawnerError === null) {
1199
1213
  this._lastSpawnerError = error;
1200
1214
  }
@@ -10457,6 +10471,19 @@ class UpstreamSessionManager extends TaskSpawner {
10457
10471
  await connector.start(this.wrappedHandler);
10458
10472
  this.connector = connector;
10459
10473
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
10474
+ // Include admission client's connection grants as callback grants
10475
+ // This ensures DirectAdmissionClient grants are available for grant selection
10476
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
10477
+ for (const grant of welcome.frame.connectionGrants) {
10478
+ if (grant && typeof grant === 'object') {
10479
+ // Avoid duplicates by checking if grant already exists
10480
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
10481
+ if (!isDuplicate) {
10482
+ callbackGrants.push(grant);
10483
+ }
10484
+ }
10485
+ }
10486
+ }
10460
10487
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
10461
10488
  const augmented = this.createBroadcastCallbackGrant(grant);
10462
10489
  if (augmented) {
@@ -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.926
99
+ // Generated from package.json version: 0.3.5-test.928
100
100
  /**
101
101
  * The package version, injected at build time.
102
102
  * @internal
103
103
  */
104
- const VERSION = '0.3.5-test.926';
104
+ const VERSION = '0.3.5-test.928';
105
105
 
106
106
  /**
107
107
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -1187,12 +1187,26 @@ class TaskSpawner {
1187
1187
  });
1188
1188
  return;
1189
1189
  }
1190
- // All other exceptions are considered real failures
1191
- logger$1b.error('background_task_failed', {
1192
- task_name: taskName,
1193
- error: error.message,
1194
- stack: error.stack,
1195
- });
1190
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
1191
+ const isRetriableError = error.name === 'FameConnectError' ||
1192
+ error.message.includes('missed heartbeat') ||
1193
+ error.message.includes('Timeout waiting for');
1194
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
1195
+ // Log non-retriable errors as errors (fatal failures)
1196
+ if (isRetriableError) {
1197
+ logger$1b.warning('background_task_failed', {
1198
+ task_name: taskName,
1199
+ error: error.message,
1200
+ retriable: true,
1201
+ });
1202
+ }
1203
+ else {
1204
+ logger$1b.error('background_task_failed', {
1205
+ task_name: taskName,
1206
+ error: error.message,
1207
+ stack: error.stack,
1208
+ });
1209
+ }
1196
1210
  if (this._lastSpawnerError === null) {
1197
1211
  this._lastSpawnerError = error;
1198
1212
  }
@@ -10455,6 +10469,19 @@ class UpstreamSessionManager extends TaskSpawner {
10455
10469
  await connector.start(this.wrappedHandler);
10456
10470
  this.connector = connector;
10457
10471
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
10472
+ // Include admission client's connection grants as callback grants
10473
+ // This ensures DirectAdmissionClient grants are available for grant selection
10474
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
10475
+ for (const grant of welcome.frame.connectionGrants) {
10476
+ if (grant && typeof grant === 'object') {
10477
+ // Avoid duplicates by checking if grant already exists
10478
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
10479
+ if (!isDuplicate) {
10480
+ callbackGrants.push(grant);
10481
+ }
10482
+ }
10483
+ }
10484
+ }
10458
10485
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
10459
10486
  const augmented = this.createBroadcastCallbackGrant(grant);
10460
10487
  if (augmented) {
@@ -304,6 +304,19 @@ class UpstreamSessionManager extends task_spawner_js_1.TaskSpawner {
304
304
  await connector.start(this.wrappedHandler);
305
305
  this.connector = connector;
306
306
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
307
+ // Include admission client's connection grants as callback grants
308
+ // This ensures DirectAdmissionClient grants are available for grant selection
309
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
310
+ for (const grant of welcome.frame.connectionGrants) {
311
+ if (grant && typeof grant === 'object') {
312
+ // Avoid duplicates by checking if grant already exists
313
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
314
+ if (!isDuplicate) {
315
+ callbackGrants.push(grant);
316
+ }
317
+ }
318
+ }
319
+ }
307
320
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
308
321
  const augmented = this.createBroadcastCallbackGrant(grant);
309
322
  if (augmented) {
@@ -278,12 +278,26 @@ class TaskSpawner {
278
278
  });
279
279
  return;
280
280
  }
281
- // All other exceptions are considered real failures
282
- logger.error('background_task_failed', {
283
- task_name: taskName,
284
- error: error.message,
285
- stack: error.stack,
286
- });
281
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
282
+ const isRetriableError = error.name === 'FameConnectError' ||
283
+ error.message.includes('missed heartbeat') ||
284
+ error.message.includes('Timeout waiting for');
285
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
286
+ // Log non-retriable errors as errors (fatal failures)
287
+ if (isRetriableError) {
288
+ logger.warning('background_task_failed', {
289
+ task_name: taskName,
290
+ error: error.message,
291
+ retriable: true,
292
+ });
293
+ }
294
+ else {
295
+ logger.error('background_task_failed', {
296
+ task_name: taskName,
297
+ error: error.message,
298
+ stack: error.stack,
299
+ });
300
+ }
287
301
  if (this._lastSpawnerError === null) {
288
302
  this._lastSpawnerError = error;
289
303
  }
@@ -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.926
3
+ // Generated from package.json version: 0.3.5-test.928
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.926';
10
+ exports.VERSION = '0.3.5-test.928';
@@ -301,6 +301,19 @@ export class UpstreamSessionManager extends TaskSpawner {
301
301
  await connector.start(this.wrappedHandler);
302
302
  this.connector = connector;
303
303
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
304
+ // Include admission client's connection grants as callback grants
305
+ // This ensures DirectAdmissionClient grants are available for grant selection
306
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
307
+ for (const grant of welcome.frame.connectionGrants) {
308
+ if (grant && typeof grant === 'object') {
309
+ // Avoid duplicates by checking if grant already exists
310
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
311
+ if (!isDuplicate) {
312
+ callbackGrants.push(grant);
313
+ }
314
+ }
315
+ }
316
+ }
304
317
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
305
318
  const augmented = this.createBroadcastCallbackGrant(grant);
306
319
  if (augmented) {
@@ -275,12 +275,26 @@ export class TaskSpawner {
275
275
  });
276
276
  return;
277
277
  }
278
- // All other exceptions are considered real failures
279
- logger.error('background_task_failed', {
280
- task_name: taskName,
281
- error: error.message,
282
- stack: error.stack,
283
- });
278
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
279
+ const isRetriableError = error.name === 'FameConnectError' ||
280
+ error.message.includes('missed heartbeat') ||
281
+ error.message.includes('Timeout waiting for');
282
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
283
+ // Log non-retriable errors as errors (fatal failures)
284
+ if (isRetriableError) {
285
+ logger.warning('background_task_failed', {
286
+ task_name: taskName,
287
+ error: error.message,
288
+ retriable: true,
289
+ });
290
+ }
291
+ else {
292
+ logger.error('background_task_failed', {
293
+ task_name: taskName,
294
+ error: error.message,
295
+ stack: error.stack,
296
+ });
297
+ }
284
298
  if (this._lastSpawnerError === null) {
285
299
  this._lastSpawnerError = error;
286
300
  }
@@ -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.926
2
+ // Generated from package.json version: 0.3.5-test.928
3
3
  /**
4
4
  * The package version, injected at build time.
5
5
  * @internal
6
6
  */
7
- export const VERSION = '0.3.5-test.926';
7
+ export const VERSION = '0.3.5-test.928';
@@ -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.926
17
+ // Generated from package.json version: 0.3.5-test.928
18
18
  /**
19
19
  * The package version, injected at build time.
20
20
  * @internal
21
21
  */
22
- const VERSION = '0.3.5-test.926';
22
+ const VERSION = '0.3.5-test.928';
23
23
 
24
24
  /**
25
25
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -1105,12 +1105,26 @@ class TaskSpawner {
1105
1105
  });
1106
1106
  return;
1107
1107
  }
1108
- // All other exceptions are considered real failures
1109
- logger$1b.error('background_task_failed', {
1110
- task_name: taskName,
1111
- error: error.message,
1112
- stack: error.stack,
1113
- });
1108
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
1109
+ const isRetriableError = error.name === 'FameConnectError' ||
1110
+ error.message.includes('missed heartbeat') ||
1111
+ error.message.includes('Timeout waiting for');
1112
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
1113
+ // Log non-retriable errors as errors (fatal failures)
1114
+ if (isRetriableError) {
1115
+ logger$1b.warning('background_task_failed', {
1116
+ task_name: taskName,
1117
+ error: error.message,
1118
+ retriable: true,
1119
+ });
1120
+ }
1121
+ else {
1122
+ logger$1b.error('background_task_failed', {
1123
+ task_name: taskName,
1124
+ error: error.message,
1125
+ stack: error.stack,
1126
+ });
1127
+ }
1114
1128
  if (this._lastSpawnerError === null) {
1115
1129
  this._lastSpawnerError = error;
1116
1130
  }
@@ -10373,6 +10387,19 @@ class UpstreamSessionManager extends TaskSpawner {
10373
10387
  await connector.start(this.wrappedHandler);
10374
10388
  this.connector = connector;
10375
10389
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
10390
+ // Include admission client's connection grants as callback grants
10391
+ // This ensures DirectAdmissionClient grants are available for grant selection
10392
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
10393
+ for (const grant of welcome.frame.connectionGrants) {
10394
+ if (grant && typeof grant === 'object') {
10395
+ // Avoid duplicates by checking if grant already exists
10396
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
10397
+ if (!isDuplicate) {
10398
+ callbackGrants.push(grant);
10399
+ }
10400
+ }
10401
+ }
10402
+ }
10376
10403
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
10377
10404
  const augmented = this.createBroadcastCallbackGrant(grant);
10378
10405
  if (augmented) {
@@ -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.926
16
+ // Generated from package.json version: 0.3.5-test.928
17
17
  /**
18
18
  * The package version, injected at build time.
19
19
  * @internal
20
20
  */
21
- const VERSION = '0.3.5-test.926';
21
+ const VERSION = '0.3.5-test.928';
22
22
 
23
23
  /**
24
24
  * Fame protocol specific error classes with WebSocket close codes and proper inheritance.
@@ -1104,12 +1104,26 @@ class TaskSpawner {
1104
1104
  });
1105
1105
  return;
1106
1106
  }
1107
- // All other exceptions are considered real failures
1108
- logger$1b.error('background_task_failed', {
1109
- task_name: taskName,
1110
- error: error.message,
1111
- stack: error.stack,
1112
- });
1107
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
1108
+ const isRetriableError = error.name === 'FameConnectError' ||
1109
+ error.message.includes('missed heartbeat') ||
1110
+ error.message.includes('Timeout waiting for');
1111
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
1112
+ // Log non-retriable errors as errors (fatal failures)
1113
+ if (isRetriableError) {
1114
+ logger$1b.warning('background_task_failed', {
1115
+ task_name: taskName,
1116
+ error: error.message,
1117
+ retriable: true,
1118
+ });
1119
+ }
1120
+ else {
1121
+ logger$1b.error('background_task_failed', {
1122
+ task_name: taskName,
1123
+ error: error.message,
1124
+ stack: error.stack,
1125
+ });
1126
+ }
1113
1127
  if (this._lastSpawnerError === null) {
1114
1128
  this._lastSpawnerError = error;
1115
1129
  }
@@ -10372,6 +10386,19 @@ class UpstreamSessionManager extends TaskSpawner {
10372
10386
  await connector.start(this.wrappedHandler);
10373
10387
  this.connector = connector;
10374
10388
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
10389
+ // Include admission client's connection grants as callback grants
10390
+ // This ensures DirectAdmissionClient grants are available for grant selection
10391
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
10392
+ for (const grant of welcome.frame.connectionGrants) {
10393
+ if (grant && typeof grant === 'object') {
10394
+ // Avoid duplicates by checking if grant already exists
10395
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
10396
+ if (!isDuplicate) {
10397
+ callbackGrants.push(grant);
10398
+ }
10399
+ }
10400
+ }
10401
+ }
10375
10402
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
10376
10403
  const augmented = this.createBroadcastCallbackGrant(grant);
10377
10404
  if (augmented) {
@@ -993,12 +993,26 @@ class TaskSpawner {
993
993
  });
994
994
  return;
995
995
  }
996
- // All other exceptions are considered real failures
997
- logger$1g.error('background_task_failed', {
998
- task_name: taskName,
999
- error: error.message,
1000
- stack: error.stack,
1001
- });
996
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
997
+ const isRetriableError = error.name === 'FameConnectError' ||
998
+ error.message.includes('missed heartbeat') ||
999
+ error.message.includes('Timeout waiting for');
1000
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
1001
+ // Log non-retriable errors as errors (fatal failures)
1002
+ if (isRetriableError) {
1003
+ logger$1g.warning('background_task_failed', {
1004
+ task_name: taskName,
1005
+ error: error.message,
1006
+ retriable: true,
1007
+ });
1008
+ }
1009
+ else {
1010
+ logger$1g.error('background_task_failed', {
1011
+ task_name: taskName,
1012
+ error: error.message,
1013
+ stack: error.stack,
1014
+ });
1015
+ }
1002
1016
  if (this._lastSpawnerError === null) {
1003
1017
  this._lastSpawnerError = error;
1004
1018
  }
@@ -5372,12 +5386,12 @@ for (const [name, config] of Object.entries(SQLITE_PROFILES)) {
5372
5386
  }
5373
5387
 
5374
5388
  // This file is auto-generated during build - do not edit manually
5375
- // Generated from package.json version: 0.3.5-test.926
5389
+ // Generated from package.json version: 0.3.5-test.928
5376
5390
  /**
5377
5391
  * The package version, injected at build time.
5378
5392
  * @internal
5379
5393
  */
5380
- const VERSION = '0.3.5-test.926';
5394
+ const VERSION = '0.3.5-test.928';
5381
5395
 
5382
5396
  /**
5383
5397
  * Fame errors module - Fame protocol specific error classes
@@ -12065,6 +12079,19 @@ class UpstreamSessionManager extends TaskSpawner {
12065
12079
  await connector.start(this.wrappedHandler);
12066
12080
  this.connector = connector;
12067
12081
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
12082
+ // Include admission client's connection grants as callback grants
12083
+ // This ensures DirectAdmissionClient grants are available for grant selection
12084
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
12085
+ for (const grant of welcome.frame.connectionGrants) {
12086
+ if (grant && typeof grant === 'object') {
12087
+ // Avoid duplicates by checking if grant already exists
12088
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
12089
+ if (!isDuplicate) {
12090
+ callbackGrants.push(grant);
12091
+ }
12092
+ }
12093
+ }
12094
+ }
12068
12095
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
12069
12096
  const augmented = this.createBroadcastCallbackGrant(grant);
12070
12097
  if (augmented) {
@@ -992,12 +992,26 @@ class TaskSpawner {
992
992
  });
993
993
  return;
994
994
  }
995
- // All other exceptions are considered real failures
996
- logger$1g.error('background_task_failed', {
997
- task_name: taskName,
998
- error: error.message,
999
- stack: error.stack,
1000
- });
995
+ // Check if this is a retriable connection error (will be logged and retried by FSM)
996
+ const isRetriableError = error.name === 'FameConnectError' ||
997
+ error.message.includes('missed heartbeat') ||
998
+ error.message.includes('Timeout waiting for');
999
+ // Log retriable errors as warnings (they'll be retried by upstream logic)
1000
+ // Log non-retriable errors as errors (fatal failures)
1001
+ if (isRetriableError) {
1002
+ logger$1g.warning('background_task_failed', {
1003
+ task_name: taskName,
1004
+ error: error.message,
1005
+ retriable: true,
1006
+ });
1007
+ }
1008
+ else {
1009
+ logger$1g.error('background_task_failed', {
1010
+ task_name: taskName,
1011
+ error: error.message,
1012
+ stack: error.stack,
1013
+ });
1014
+ }
1001
1015
  if (this._lastSpawnerError === null) {
1002
1016
  this._lastSpawnerError = error;
1003
1017
  }
@@ -5371,12 +5385,12 @@ for (const [name, config] of Object.entries(SQLITE_PROFILES)) {
5371
5385
  }
5372
5386
 
5373
5387
  // This file is auto-generated during build - do not edit manually
5374
- // Generated from package.json version: 0.3.5-test.926
5388
+ // Generated from package.json version: 0.3.5-test.928
5375
5389
  /**
5376
5390
  * The package version, injected at build time.
5377
5391
  * @internal
5378
5392
  */
5379
- const VERSION = '0.3.5-test.926';
5393
+ const VERSION = '0.3.5-test.928';
5380
5394
 
5381
5395
  /**
5382
5396
  * Fame errors module - Fame protocol specific error classes
@@ -12064,6 +12078,19 @@ class UpstreamSessionManager extends TaskSpawner {
12064
12078
  await connector.start(this.wrappedHandler);
12065
12079
  this.connector = connector;
12066
12080
  const callbackGrants = this.node.gatherSupportedCallbackGrants();
12081
+ // Include admission client's connection grants as callback grants
12082
+ // This ensures DirectAdmissionClient grants are available for grant selection
12083
+ if (welcome.frame.connectionGrants && Array.isArray(welcome.frame.connectionGrants)) {
12084
+ for (const grant of welcome.frame.connectionGrants) {
12085
+ if (grant && typeof grant === 'object') {
12086
+ // Avoid duplicates by checking if grant already exists
12087
+ const isDuplicate = callbackGrants.some(existing => JSON.stringify(existing) === JSON.stringify(grant));
12088
+ if (!isDuplicate) {
12089
+ callbackGrants.push(grant);
12090
+ }
12091
+ }
12092
+ }
12093
+ }
12067
12094
  if (this.shouldAdvertiseBroadcastGrant(grant, callbackGrants)) {
12068
12095
  const augmented = this.createBroadcastCallbackGrant(grant);
12069
12096
  if (augmented) {
@@ -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.926";
5
+ export declare const VERSION = "0.3.5-test.928";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naylence/runtime",
3
- "version": "0.3.5-test.926",
3
+ "version": "0.3.5-test.928",
4
4
  "type": "module",
5
5
  "description": "Naylence Runtime - Complete TypeScript runtime",
6
6
  "author": "Naylence Dev <naylencedev@gmail.com>",