@8ms/helpers 2.3.33 → 2.3.34

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.
@@ -1,5 +1,5 @@
1
- import { BaseNamespace } from "../../../_class/index.mjs";
2
1
  import { u as ApiResponseClass } from "../../../api-DGKJDAfb.mjs";
2
+ import { BaseNamespace } from "../../../_class/index.mjs";
3
3
  import { n as isResponse200, t as getConfig } from "../../../server-Bwy4JI8Z.mjs";
4
4
 
5
5
  //#region src/aws/lambda/server/AwsLambdaNamespace.ts
@@ -10,6 +10,12 @@ declare const getDecrypt: (appSalt: string, input: string, salt: string) => stri
10
10
  */
11
11
  declare const getEncrypt: (appSalt: string, input: string, salt: string) => string;
12
12
  //#endregion
13
+ //#region src/crypto/getMd5.d.ts
14
+ /**
15
+ * Encrypt a string using md5.
16
+ */
17
+ declare const getMd5: (input: any) => string;
18
+ //#endregion
13
19
  //#region src/crypto/getRandom.d.ts
14
20
  /**
15
21
  * Create a random string and return a number of characters from it.
@@ -22,4 +28,4 @@ declare const getRandom: (length: number) => string;
22
28
  */
23
29
  declare const getSha256: (input: any) => string;
24
30
  //#endregion
25
- export { getDecrypt, getEncrypt, getRandom, getSha256 };
31
+ export { getDecrypt, getEncrypt, getMd5, getRandom, getSha256 };
@@ -33,6 +33,17 @@ const getEncrypt = (appSalt, input, salt) => {
33
33
  return iv.toString("hex") + ":" + encrypted.toString("hex");
34
34
  };
35
35
 
36
+ //#endregion
37
+ //#region src/crypto/getMd5.ts
38
+ /**
39
+ * Encrypt a string using md5.
40
+ */
41
+ const getMd5 = (input) => {
42
+ const crypto = __require("crypto");
43
+ const inputString = getString(input);
44
+ return crypto.createHash("md5").update(inputString).digest("hex");
45
+ };
46
+
36
47
  //#endregion
37
48
  //#region src/crypto/getRandom.ts
38
49
  /**
@@ -54,4 +65,4 @@ const getSha256 = (input) => {
54
65
  };
55
66
 
56
67
  //#endregion
57
- export { getDecrypt, getEncrypt, getRandom, getSha256 };
68
+ export { getDecrypt, getEncrypt, getMd5, getRandom, getSha256 };
@@ -1,6 +1,6 @@
1
- import { BaseNamespace } from "../../_class/index.mjs";
2
1
  import "../../api-DGKJDAfb.mjs";
3
2
  import { get } from "../../axios/index.mjs";
3
+ import { BaseNamespace } from "../../_class/index.mjs";
4
4
  import { onePasswordClient } from "../../onePassword/server/index.mjs";
5
5
 
6
6
  //#region src/googlePageSpeed/server/GooglePageSpeedNamespace.ts
@@ -1,6 +1,6 @@
1
- import { BaseNamespace } from "../../_class/index.mjs";
2
1
  import "../../api-DGKJDAfb.mjs";
3
2
  import { get } from "../../axios/index.mjs";
3
+ import { BaseNamespace } from "../../_class/index.mjs";
4
4
  import { onePasswordClient } from "../../onePassword/server/index.mjs";
5
5
 
6
6
  //#region src/littleWarden/server/LittleWardenNamespace.ts
@@ -1,6 +1,6 @@
1
- import { BaseNamespace } from "../../_class/index.mjs";
2
1
  import "../../api-DGKJDAfb.mjs";
3
2
  import { post } from "../../axios/index.mjs";
3
+ import { BaseNamespace } from "../../_class/index.mjs";
4
4
  import { onePasswordClient } from "../../onePassword/server/index.mjs";
5
5
 
6
6
  //#region src/openAi/server/OpenAiNamespace.ts
@@ -1,6 +1,6 @@
1
- import { BaseNamespace } from "../../_class/index.mjs";
2
1
  import "../../api-DGKJDAfb.mjs";
3
2
  import { post } from "../../axios/index.mjs";
3
+ import { BaseNamespace } from "../../_class/index.mjs";
4
4
  import { onePasswordClient } from "../../onePassword/server/index.mjs";
5
5
  import { DateTime } from "luxon";
6
6
 
@@ -1,6 +1,6 @@
1
- import { BaseNamespace } from "../../_class/index.mjs";
2
1
  import "../../api-DGKJDAfb.mjs";
3
2
  import { post } from "../../axios/index.mjs";
3
+ import { BaseNamespace } from "../../_class/index.mjs";
4
4
  import { onePasswordClient } from "../../onePassword/server/index.mjs";
5
5
 
6
6
  //#region src/upTimeRobot/server/UpTimeRobotNamespace.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@8ms/helpers",
3
3
  "license": "UNLICENSED",
4
- "version": "2.3.33",
4
+ "version": "2.3.34",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/8millionstories-organisation/8ms-helpers-ts.git"