@platformatic/composer 3.21.0 → 3.23.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 +5 -0
- package/package.json +3 -3
- package/schema.json +5 -1
package/config.d.ts
CHANGED
|
@@ -246,6 +246,10 @@ export interface PlatformaticComposerConfig {
|
|
|
246
246
|
server?: {
|
|
247
247
|
hostname?: string;
|
|
248
248
|
port?: number | string;
|
|
249
|
+
/**
|
|
250
|
+
* The maximum length of the queue of pending connections
|
|
251
|
+
*/
|
|
252
|
+
backlog?: number;
|
|
249
253
|
http2?: boolean;
|
|
250
254
|
https?: {
|
|
251
255
|
allowHTTP1?: boolean;
|
|
@@ -399,6 +403,7 @@ export interface PlatformaticComposerConfig {
|
|
|
399
403
|
body?: string;
|
|
400
404
|
};
|
|
401
405
|
};
|
|
406
|
+
healthChecksTimeouts?: number | string;
|
|
402
407
|
plugins?: string[];
|
|
403
408
|
timeout?: number | string;
|
|
404
409
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"json-schema-to-typescript": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platformatic/foundation": "3.
|
|
27
|
-
"@platformatic/gateway": "3.
|
|
26
|
+
"@platformatic/foundation": "3.23.0",
|
|
27
|
+
"@platformatic/gateway": "3.23.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.23.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1209,6 +1209,10 @@
|
|
|
1209
1209
|
}
|
|
1210
1210
|
]
|
|
1211
1211
|
},
|
|
1212
|
+
"backlog": {
|
|
1213
|
+
"type": "integer",
|
|
1214
|
+
"description": "The maximum length of the queue of pending connections"
|
|
1215
|
+
},
|
|
1212
1216
|
"http2": {
|
|
1213
1217
|
"type": "boolean"
|
|
1214
1218
|
},
|