@twin.org/node-core 0.9.2-next.8 → 0.9.2-next.9
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/es/builders/engineEnvBuilder.js +28 -4
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/builders/helper/envHelpers.js +0 -8
- package/dist/es/builders/helper/envHelpers.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/engineEnvironmentVariableKeys.js +16 -0
- package/dist/es/models/engineEnvironmentVariableKeys.js.map +1 -1
- package/dist/es/node.js +1 -1
- package/dist/es/node.js.map +1 -1
- package/dist/types/builders/helper/envHelpers.d.ts +3 -2
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +64 -0
- package/docs/changelog.md +7 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +128 -0
- package/package.json +1 -1
|
@@ -258,6 +258,22 @@ ScyllaDB port.
|
|
|
258
258
|
|
|
259
259
|
***
|
|
260
260
|
|
|
261
|
+
### scylladbPoolCoreConnectionsPerHost? {#scylladbpoolcoreconnectionsperhost}
|
|
262
|
+
|
|
263
|
+
> `optional` **scylladbPoolCoreConnectionsPerHost?**: `string`
|
|
264
|
+
|
|
265
|
+
ScyllaDB connection pool: number of connections per local host.
|
|
266
|
+
|
|
267
|
+
***
|
|
268
|
+
|
|
269
|
+
### scylladbPoolMaxRequestsPerConnection? {#scylladbpoolmaxrequestsperconnection}
|
|
270
|
+
|
|
271
|
+
> `optional` **scylladbPoolMaxRequestsPerConnection?**: `string`
|
|
272
|
+
|
|
273
|
+
ScyllaDB connection pool: maximum requests per connection.
|
|
274
|
+
|
|
275
|
+
***
|
|
276
|
+
|
|
261
277
|
### mySqlHost? {#mysqlhost}
|
|
262
278
|
|
|
263
279
|
> `optional` **mySqlHost?**: `string`
|
|
@@ -298,6 +314,54 @@ MySQL Database.
|
|
|
298
314
|
|
|
299
315
|
***
|
|
300
316
|
|
|
317
|
+
### mySqlPoolConnectionLimit? {#mysqlpoolconnectionlimit}
|
|
318
|
+
|
|
319
|
+
> `optional` **mySqlPoolConnectionLimit?**: `string`
|
|
320
|
+
|
|
321
|
+
MySQL connection pool: maximum number of connections.
|
|
322
|
+
|
|
323
|
+
***
|
|
324
|
+
|
|
325
|
+
### mySqlPoolMaxIdle? {#mysqlpoolmaxidle}
|
|
326
|
+
|
|
327
|
+
> `optional` **mySqlPoolMaxIdle?**: `string`
|
|
328
|
+
|
|
329
|
+
MySQL connection pool: maximum number of idle connections.
|
|
330
|
+
|
|
331
|
+
***
|
|
332
|
+
|
|
333
|
+
### mySqlPoolIdleTimeout? {#mysqlpoolidletimeout}
|
|
334
|
+
|
|
335
|
+
> `optional` **mySqlPoolIdleTimeout?**: `string`
|
|
336
|
+
|
|
337
|
+
MySQL connection pool: milliseconds before an idle connection is removed.
|
|
338
|
+
|
|
339
|
+
***
|
|
340
|
+
|
|
341
|
+
### mySqlPoolEnableKeepAlive? {#mysqlpoolenablekeepalive}
|
|
342
|
+
|
|
343
|
+
> `optional` **mySqlPoolEnableKeepAlive?**: `string`
|
|
344
|
+
|
|
345
|
+
MySQL connection pool: enable TCP keep-alive.
|
|
346
|
+
|
|
347
|
+
***
|
|
348
|
+
|
|
349
|
+
### mySqlPoolWaitForConnections? {#mysqlpoolwaitforconnections}
|
|
350
|
+
|
|
351
|
+
> `optional` **mySqlPoolWaitForConnections?**: `string`
|
|
352
|
+
|
|
353
|
+
MySQL connection pool: wait for a connection when pool is full.
|
|
354
|
+
|
|
355
|
+
***
|
|
356
|
+
|
|
357
|
+
### mySqlPoolQueueLimit? {#mysqlpoolqueuelimit}
|
|
358
|
+
|
|
359
|
+
> `optional` **mySqlPoolQueueLimit?**: `string`
|
|
360
|
+
|
|
361
|
+
MySQL connection pool: maximum queued requests (0 = unlimited).
|
|
362
|
+
|
|
363
|
+
***
|
|
364
|
+
|
|
301
365
|
### mongoDbHost? {#mongodbhost}
|
|
302
366
|
|
|
303
367
|
> `optional` **mongoDbHost?**: `string`
|
|
@@ -338,6 +402,38 @@ MongoDB Database.
|
|
|
338
402
|
|
|
339
403
|
***
|
|
340
404
|
|
|
405
|
+
### mongoDbPoolMaxPoolSize? {#mongodbpoolmaxpoolsize}
|
|
406
|
+
|
|
407
|
+
> `optional` **mongoDbPoolMaxPoolSize?**: `string`
|
|
408
|
+
|
|
409
|
+
MongoDB connection pool: maximum number of connections.
|
|
410
|
+
|
|
411
|
+
***
|
|
412
|
+
|
|
413
|
+
### mongoDbPoolMinPoolSize? {#mongodbpoolminpoolsize}
|
|
414
|
+
|
|
415
|
+
> `optional` **mongoDbPoolMinPoolSize?**: `string`
|
|
416
|
+
|
|
417
|
+
MongoDB connection pool: minimum number of connections to maintain.
|
|
418
|
+
|
|
419
|
+
***
|
|
420
|
+
|
|
421
|
+
### mongoDbPoolMaxIdleTime? {#mongodbpoolmaxidletime}
|
|
422
|
+
|
|
423
|
+
> `optional` **mongoDbPoolMaxIdleTime?**: `string`
|
|
424
|
+
|
|
425
|
+
MongoDB connection pool: milliseconds a connection can remain idle before removal.
|
|
426
|
+
|
|
427
|
+
***
|
|
428
|
+
|
|
429
|
+
### mongoDbPoolWaitQueueTimeout? {#mongodbpoolwaitqueuetimeout}
|
|
430
|
+
|
|
431
|
+
> `optional` **mongoDbPoolWaitQueueTimeout?**: `string`
|
|
432
|
+
|
|
433
|
+
MongoDB connection pool: milliseconds to wait for a connection before throwing.
|
|
434
|
+
|
|
435
|
+
***
|
|
436
|
+
|
|
341
437
|
### postgreSqlHost? {#postgresqlhost}
|
|
342
438
|
|
|
343
439
|
> `optional` **postgreSqlHost?**: `string`
|
|
@@ -378,6 +474,38 @@ PostgreSQl Database.
|
|
|
378
474
|
|
|
379
475
|
***
|
|
380
476
|
|
|
477
|
+
### postgreSqlPoolMax? {#postgresqlpoolmax}
|
|
478
|
+
|
|
479
|
+
> `optional` **postgreSqlPoolMax?**: `string`
|
|
480
|
+
|
|
481
|
+
PostgreSQL connection pool: maximum number of connections.
|
|
482
|
+
|
|
483
|
+
***
|
|
484
|
+
|
|
485
|
+
### postgreSqlPoolIdleTimeout? {#postgresqlpoolidletimeout}
|
|
486
|
+
|
|
487
|
+
> `optional` **postgreSqlPoolIdleTimeout?**: `string`
|
|
488
|
+
|
|
489
|
+
PostgreSQL connection pool: seconds a connection can remain idle before being closed.
|
|
490
|
+
|
|
491
|
+
***
|
|
492
|
+
|
|
493
|
+
### postgreSqlPoolConnectTimeout? {#postgresqlpoolconnecttimeout}
|
|
494
|
+
|
|
495
|
+
> `optional` **postgreSqlPoolConnectTimeout?**: `string`
|
|
496
|
+
|
|
497
|
+
PostgreSQL connection pool: seconds to wait when establishing a connection.
|
|
498
|
+
|
|
499
|
+
***
|
|
500
|
+
|
|
501
|
+
### postgreSqlPoolMaxLifetime? {#postgresqlpoolmaxlifetime}
|
|
502
|
+
|
|
503
|
+
> `optional` **postgreSqlPoolMaxLifetime?**: `string`
|
|
504
|
+
|
|
505
|
+
PostgreSQL connection pool: maximum seconds a connection can remain open.
|
|
506
|
+
|
|
507
|
+
***
|
|
508
|
+
|
|
381
509
|
### ipfsBearerToken? {#ipfsbearertoken}
|
|
382
510
|
|
|
383
511
|
> `optional` **ipfsBearerToken?**: `string`
|