hono-adapter-aws-lambda 1.3.2 → 1.3.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -253,7 +253,7 @@ class TriggerEventProcessor {
253
253
  }
254
254
  }
255
255
  const triggerProcessor = new TriggerEventProcessor();
256
- const triggerPathUUID = `${process.env.SECRET_SALT}-${Date.now()}-${globalThis.crypto.randomUUID()}`;
256
+ const triggerPathUUID = `${process.env.HONO_TRIGGER_SALT}-${Date.now()}-${Math.random()}`;
257
257
  function getTriggerPath(path) {
258
258
  return mergePath(triggerPathUUID, path);
259
259
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hono-adapter-aws-lambda",
3
3
  "type": "module",
4
- "version": "1.3.2",
4
+ "version": "1.3.3",
5
5
  "packageManager": "pnpm@10.11.0",
6
6
  "description": "",
7
7
  "author": "NamesMT <dangquoctrung123@gmail.com>",