@platformatic/node 2.62.1 → 2.63.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/lib/schema.js CHANGED
@@ -28,43 +28,6 @@ const node = {
28
28
  additionalProperties: false
29
29
  }
30
30
 
31
- const logger = utilsSchemaComponents.logger
32
-
33
- logger.properties = {
34
- ...logger.properties,
35
- formatters: {
36
- type: 'object',
37
- properties: {
38
- path: {
39
- type: 'string',
40
- resolvePath: true
41
- }
42
- },
43
- required: ['path'],
44
- additionalProperties: false
45
- },
46
-
47
- timestamp: {
48
- enum: ['epochTime', 'unixTime', 'nullTime', 'isoTime']
49
- },
50
-
51
- redact: {
52
- type: 'object',
53
- properties: {
54
- paths: {
55
- type: 'array',
56
- items: { type: 'string' }
57
- },
58
- censor: {
59
- type: 'string',
60
- default: '[redacted]'
61
- }
62
- },
63
- required: ['paths'],
64
- additionalProperties: false
65
- }
66
- }
67
-
68
31
  export const schemaComponents = { node }
69
32
 
70
33
  export const schema = {
@@ -76,7 +39,7 @@ export const schema = {
76
39
  $schema: {
77
40
  type: 'string'
78
41
  },
79
- logger,
42
+ logger: utilsSchemaComponents.logger,
80
43
  server: utilsSchemaComponents.server,
81
44
  watch: basicSchemaComponents.watch,
82
45
  application: basicSchemaComponents.application,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/node",
3
- "version": "2.62.1",
3
+ "version": "2.63.1",
4
4
  "description": "Platformatic Node.js Stackable",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -17,12 +17,12 @@
17
17
  "dependencies": {
18
18
  "json5": "^2.2.3",
19
19
  "light-my-request": "^6.0.0",
20
- "@platformatic/basic": "2.62.1",
21
- "@platformatic/config": "2.62.1",
22
- "@platformatic/utils": "2.62.1"
20
+ "@platformatic/basic": "2.63.1",
21
+ "@platformatic/config": "2.63.1",
22
+ "@platformatic/utils": "2.63.1"
23
23
  },
24
24
  "devDependencies": {
25
- "borp": "^0.19.0",
25
+ "borp": "^0.20.0",
26
26
  "eslint": "9",
27
27
  "express": "^4.19.2",
28
28
  "fastify": "^5.0.0",
@@ -31,8 +31,8 @@
31
31
  "neostandard": "^0.12.0",
32
32
  "tsx": "^4.19.0",
33
33
  "typescript": "^5.5.4",
34
- "@platformatic/composer": "2.62.1",
35
- "@platformatic/service": "2.62.1"
34
+ "@platformatic/composer": "2.63.1",
35
+ "@platformatic/service": "2.63.1"
36
36
  },
37
37
  "scripts": {
38
38
  "test": "pnpm run lint && borp --concurrency=1 --no-timeout",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/node/2.62.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/node/2.63.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Node.js Stackable",
5
5
  "type": "object",