@platformatic/db 3.41.0 → 3.43.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
@@ -264,6 +264,7 @@ export interface PlatformaticDatabaseConfig {
264
264
  * Base URL for generated Platformatic DB routes
265
265
  */
266
266
  prefix?: string;
267
+ ignoreAllReverseRoutes?: boolean;
267
268
  };
268
269
  include?: {
269
270
  [k: string]: boolean;
@@ -908,6 +909,7 @@ export interface PlatformaticDatabaseConfig {
908
909
  env?: {
909
910
  [k: string]: string;
910
911
  };
912
+ envfile?: string;
911
913
  sourceMaps?: boolean;
912
914
  nodeModulesSourceMaps?: string[];
913
915
  scheduler?: {
package/lib/schema.js CHANGED
@@ -187,6 +187,10 @@ export const db = {
187
187
  prefix: {
188
188
  type: 'string',
189
189
  description: 'Base URL for generated Platformatic DB routes'
190
+ },
191
+ ignoreAllReverseRoutes: {
192
+ type: 'boolean',
193
+ default: false
190
194
  }
191
195
  },
192
196
  additionalProperties: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/db",
3
- "version": "3.41.0",
3
+ "version": "3.43.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.41.0",
70
- "@platformatic/service": "3.41.0",
71
- "@platformatic/sql-events": "3.41.0",
72
- "@platformatic/db-authorization": "3.41.0",
73
- "@platformatic/foundation": "3.41.0",
74
- "@platformatic/sql-graphql": "3.41.0",
75
- "@platformatic/sql-json-schema-mapper": "3.41.0",
76
- "@platformatic/db-core": "3.41.0",
77
- "@platformatic/sql-openapi": "3.41.0",
78
- "@platformatic/telemetry": "3.41.0",
79
- "@platformatic/sql-mapper": "3.41.0"
69
+ "@platformatic/basic": "3.43.0",
70
+ "@platformatic/db-authorization": "3.43.0",
71
+ "@platformatic/db-core": "3.43.0",
72
+ "@platformatic/sql-graphql": "3.43.0",
73
+ "@platformatic/sql-events": "3.43.0",
74
+ "@platformatic/sql-json-schema-mapper": "3.43.0",
75
+ "@platformatic/service": "3.43.0",
76
+ "@platformatic/foundation": "3.43.0",
77
+ "@platformatic/sql-mapper": "3.43.0",
78
+ "@platformatic/sql-openapi": "3.43.0",
79
+ "@platformatic/telemetry": "3.43.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.41.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/db/3.43.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Database Config",
5
5
  "type": "object",
@@ -796,6 +796,10 @@
796
796
  "prefix": {
797
797
  "type": "string",
798
798
  "description": "Base URL for generated Platformatic DB routes"
799
+ },
800
+ "ignoreAllReverseRoutes": {
801
+ "type": "boolean",
802
+ "default": false
799
803
  }
800
804
  },
801
805
  "additionalProperties": false
@@ -2960,6 +2964,9 @@
2960
2964
  "type": "string"
2961
2965
  }
2962
2966
  },
2967
+ "envfile": {
2968
+ "type": "string"
2969
+ },
2963
2970
  "sourceMaps": {
2964
2971
  "type": "boolean",
2965
2972
  "default": false