@platformatic/db 3.0.6 → 3.2.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 +1 -2
  2. package/package.json +13 -13
  3. package/schema.json +14 -3
package/config.d.ts CHANGED
@@ -684,8 +684,7 @@ export interface PlatformaticDatabaseConfig {
684
684
  body?: string;
685
685
  };
686
686
  };
687
- additionalProperties?: never;
688
- [k: string]: unknown;
687
+ plugins?: string[];
689
688
  };
690
689
  telemetry?: {
691
690
  enabled?: boolean | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/db",
3
- "version": "3.0.6",
3
+ "version": "3.2.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -66,20 +66,20 @@
66
66
  "rfdc": "^1.3.1",
67
67
  "rimraf": "^4.4.1",
68
68
  "semgrator": "^0.3.0",
69
- "@platformatic/basic": "3.0.6",
70
- "@platformatic/db-authorization": "3.0.6",
71
- "@platformatic/foundation": "3.0.6",
72
- "@platformatic/db-core": "3.0.6",
73
- "@platformatic/sql-events": "3.0.6",
74
- "@platformatic/service": "3.0.6",
75
- "@platformatic/sql-mapper": "3.0.6",
76
- "@platformatic/sql-openapi": "3.0.6",
77
- "@platformatic/sql-json-schema-mapper": "3.0.6",
78
- "@platformatic/sql-graphql": "3.0.6",
79
- "@platformatic/telemetry": "3.0.6"
69
+ "@platformatic/basic": "3.2.0",
70
+ "@platformatic/db-authorization": "3.2.0",
71
+ "@platformatic/db-core": "3.2.0",
72
+ "@platformatic/foundation": "3.2.0",
73
+ "@platformatic/sql-events": "3.2.0",
74
+ "@platformatic/service": "3.2.0",
75
+ "@platformatic/sql-json-schema-mapper": "3.2.0",
76
+ "@platformatic/sql-mapper": "3.2.0",
77
+ "@platformatic/sql-openapi": "3.2.0",
78
+ "@platformatic/sql-graphql": "3.2.0",
79
+ "@platformatic/telemetry": "3.2.0"
80
80
  },
81
81
  "engines": {
82
- "node": ">=22.18.0"
82
+ "node": ">=22.19.0"
83
83
  },
84
84
  "scripts": {
85
85
  "test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js test/**/*.test.js",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/db/3.0.6.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/db/3.2.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Database Config",
5
5
  "type": "object",
@@ -2308,8 +2308,19 @@
2308
2308
  }
2309
2309
  ]
2310
2310
  },
2311
- "additionalProperties": false
2312
- }
2311
+ "plugins": {
2312
+ "type": "array",
2313
+ "items": {
2314
+ "anyOf": [
2315
+ {
2316
+ "type": "string",
2317
+ "resolvePath": true
2318
+ }
2319
+ ]
2320
+ }
2321
+ }
2322
+ },
2323
+ "additionalProperties": false
2313
2324
  }
2314
2325
  ]
2315
2326
  },