@platformatic/tanstack 3.49.1 → 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 PlatformaticTanStackConfig {
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/tanstack",
3
- "version": "3.49.1",
3
+ "version": "3.50.0",
4
4
  "description": "Platformatic TanStack Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -16,9 +16,9 @@
16
16
  "homepage": "https://github.com/platformatic/platformatic#readme",
17
17
  "dependencies": {
18
18
  "semver": "^7.6.3",
19
- "@platformatic/foundation": "3.49.1",
20
- "@platformatic/basic": "3.49.1",
21
- "@platformatic/vite": "3.49.1"
19
+ "@platformatic/basic": "3.50.0",
20
+ "@platformatic/foundation": "3.50.0",
21
+ "@platformatic/vite": "3.50.0"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@tanstack/react-router": "^1.139.7",
@@ -38,8 +38,8 @@
38
38
  "vite-plugin-solid": "^2.11.10",
39
39
  "vite-tsconfig-paths": "^5.1.4",
40
40
  "ws": "^8.18.0",
41
- "@platformatic/gateway": "3.49.1",
42
- "@platformatic/service": "3.49.1"
41
+ "@platformatic/gateway": "3.50.0",
42
+ "@platformatic/service": "3.50.0"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/tanstack/3.49.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/tanstack/3.50.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic TanStack 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,