@platformatic/node 3.49.0 → 3.50.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 CHANGED
@@ -122,6 +122,7 @@ export interface PlatformaticNodeJsConfig {
122
122
  entrypointPort?: number;
123
123
  changeDirectoryBeforeExecution?: boolean;
124
124
  preferLocalCommands?: boolean;
125
+ processSpawner?: string;
125
126
  };
126
127
  runtime?: {
127
128
  preload?: string | string[];
package/index.d.ts CHANGED
@@ -10,7 +10,11 @@ export interface NodeContext extends BaseContext {}
10
10
 
11
11
  export type NodeConfiguration = Configuration<PlatformaticNodeJsConfig>
12
12
 
13
- export declare function transform (config: NodeConfiguration): Promise<NodeConfiguration>
13
+ export declare function transform (
14
+ config: NodeConfiguration,
15
+ schema?: object,
16
+ options?: ConfigurationOptions
17
+ ): Promise<NodeConfiguration>
14
18
 
15
19
  export declare function loadConfiguration (
16
20
  root: string | PlatformaticNodeJsConfig,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/node",
3
- "version": "3.49.0",
3
+ "version": "3.50.0",
4
4
  "description": "Platformatic Node.js Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,9 +18,9 @@
18
18
  "@watchable/unpromise": "^1.0.2",
19
19
  "json5": "^2.2.3",
20
20
  "light-my-request": "^6.0.0",
21
- "@platformatic/basic": "3.49.0",
22
- "@platformatic/foundation": "3.49.0",
23
- "@platformatic/generators": "3.49.0"
21
+ "@platformatic/basic": "3.50.0",
22
+ "@platformatic/foundation": "3.50.0",
23
+ "@platformatic/generators": "3.50.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "cleaner-spec-reporter": "^0.5.0",
@@ -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.49.0",
37
- "@platformatic/service": "3.49.0"
36
+ "@platformatic/gateway": "3.50.0",
37
+ "@platformatic/service": "3.50.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/node/3.49.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/node/3.50.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Node.js Config",
5
5
  "type": "object",
@@ -393,6 +393,9 @@
393
393
  "preferLocalCommands": {
394
394
  "type": "boolean",
395
395
  "default": true
396
+ },
397
+ "processSpawner": {
398
+ "type": "string"
396
399
  }
397
400
  },
398
401
  "additionalProperties": false,