@platformatic/gateway 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/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @platformatic/gateway
2
+
3
+ Platformatic Gateway is an API gateway that aggregates and exposes multiple services as a single API, with support for OpenAPI composition and GraphQL federation.
4
+
5
+ Check out the full documentation on [our website](https://docs.platformatic.dev/docs/reference/gateway/overview).
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ npm install @platformatic/gateway
11
+ ```
12
+
13
+ ## License
14
+
15
+ Apache 2.0
package/config.d.ts CHANGED
@@ -818,6 +818,7 @@ export interface PlatformaticGatewayConfig {
818
818
  env?: {
819
819
  [k: string]: string;
820
820
  };
821
+ envfile?: string;
821
822
  sourceMaps?: boolean;
822
823
  nodeModulesSourceMaps?: string[];
823
824
  scheduler?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/gateway",
3
- "version": "3.41.0",
3
+ "version": "3.43.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -32,7 +32,7 @@
32
32
  "typescript": "^5.5.4",
33
33
  "why-is-node-running": "2",
34
34
  "ws": "^8.16.0",
35
- "@platformatic/db": "3.41.0"
35
+ "@platformatic/db": "3.43.0"
36
36
  },
37
37
  "dependencies": {
38
38
  "@fastify/error": "^4.0.0",
@@ -63,11 +63,11 @@
63
63
  "rfdc": "^1.3.1",
64
64
  "semgrator": "^0.3.0",
65
65
  "undici": "^7.0.0",
66
- "@platformatic/basic": "3.41.0",
67
- "@platformatic/foundation": "^3.41.0",
68
- "@platformatic/service": "3.41.0",
69
- "@platformatic/scalar-theme": "3.41.0",
70
- "@platformatic/telemetry": "3.41.0"
66
+ "@platformatic/basic": "3.43.0",
67
+ "@platformatic/scalar-theme": "3.43.0",
68
+ "@platformatic/telemetry": "3.43.0",
69
+ "@platformatic/service": "3.43.0",
70
+ "@platformatic/foundation": "^3.43.0"
71
71
  },
72
72
  "engines": {
73
73
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.41.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/gateway/3.43.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Gateway Config",
5
5
  "type": "object",
@@ -2955,6 +2955,9 @@
2955
2955
  "type": "string"
2956
2956
  }
2957
2957
  },
2958
+ "envfile": {
2959
+ "type": "string"
2960
+ },
2958
2961
  "sourceMaps": {
2959
2962
  "type": "boolean",
2960
2963
  "default": false