@platformatic/nest 3.23.0 → 3.24.0-alpha0
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 +0 -8
- package/lib/capability.js +0 -5
- package/package.json +6 -6
- package/schema.json +1 -9
package/config.d.ts
CHANGED
|
@@ -60,10 +60,6 @@ export interface PlatformaticNestJSConfig {
|
|
|
60
60
|
server?: {
|
|
61
61
|
hostname?: string;
|
|
62
62
|
port?: number | string;
|
|
63
|
-
/**
|
|
64
|
-
* The maximum length of the queue of pending connections
|
|
65
|
-
*/
|
|
66
|
-
backlog?: number;
|
|
67
63
|
http2?: boolean;
|
|
68
64
|
https?: {
|
|
69
65
|
allowHTTP1?: boolean;
|
|
@@ -189,10 +185,6 @@ export interface PlatformaticNestJSConfig {
|
|
|
189
185
|
server?: {
|
|
190
186
|
hostname?: string;
|
|
191
187
|
port?: number | string;
|
|
192
|
-
/**
|
|
193
|
-
* The maximum length of the queue of pending connections
|
|
194
|
-
*/
|
|
195
|
-
backlog?: number;
|
|
196
188
|
http2?: boolean;
|
|
197
189
|
https?: {
|
|
198
190
|
allowHTTP1?: boolean;
|
package/lib/capability.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
BaseCapability,
|
|
3
3
|
cleanBasePath,
|
|
4
|
-
createServerListener,
|
|
5
4
|
ensureTrailingSlash,
|
|
6
5
|
errors,
|
|
7
6
|
getServerUrl,
|
|
@@ -227,10 +226,6 @@ export class NestCapability extends BaseCapability {
|
|
|
227
226
|
const serverOptions = this.serverConfig
|
|
228
227
|
const listenOptions = { host: serverOptions?.hostname || '127.0.0.1', port: serverOptions?.port || 0 }
|
|
229
228
|
|
|
230
|
-
if (typeof serverOptions?.backlog === 'number') {
|
|
231
|
-
createServerListener(false, false, { backlog: serverOptions.backlog })
|
|
232
|
-
}
|
|
233
|
-
|
|
234
229
|
await this.#app.listen(listenOptions)
|
|
235
230
|
this.url = getServerUrl(this.#isFastify ? this.#server.server : this.#server)
|
|
236
231
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/nest",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.24.0-alpha0",
|
|
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/basic": "3.
|
|
22
|
-
"@platformatic/foundation": "3.
|
|
23
|
-
"@platformatic/generators": "3.
|
|
21
|
+
"@platformatic/basic": "3.24.0-alpha0",
|
|
22
|
+
"@platformatic/foundation": "3.24.0-alpha0",
|
|
23
|
+
"@platformatic/generators": "3.24.0-alpha0"
|
|
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/
|
|
37
|
-
"@platformatic/
|
|
36
|
+
"@platformatic/gateway": "3.24.0-alpha0",
|
|
37
|
+
"@platformatic/service": "3.24.0-alpha0"
|
|
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.24.0-alpha0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic NestJS Config",
|
|
5
5
|
"type": "object",
|
|
@@ -178,10 +178,6 @@
|
|
|
178
178
|
}
|
|
179
179
|
]
|
|
180
180
|
},
|
|
181
|
-
"backlog": {
|
|
182
|
-
"type": "integer",
|
|
183
|
-
"description": "The maximum length of the queue of pending connections"
|
|
184
|
-
},
|
|
185
181
|
"http2": {
|
|
186
182
|
"type": "boolean"
|
|
187
183
|
},
|
|
@@ -911,10 +907,6 @@
|
|
|
911
907
|
}
|
|
912
908
|
]
|
|
913
909
|
},
|
|
914
|
-
"backlog": {
|
|
915
|
-
"type": "integer",
|
|
916
|
-
"description": "The maximum length of the queue of pending connections"
|
|
917
|
-
},
|
|
918
910
|
"http2": {
|
|
919
911
|
"type": "boolean"
|
|
920
912
|
},
|