@platformatic/runtime 2.38.0 → 2.39.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.
package/config.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * and run json-schema-to-typescript to regenerate this file.
6
6
  */
7
7
 
8
- export type HttpsSchemasPlatformaticDevPlatformaticRuntime2380Json = {
8
+ export type HttpsSchemasPlatformaticDevPlatformaticRuntime2390Json = {
9
9
  [k: string]: unknown;
10
10
  } & {
11
11
  $schema?: string;
@@ -145,6 +145,9 @@ export type HttpsSchemasPlatformaticDevPlatformaticRuntime2380Json = {
145
145
  */
146
146
  methods?: [string, ...string[]];
147
147
  cacheTagsHeader?: string;
148
+ maxSize?: number;
149
+ maxEntrySize?: number;
150
+ maxCount?: number;
148
151
  [k: string]: unknown;
149
152
  };
150
153
  watch?: boolean | string;
package/lib/schema.js CHANGED
@@ -302,6 +302,15 @@ const platformaticRuntimeSchema = {
302
302
  },
303
303
  cacheTagsHeader: {
304
304
  type: 'string'
305
+ },
306
+ maxSize: {
307
+ type: 'integer'
308
+ },
309
+ maxEntrySize: {
310
+ type: 'integer'
311
+ },
312
+ maxCount: {
313
+ type: 'integer'
305
314
  }
306
315
  }
307
316
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/runtime",
3
- "version": "2.38.0",
3
+ "version": "2.39.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -36,12 +36,12 @@
36
36
  "typescript": "^5.5.4",
37
37
  "undici-oidc-interceptor": "^0.5.0",
38
38
  "why-is-node-running": "^2.2.2",
39
- "@platformatic/composer": "2.38.0",
40
- "@platformatic/db": "2.38.0",
41
- "@platformatic/node": "2.38.0",
42
- "@platformatic/service": "2.38.0",
43
- "@platformatic/sql-mapper": "2.38.0",
44
- "@platformatic/sql-graphql": "2.38.0"
39
+ "@platformatic/composer": "2.39.0",
40
+ "@platformatic/db": "2.39.0",
41
+ "@platformatic/node": "2.39.0",
42
+ "@platformatic/service": "2.39.0",
43
+ "@platformatic/sql-graphql": "2.39.0",
44
+ "@platformatic/sql-mapper": "2.39.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "@fastify/accepts": "^5.0.0",
@@ -75,13 +75,13 @@
75
75
  "undici": "^7.0.0",
76
76
  "undici-thread-interceptor": "^0.11.0",
77
77
  "ws": "^8.16.0",
78
- "@platformatic/basic": "2.38.0",
79
- "@platformatic/config": "2.38.0",
80
- "@platformatic/generators": "2.38.0",
81
- "@platformatic/telemetry": "2.38.0",
82
- "@platformatic/itc": "2.38.0",
83
- "@platformatic/ts-compiler": "2.38.0",
84
- "@platformatic/utils": "2.38.0"
78
+ "@platformatic/basic": "2.39.0",
79
+ "@platformatic/generators": "2.39.0",
80
+ "@platformatic/config": "2.39.0",
81
+ "@platformatic/itc": "2.39.0",
82
+ "@platformatic/telemetry": "2.39.0",
83
+ "@platformatic/ts-compiler": "2.39.0",
84
+ "@platformatic/utils": "2.39.0"
85
85
  },
86
86
  "scripts": {
87
87
  "test": "npm run lint && borp --concurrency=1 --timeout=300000 && tsd",
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/runtime/2.38.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/runtime/2.39.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "type": "object",
5
5
  "properties": {
@@ -1067,6 +1067,15 @@
1067
1067
  },
1068
1068
  "cacheTagsHeader": {
1069
1069
  "type": "string"
1070
+ },
1071
+ "maxSize": {
1072
+ "type": "integer"
1073
+ },
1074
+ "maxEntrySize": {
1075
+ "type": "integer"
1076
+ },
1077
+ "maxCount": {
1078
+ "type": "integer"
1070
1079
  }
1071
1080
  }
1072
1081
  }