@platformatic/db 3.35.1 → 3.37.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.
Files changed (3) hide show
  1. package/config.d.ts +5 -0
  2. package/package.json +12 -12
  3. package/schema.json +16 -1
package/config.d.ts CHANGED
@@ -681,6 +681,10 @@ export interface PlatformaticDatabaseConfig {
681
681
  logs?: {
682
682
  maxSize?: number;
683
683
  };
684
+ /**
685
+ * Custom path for the control socket. If not specified, uses the default platform-specific location.
686
+ */
687
+ socket?: string;
684
688
  };
685
689
  metrics?:
686
690
  | boolean
@@ -885,6 +889,7 @@ export interface PlatformaticDatabaseConfig {
885
889
  [k: string]: unknown;
886
890
  };
887
891
  applicationTimeout?: number | string;
892
+ startupConcurrency?: number | string;
888
893
  messagingTimeout?: number | string;
889
894
  env?: {
890
895
  [k: string]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/db",
3
- "version": "3.35.1",
3
+ "version": "3.37.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -66,17 +66,17 @@
66
66
  "rfdc": "^1.3.1",
67
67
  "rimraf": "^4.4.1",
68
68
  "semgrator": "^0.3.0",
69
- "@platformatic/basic": "3.35.1",
70
- "@platformatic/db-authorization": "3.35.1",
71
- "@platformatic/foundation": "3.35.1",
72
- "@platformatic/db-core": "3.35.1",
73
- "@platformatic/service": "3.35.1",
74
- "@platformatic/sql-events": "3.35.1",
75
- "@platformatic/sql-graphql": "3.35.1",
76
- "@platformatic/sql-json-schema-mapper": "3.35.1",
77
- "@platformatic/sql-mapper": "3.35.1",
78
- "@platformatic/sql-openapi": "3.35.1",
79
- "@platformatic/telemetry": "3.35.1"
69
+ "@platformatic/basic": "3.37.0",
70
+ "@platformatic/db-authorization": "3.37.0",
71
+ "@platformatic/db-core": "3.37.0",
72
+ "@platformatic/service": "3.37.0",
73
+ "@platformatic/sql-events": "3.37.0",
74
+ "@platformatic/sql-graphql": "3.37.0",
75
+ "@platformatic/foundation": "3.37.0",
76
+ "@platformatic/sql-json-schema-mapper": "3.37.0",
77
+ "@platformatic/sql-mapper": "3.37.0",
78
+ "@platformatic/sql-openapi": "3.37.0",
79
+ "@platformatic/telemetry": "3.37.0"
80
80
  },
81
81
  "engines": {
82
82
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/db/3.35.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/db/3.37.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Database Config",
5
5
  "type": "object",
@@ -2359,6 +2359,10 @@
2359
2359
  }
2360
2360
  },
2361
2361
  "additionalProperties": false
2362
+ },
2363
+ "socket": {
2364
+ "type": "string",
2365
+ "description": "Custom path for the control socket. If not specified, uses the default platform-specific location."
2362
2366
  }
2363
2367
  },
2364
2368
  "additionalProperties": false
@@ -2841,6 +2845,17 @@
2841
2845
  ],
2842
2846
  "default": 300000
2843
2847
  },
2848
+ "startupConcurrency": {
2849
+ "anyOf": [
2850
+ {
2851
+ "type": "number",
2852
+ "minimum": 1
2853
+ },
2854
+ {
2855
+ "type": "string"
2856
+ }
2857
+ ]
2858
+ },
2844
2859
  "messagingTimeout": {
2845
2860
  "anyOf": [
2846
2861
  {