@dnax/core 0.63.10 → 0.63.11

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/app/hono.ts CHANGED
@@ -902,6 +902,7 @@ function HonoInstance(): typeof app {
902
902
  io: Cfg.io,
903
903
  router: app,
904
904
  rest: new useRest({ tenant_id: e?.tenant_id }),
905
+ serveStatic: serveStatic,
905
906
  });
906
907
  }
907
908
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.63.10",
3
+ "version": "0.63.11",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {
package/types/index.ts CHANGED
@@ -632,6 +632,7 @@ export type serveStatic = (cf: { root: string }) => void;
632
632
  export type endpointCtx = {
633
633
  enabled: boolean;
634
634
  handler: (ctx: {
635
+ serveStatic: serveStatic;
635
636
  rest: InstanceType<typeof useRest>;
636
637
  io: socketIoType;
637
638
  router: {