wattpm 2.35.1 → 2.36.2

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 (2) hide show
  1. package/package.json +7 -7
  2. package/schema.json +87 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattpm",
3
- "version": "2.35.1",
3
+ "version": "2.36.2",
4
4
  "description": "The Node.js Application Server",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -35,11 +35,11 @@
35
35
  "pino-pretty": "^13.0.0",
36
36
  "split2": "^4.2.0",
37
37
  "table": "^6.8.2",
38
- "@platformatic/basic": "2.35.1",
39
- "@platformatic/control": "2.35.1",
40
- "@platformatic/config": "2.35.1",
41
- "@platformatic/runtime": "2.35.1",
42
- "@platformatic/utils": "2.35.1"
38
+ "@platformatic/basic": "2.36.2",
39
+ "@platformatic/config": "2.36.2",
40
+ "@platformatic/runtime": "2.36.2",
41
+ "@platformatic/utils": "2.36.2",
42
+ "@platformatic/control": "2.36.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "borp": "^0.19.0",
@@ -49,7 +49,7 @@
49
49
  "neostandard": "^0.12.0",
50
50
  "typescript": "^5.5.4",
51
51
  "undici": "^7.0.0",
52
- "@platformatic/node": "2.35.1"
52
+ "@platformatic/node": "2.36.2"
53
53
  },
54
54
  "scripts": {
55
55
  "test": "npm run lint && borp --concurrency=1 --timeout=300000",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/wattpm/2.35.1.json",
2
+ "$id": "https://schemas.platformatic.dev/wattpm/2.36.2.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -180,6 +180,12 @@
180
180
  }
181
181
  ]
182
182
  },
183
+ "arguments": {
184
+ "type": "array",
185
+ "items": {
186
+ "type": "string"
187
+ }
188
+ },
183
189
  "nodeOptions": {
184
190
  "type": "string"
185
191
  }
@@ -330,6 +336,12 @@
330
336
  },
331
337
  "additionalProperties": false
332
338
  },
339
+ "arguments": {
340
+ "type": "array",
341
+ "items": {
342
+ "type": "string"
343
+ }
344
+ },
333
345
  "env": {
334
346
  "type": "object",
335
347
  "additionalProperties": {
@@ -368,6 +380,40 @@
368
380
  },
369
381
  "nodeOptions": {
370
382
  "type": "string"
383
+ },
384
+ "telemetry": {
385
+ "type": "object",
386
+ "properties": {
387
+ "instrumentations": {
388
+ "type": "array",
389
+ "description": "An array of instrumentations loaded if telemetry is enabled",
390
+ "items": {
391
+ "oneOf": [
392
+ {
393
+ "type": "string"
394
+ },
395
+ {
396
+ "type": "object",
397
+ "properties": {
398
+ "package": {
399
+ "type": "string"
400
+ },
401
+ "exportName": {
402
+ "type": "string"
403
+ },
404
+ "options": {
405
+ "type": "object",
406
+ "additionalProperties": true
407
+ }
408
+ },
409
+ "required": [
410
+ "package"
411
+ ]
412
+ }
413
+ ]
414
+ }
415
+ }
416
+ }
371
417
  }
372
418
  }
373
419
  }
@@ -526,6 +572,12 @@
526
572
  },
527
573
  "additionalProperties": false
528
574
  },
575
+ "arguments": {
576
+ "type": "array",
577
+ "items": {
578
+ "type": "string"
579
+ }
580
+ },
529
581
  "env": {
530
582
  "type": "object",
531
583
  "additionalProperties": {
@@ -564,6 +616,40 @@
564
616
  },
565
617
  "nodeOptions": {
566
618
  "type": "string"
619
+ },
620
+ "telemetry": {
621
+ "type": "object",
622
+ "properties": {
623
+ "instrumentations": {
624
+ "type": "array",
625
+ "description": "An array of instrumentations loaded if telemetry is enabled",
626
+ "items": {
627
+ "oneOf": [
628
+ {
629
+ "type": "string"
630
+ },
631
+ {
632
+ "type": "object",
633
+ "properties": {
634
+ "package": {
635
+ "type": "string"
636
+ },
637
+ "exportName": {
638
+ "type": "string"
639
+ },
640
+ "options": {
641
+ "type": "object",
642
+ "additionalProperties": true
643
+ }
644
+ },
645
+ "required": [
646
+ "package"
647
+ ]
648
+ }
649
+ ]
650
+ }
651
+ }
652
+ }
567
653
  }
568
654
  }
569
655
  }