@platformatic/next 3.0.6 → 3.1.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
@@ -318,8 +318,7 @@ export interface PlatformaticNextJsConfig {
318
318
  body?: string;
319
319
  };
320
320
  };
321
- additionalProperties?: never;
322
- [k: string]: unknown;
321
+ plugins?: string[];
323
322
  };
324
323
  telemetry?: {
325
324
  enabled?: boolean | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/next",
3
- "version": "3.0.6",
3
+ "version": "3.1.0",
4
4
  "description": "Platformatic Next.js Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -23,8 +23,8 @@
23
23
  "iovalkey": "^0.3.0",
24
24
  "msgpackr": "^1.11.2",
25
25
  "semver": "^7.6.3",
26
- "@platformatic/basic": "3.0.6",
27
- "@platformatic/foundation": "3.0.6"
26
+ "@platformatic/foundation": "3.1.0",
27
+ "@platformatic/basic": "3.1.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@fastify/reply-from": "^12.0.0",
@@ -40,11 +40,11 @@
40
40
  "next": "^15.0.0",
41
41
  "typescript": "^5.5.4",
42
42
  "ws": "^8.18.0",
43
- "@platformatic/gateway": "3.0.6",
44
- "@platformatic/service": "3.0.6"
43
+ "@platformatic/gateway": "3.1.0",
44
+ "@platformatic/service": "3.1.0"
45
45
  },
46
46
  "engines": {
47
- "node": ">=22.18.0"
47
+ "node": ">=22.19.0"
48
48
  },
49
49
  "scripts": {
50
50
  "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/next/3.0.6.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/next/3.1.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Next.js Config",
5
5
  "type": "object",
@@ -1369,8 +1369,19 @@
1369
1369
  }
1370
1370
  ]
1371
1371
  },
1372
- "additionalProperties": false
1373
- }
1372
+ "plugins": {
1373
+ "type": "array",
1374
+ "items": {
1375
+ "anyOf": [
1376
+ {
1377
+ "type": "string",
1378
+ "resolvePath": true
1379
+ }
1380
+ ]
1381
+ }
1382
+ }
1383
+ },
1384
+ "additionalProperties": false
1374
1385
  }
1375
1386
  ]
1376
1387
  },