@platformatic/service 2.70.0 → 2.71.0-alpha.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.
Files changed (3) hide show
  1. package/config.d.ts +1 -0
  2. package/package.json +11 -11
  3. package/schema.json +14 -2
package/config.d.ts CHANGED
@@ -625,6 +625,7 @@ export interface PlatformaticService {
625
625
  [k: string]: unknown;
626
626
  };
627
627
  serviceTimeout?: number | string;
628
+ messagingTimeout?: number | string;
628
629
  env?: {
629
630
  [k: string]: string;
630
631
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/service",
3
- "version": "2.70.0",
3
+ "version": "2.71.0-alpha.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -75,18 +75,18 @@
75
75
  "rfdc": "^1.3.1",
76
76
  "semgrator": "^0.3.0",
77
77
  "undici": "^7.0.0",
78
- "@platformatic/client": "2.70.0",
79
- "@platformatic/config": "2.70.0",
80
- "@platformatic/metrics": "2.70.0",
81
- "@platformatic/scalar-theme": "2.70.0",
82
- "@platformatic/generators": "2.70.0",
83
- "@platformatic/telemetry": "2.70.0",
84
- "@platformatic/ts-compiler": "2.70.0",
85
- "@platformatic/utils": "2.70.0"
78
+ "@platformatic/client": "2.71.0-alpha.1",
79
+ "@platformatic/config": "2.71.0-alpha.1",
80
+ "@platformatic/metrics": "2.71.0-alpha.1",
81
+ "@platformatic/generators": "2.71.0-alpha.1",
82
+ "@platformatic/scalar-theme": "2.71.0-alpha.1",
83
+ "@platformatic/telemetry": "2.71.0-alpha.1",
84
+ "@platformatic/ts-compiler": "2.71.0-alpha.1",
85
+ "@platformatic/utils": "2.71.0-alpha.1"
86
86
  },
87
87
  "scripts": {
88
- "test": "pnpm run lint && borp -T --concurrency=1 --timeout=300000 && tsd",
89
- "unit": "borp --pattern 'test/**/*.test.{js,mjs}' --ignore 'fixtures/**/*' --concurrency=1 --timeout=300000 --no-typescript",
88
+ "test": "pnpm run lint && borp -T --concurrency=1 --timeout=1200000 && tsd",
89
+ "unit": "borp --pattern 'test/**/*.test.{js,mjs}' --ignore 'fixtures/**/*' --concurrency=1 --timeout=1200000 --no-typescript",
90
90
  "gen-schema": "node lib/schema.js > schema.json",
91
91
  "gen-types": "json2ts > config.d.ts < schema.json",
92
92
  "build": "pnpm run gen-schema && pnpm run gen-types",
package/schema.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/service/2.70.0.json",
3
- "version": "2.70.0",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/service/2.71.0-alpha.1.json",
3
+ "version": "2.71.0-alpha.1",
4
4
  "title": "Platformatic Service",
5
5
  "type": "object",
6
6
  "properties": {
@@ -2066,6 +2066,18 @@
2066
2066
  ],
2067
2067
  "default": 300000
2068
2068
  },
2069
+ "messagingTimeout": {
2070
+ "anyOf": [
2071
+ {
2072
+ "type": "number",
2073
+ "minimum": 1
2074
+ },
2075
+ {
2076
+ "type": "string"
2077
+ }
2078
+ ],
2079
+ "default": 30000
2080
+ },
2069
2081
  "env": {
2070
2082
  "type": "object",
2071
2083
  "additionalProperties": {