@platformatic/gateway 3.28.0-alpha.1 → 3.28.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
@@ -769,6 +769,7 @@ export interface PlatformaticGatewayConfig {
769
769
  [k: string]: string;
770
770
  };
771
771
  sourceMaps?: boolean;
772
+ nodeModulesSourceMaps?: string[];
772
773
  scheduler?: {
773
774
  enabled?: boolean | string;
774
775
  name: string;
@@ -823,6 +824,7 @@ export interface PlatformaticGatewayConfig {
823
824
  };
824
825
  envfile?: string;
825
826
  sourceMaps?: boolean;
827
+ nodeModulesSourceMaps?: string[];
826
828
  packageManager?: "npm" | "pnpm" | "yarn";
827
829
  preload?: string | string[];
828
830
  nodeOptions?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/gateway",
3
- "version": "3.28.0-alpha.1",
3
+ "version": "3.28.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -33,7 +33,7 @@
33
33
  "typescript": "^5.5.4",
34
34
  "why-is-node-running": "2",
35
35
  "ws": "^8.16.0",
36
- "@platformatic/db": "3.28.0-alpha.1"
36
+ "@platformatic/db": "3.28.0"
37
37
  },
38
38
  "dependencies": {
39
39
  "@fastify/error": "^4.0.0",
@@ -64,11 +64,11 @@
64
64
  "rfdc": "^1.3.1",
65
65
  "semgrator": "^0.3.0",
66
66
  "undici": "^7.0.0",
67
- "@platformatic/basic": "3.28.0-alpha.1",
68
- "@platformatic/service": "3.28.0-alpha.1",
69
- "@platformatic/telemetry": "3.28.0-alpha.1",
70
- "@platformatic/foundation": "^3.28.0-alpha.1",
71
- "@platformatic/scalar-theme": "3.28.0-alpha.1"
67
+ "@platformatic/foundation": "^3.28.0",
68
+ "@platformatic/scalar-theme": "3.28.0",
69
+ "@platformatic/service": "3.28.0",
70
+ "@platformatic/basic": "3.28.0",
71
+ "@platformatic/telemetry": "3.28.0"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.28.0-alpha.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.28.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Gateway Config",
5
5
  "type": "object",
@@ -1491,6 +1491,12 @@
1491
1491
  "sourceMaps": {
1492
1492
  "type": "boolean"
1493
1493
  },
1494
+ "nodeModulesSourceMaps": {
1495
+ "type": "array",
1496
+ "items": {
1497
+ "type": "string"
1498
+ }
1499
+ },
1494
1500
  "packageManager": {
1495
1501
  "type": "string",
1496
1502
  "enum": [
@@ -2737,6 +2743,13 @@
2737
2743
  "type": "boolean",
2738
2744
  "default": false
2739
2745
  },
2746
+ "nodeModulesSourceMaps": {
2747
+ "type": "array",
2748
+ "items": {
2749
+ "type": "string"
2750
+ },
2751
+ "default": []
2752
+ },
2740
2753
  "scheduler": {
2741
2754
  "type": "array",
2742
2755
  "items": {
@@ -2990,6 +3003,12 @@
2990
3003
  "sourceMaps": {
2991
3004
  "type": "boolean"
2992
3005
  },
3006
+ "nodeModulesSourceMaps": {
3007
+ "type": "array",
3008
+ "items": {
3009
+ "type": "string"
3010
+ }
3011
+ },
2993
3012
  "packageManager": {
2994
3013
  "type": "string",
2995
3014
  "enum": [