@platformatic/nest 3.7.1 → 3.9.0
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/config.d.ts +12 -0
- package/package.json +6 -6
- package/schema.json +51 -3
package/config.d.ts
CHANGED
|
@@ -401,6 +401,18 @@ export interface PlatformaticNestJSConfig {
|
|
|
401
401
|
[k: string]: unknown;
|
|
402
402
|
};
|
|
403
403
|
};
|
|
404
|
+
verticalScaler?: {
|
|
405
|
+
enabled?: boolean;
|
|
406
|
+
maxTotalWorkers?: number;
|
|
407
|
+
minWorkers?: number;
|
|
408
|
+
maxWorkers?: number;
|
|
409
|
+
scaleUpELU?: number;
|
|
410
|
+
scaleDownELU?: number;
|
|
411
|
+
minELUDiff?: number;
|
|
412
|
+
timeWindowSec?: number;
|
|
413
|
+
cooldownSec?: number;
|
|
414
|
+
scaleIntervalSec?: number;
|
|
415
|
+
};
|
|
404
416
|
inspectorOptions?: {
|
|
405
417
|
host?: string;
|
|
406
418
|
port?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/nest",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "Platformatic Nest.js Capability",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"get-port": "^7.1.0",
|
|
19
19
|
"light-my-request": "^6.0.0",
|
|
20
20
|
"pino-http": "^10.2.0",
|
|
21
|
-
"@platformatic/
|
|
22
|
-
"@platformatic/
|
|
23
|
-
"@platformatic/
|
|
21
|
+
"@platformatic/foundation": "3.9.0",
|
|
22
|
+
"@platformatic/generators": "3.9.0",
|
|
23
|
+
"@platformatic/basic": "3.9.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@nestjs/cli": "^11.0.7",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"neostandard": "^0.12.0",
|
|
34
34
|
"tsx": "^4.19.0",
|
|
35
35
|
"typescript": "^5.5.4",
|
|
36
|
-
"@platformatic/gateway": "3.
|
|
37
|
-
"@platformatic/service": "3.
|
|
36
|
+
"@platformatic/gateway": "3.9.0",
|
|
37
|
+
"@platformatic/service": "3.9.0"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/nest/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/nest/3.9.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic NestJS Config",
|
|
5
5
|
"type": "object",
|
|
@@ -631,8 +631,7 @@
|
|
|
631
631
|
{
|
|
632
632
|
"type": "string"
|
|
633
633
|
}
|
|
634
|
-
]
|
|
635
|
-
"default": 1
|
|
634
|
+
]
|
|
636
635
|
},
|
|
637
636
|
"workersRestartDelay": {
|
|
638
637
|
"anyOf": [
|
|
@@ -1532,6 +1531,55 @@
|
|
|
1532
1531
|
],
|
|
1533
1532
|
"additionalProperties": false
|
|
1534
1533
|
},
|
|
1534
|
+
"verticalScaler": {
|
|
1535
|
+
"type": "object",
|
|
1536
|
+
"properties": {
|
|
1537
|
+
"enabled": {
|
|
1538
|
+
"type": "boolean",
|
|
1539
|
+
"default": true
|
|
1540
|
+
},
|
|
1541
|
+
"maxTotalWorkers": {
|
|
1542
|
+
"type": "number",
|
|
1543
|
+
"minimum": 1
|
|
1544
|
+
},
|
|
1545
|
+
"minWorkers": {
|
|
1546
|
+
"type": "number",
|
|
1547
|
+
"minimum": 1
|
|
1548
|
+
},
|
|
1549
|
+
"maxWorkers": {
|
|
1550
|
+
"type": "number",
|
|
1551
|
+
"minimum": 1
|
|
1552
|
+
},
|
|
1553
|
+
"scaleUpELU": {
|
|
1554
|
+
"type": "number",
|
|
1555
|
+
"minimum": 0,
|
|
1556
|
+
"maximum": 1
|
|
1557
|
+
},
|
|
1558
|
+
"scaleDownELU": {
|
|
1559
|
+
"type": "number",
|
|
1560
|
+
"minimum": 0,
|
|
1561
|
+
"maximum": 1
|
|
1562
|
+
},
|
|
1563
|
+
"minELUDiff": {
|
|
1564
|
+
"type": "number",
|
|
1565
|
+
"minimum": 0,
|
|
1566
|
+
"maximum": 1
|
|
1567
|
+
},
|
|
1568
|
+
"timeWindowSec": {
|
|
1569
|
+
"type": "number",
|
|
1570
|
+
"minimum": 0
|
|
1571
|
+
},
|
|
1572
|
+
"cooldownSec": {
|
|
1573
|
+
"type": "number",
|
|
1574
|
+
"minimum": 0
|
|
1575
|
+
},
|
|
1576
|
+
"scaleIntervalSec": {
|
|
1577
|
+
"type": "number",
|
|
1578
|
+
"minimum": 0
|
|
1579
|
+
}
|
|
1580
|
+
},
|
|
1581
|
+
"additionalProperties": false
|
|
1582
|
+
},
|
|
1535
1583
|
"inspectorOptions": {
|
|
1536
1584
|
"type": "object",
|
|
1537
1585
|
"properties": {
|