@graphql-mesh/types 0.94.1 → 0.94.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.
@@ -165,6 +165,10 @@ exports.jsonSchema = {
165
165
  type: 'string',
166
166
  description: 'Configure Express Proxy Handling\n[Learn more](https://expressjs.com/en/guide/behind-proxies.html)',
167
167
  },
168
+ batchingLimit: {
169
+ type: 'integer',
170
+ description: 'Enable and define a limit for [Request Batching](https://github.com/graphql/graphql-over-http/blob/main/rfcs/Batching.md)',
171
+ },
168
172
  },
169
173
  },
170
174
  CorsConfig: {
@@ -161,6 +161,10 @@
161
161
  "trustProxy": {
162
162
  "type": "string",
163
163
  "description": "Configure Express Proxy Handling\n[Learn more](https://expressjs.com/en/guide/behind-proxies.html)"
164
+ },
165
+ "batchingLimit": {
166
+ "type": "integer",
167
+ "description": "Enable and define a limit for [Request Batching](https://github.com/graphql/graphql-over-http/blob/main/rfcs/Batching.md)"
164
168
  }
165
169
  }
166
170
  },
@@ -162,6 +162,10 @@ export const jsonSchema = {
162
162
  type: 'string',
163
163
  description: 'Configure Express Proxy Handling\n[Learn more](https://expressjs.com/en/guide/behind-proxies.html)',
164
164
  },
165
+ batchingLimit: {
166
+ type: 'integer',
167
+ description: 'Enable and define a limit for [Request Batching](https://github.com/graphql/graphql-over-http/blob/main/rfcs/Batching.md)',
168
+ },
165
169
  },
166
170
  },
167
171
  CorsConfig: {
@@ -161,6 +161,10 @@
161
161
  "trustProxy": {
162
162
  "type": "string",
163
163
  "description": "Configure Express Proxy Handling\n[Learn more](https://expressjs.com/en/guide/behind-proxies.html)"
164
+ },
165
+ "batchingLimit": {
166
+ "type": "integer",
167
+ "description": "Enable and define a limit for [Request Batching](https://github.com/graphql/graphql-over-http/blob/main/rfcs/Batching.md)"
164
168
  }
165
169
  }
166
170
  },
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@graphql-mesh/types",
3
- "version": "0.94.1",
3
+ "version": "0.94.2",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
- "@graphql-mesh/store": "^0.94.1",
6
+ "@graphql-mesh/store": "^0.94.2",
7
7
  "@graphql-tools/utils": "^9.2.1 || ^10.0.0",
8
8
  "graphql": "*",
9
9
  "tslib": "^2.4.0"
@@ -105,6 +105,10 @@ export interface ServeConfig {
105
105
  * [Learn more](https://expressjs.com/en/guide/behind-proxies.html)
106
106
  */
107
107
  trustProxy?: string;
108
+ /**
109
+ * Enable and define a limit for [Request Batching](https://github.com/graphql/graphql-over-http/blob/main/rfcs/Batching.md)
110
+ */
111
+ batchingLimit?: number;
108
112
  }
109
113
  /**
110
114
  * Configuration for CORS
@@ -105,6 +105,10 @@ export interface ServeConfig {
105
105
  * [Learn more](https://expressjs.com/en/guide/behind-proxies.html)
106
106
  */
107
107
  trustProxy?: string;
108
+ /**
109
+ * Enable and define a limit for [Request Batching](https://github.com/graphql/graphql-over-http/blob/main/rfcs/Batching.md)
110
+ */
111
+ batchingLimit?: number;
108
112
  }
109
113
  /**
110
114
  * Configuration for CORS