@platformatic/service 3.49.0 → 3.49.1
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/index.d.ts +5 -1
- package/package.json +7 -7
- package/schema.json +2 -2
package/index.d.ts
CHANGED
|
@@ -23,7 +23,11 @@ export type ServerInstance<Configuration = PlatformaticServiceConfig> = FastifyI
|
|
|
23
23
|
|
|
24
24
|
export type ServiceConfiguration<T = {}> = Configuration<PlatformaticServiceConfig & T>
|
|
25
25
|
|
|
26
|
-
export declare function transform (
|
|
26
|
+
export declare function transform (
|
|
27
|
+
config: ServiceConfiguration,
|
|
28
|
+
schema?: object,
|
|
29
|
+
options?: ConfigurationOptions
|
|
30
|
+
): Promise<ServiceConfiguration>
|
|
27
31
|
|
|
28
32
|
export declare function loadConfiguration (
|
|
29
33
|
root: string | PlatformaticServiceConfig,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/service",
|
|
3
|
-
"version": "3.49.
|
|
3
|
+
"version": "3.49.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
"rfdc": "^1.3.1",
|
|
68
68
|
"semgrator": "^0.3.0",
|
|
69
69
|
"undici": "^7.0.0",
|
|
70
|
-
"@platformatic/basic": "3.49.
|
|
71
|
-
"@platformatic/
|
|
72
|
-
"@platformatic/
|
|
73
|
-
"@platformatic/
|
|
74
|
-
"@platformatic/
|
|
75
|
-
"@platformatic/
|
|
70
|
+
"@platformatic/basic": "3.49.1",
|
|
71
|
+
"@platformatic/metrics": "3.49.1",
|
|
72
|
+
"@platformatic/generators": "3.49.1",
|
|
73
|
+
"@platformatic/scalar-theme": "3.49.1",
|
|
74
|
+
"@platformatic/telemetry": "3.49.1",
|
|
75
|
+
"@platformatic/foundation": "3.49.1"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
78
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.49.
|
|
3
|
-
"version": "3.49.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/service/3.49.1.json",
|
|
3
|
+
"version": "3.49.1",
|
|
4
4
|
"title": "Platformatic Service Config",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|