jax-hono 1.0.8 → 1.0.9

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.
@@ -105,7 +105,7 @@ export abstract class ApiController extends Controller {
105
105
  return c.fail("数据获取失败");
106
106
  }
107
107
 
108
- return c.ok(await this.formatItem(doc));
108
+ return c.ok(await this._formatItem(doc));
109
109
  }
110
110
 
111
111
  async create(c: Context) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jax-hono",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Lightweight framework layer on top of Hono, built for Bun",
5
5
  "type": "module",
6
6
  "main": "./index.ts",