@dnax/core 0.7.7 → 0.8.0

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/package.json +3 -2
  2. package/utils/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dnax/core",
3
- "version": "0.7.7",
3
+ "version": "0.8.0",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,9 +38,10 @@
38
38
  "mongodb": "^6.8.0",
39
39
  "nodemailer": "^6.9.14",
40
40
  "radash": "^12.1.0",
41
- "signaldb": "^0.15.0",
41
+ "signaldb": "^0.18.0",
42
42
  "socket.io": "^4.7.5",
43
43
  "ufo": "^1.5.3",
44
+ "urlencode": "^2.0.0",
44
45
  "uuid": "^10.0.0"
45
46
  }
46
47
  }
package/utils/index.ts CHANGED
@@ -9,6 +9,7 @@ import generateUniqueId from "generate-unique-id";
9
9
  import dayjs from "dayjs";
10
10
  import { Otp } from "../lib/opt";
11
11
  import collect from "collect.js";
12
+ import * as urlencode from "urlencode";
12
13
 
13
14
  const JWT_SECRET = process?.env?.JWT_SECRET || "secret-libv";
14
15
  import * as _ from "radash";
@@ -315,4 +316,5 @@ export {
315
316
  omit, // Omit utils
316
317
  collect, // Collect utils
317
318
  Otp, // Otp utils
319
+ urlencode,
318
320
  };