@platformatic/service 2.9.1 → 2.10.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 +0 -2
  2. package/package.json +10 -10
  3. package/schema.json +15 -7
package/config.d.ts CHANGED
@@ -53,8 +53,6 @@ export interface PlatformaticService {
53
53
  [k: string]: unknown;
54
54
  };
55
55
  level?: string;
56
- additionalProperties?: never;
57
- [k: string]: unknown;
58
56
  }[];
59
57
  options?: {
60
58
  [k: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "2.9.1",
3
+ "version": "2.10.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -71,19 +71,19 @@
71
71
  "my-ua-parser": "^2.0.2",
72
72
  "ora": "^6.3.1",
73
73
  "pino": "^9.0.0",
74
- "pino-pretty": "^11.0.0",
74
+ "pino-pretty": "^12.0.0",
75
75
  "prom-client": "^15.1.2",
76
76
  "rfdc": "^1.3.1",
77
77
  "semgrator": "^0.3.0",
78
78
  "undici": "^6.9.0",
79
- "@platformatic/client": "2.9.1",
80
- "@platformatic/config": "2.9.1",
81
- "@platformatic/metrics": "2.9.1",
82
- "@platformatic/scalar-theme": "2.9.1",
83
- "@platformatic/generators": "2.9.1",
84
- "@platformatic/telemetry": "2.9.1",
85
- "@platformatic/ts-compiler": "2.9.1",
86
- "@platformatic/utils": "2.9.1"
79
+ "@platformatic/client": "2.10.0",
80
+ "@platformatic/config": "2.10.0",
81
+ "@platformatic/generators": "2.10.0",
82
+ "@platformatic/scalar-theme": "2.10.0",
83
+ "@platformatic/metrics": "2.10.0",
84
+ "@platformatic/ts-compiler": "2.10.0",
85
+ "@platformatic/telemetry": "2.10.0",
86
+ "@platformatic/utils": "2.10.0"
87
87
  },
88
88
  "scripts": {
89
89
  "test": "pnpm run lint && borp -T --concurrency=1 --timeout=300000 && tsd",
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/2.9.1.json",
3
- "version": "2.9.1",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/2.10.0.json",
3
+ "version": "2.10.0",
4
4
  "title": "Platformatic Service",
5
5
  "type": "object",
6
6
  "properties": {
@@ -139,17 +139,25 @@
139
139
  "type": "object",
140
140
  "properties": {
141
141
  "target": {
142
- "type": "string",
143
- "resolveModule": true
142
+ "anyOf": [
143
+ {
144
+ "type": "string",
145
+ "resolveModule": true
146
+ },
147
+ {
148
+ "type": "string",
149
+ "resolvePath": true
150
+ }
151
+ ]
144
152
  },
145
153
  "options": {
146
154
  "type": "object"
147
155
  },
148
156
  "level": {
149
157
  "type": "string"
150
- },
151
- "additionalProperties": false
152
- }
158
+ }
159
+ },
160
+ "additionalProperties": false
153
161
  }
154
162
  },
155
163
  "options": {