@jayfong/x-server 1.27.2 → 1.27.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.27.3](https://github.com/jfWorks/x-server/compare/v1.27.2...v1.27.3) (2022-05-11)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * api gen ([5e0086f](https://github.com/jfWorks/x-server/commit/5e0086f166bf629f0a68ddea367816abf40197f0))
11
+
5
12
  ### [1.27.2](https://github.com/jfWorks/x-server/compare/v1.27.1...v1.27.2) (2022-05-11)
6
13
 
7
14
 
@@ -190,7 +190,6 @@ class ApiGenerator {
190
190
  method: handle.method.toUpperCase(),
191
191
  title: handle.name,
192
192
  path: handle.path,
193
- req_body_type: 'query',
194
193
  res_body_type: 'json',
195
194
  req_body_is_json_schema: false,
196
195
  res_body_is_json_schema: true,
@@ -174,7 +174,6 @@ export class ApiGenerator {
174
174
  method: handle.method.toUpperCase(),
175
175
  title: handle.name,
176
176
  path: handle.path,
177
- req_body_type: 'query',
178
177
  res_body_type: 'json',
179
178
  req_body_is_json_schema: false,
180
179
  res_body_is_json_schema: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jayfong/x-server",
3
- "version": "1.27.2",
3
+ "version": "1.27.3",
4
4
  "license": "ISC",
5
5
  "sideEffects": false,
6
6
  "main": "lib/_cjs/index.js",