@dnax/core 0.76.5 → 0.76.6

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
@@ -98,9 +98,7 @@ function HonoInstance(): typeof app {
98
98
  );
99
99
 
100
100
  app.use(secureHeaders());
101
- //app.use(compress());
102
101
 
103
- //eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjoibm9tIiwiaWF0IjoxNzE3Nzc0MDQzLCJleHAiOjE3MTc3NzQxMDN9.Ud4-0y8pa4SMIcSn8PU1A-sjC-hT4ZVe_u3AdChyIJU
104
102
  // Middlewares Injection
105
103
  app.use(async (c, next) => {
106
104
  return asyncLocalStorage.run(new Map(), async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.76.5",
3
+ "version": "0.76.6",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {},
package/utils/index.ts CHANGED
@@ -24,6 +24,7 @@ import { getPidUsage } from "./os";
24
24
  import { deepEqual } from "json-joy/lib/json-equal/deepEqual";
25
25
  import type { SupportedCryptoAlgorithms } from "bun";
26
26
  //import {applyPatch} from "json-joy/lib/json-patch"
27
+ import cleanDeep from "clean-deep";
27
28
 
28
29
  function copy(data: object): object | any {
29
30
  return deepCopy(data);
@@ -633,4 +634,5 @@ export {
633
634
  useKey,
634
635
  getRecentDate,
635
636
  getPidUsage,
637
+ cleanDeep,
636
638
  };