@gerync/utils 1.2.0 → 1.2.1
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/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,8 @@ import coloredlog from "./functions/Colorlog.js";
|
|
|
2
2
|
import errorHandler from "./functions/handleError.js";
|
|
3
3
|
import config from "./functions/Config.js";
|
|
4
4
|
import object from "./functions/ObjectKeys.js";
|
|
5
|
-
|
|
5
|
+
import { encryptData, decryptData } from "./functions/Encrypt.js";
|
|
6
|
+
export { coloredlog, errorHandler, object, config, encryptData, decryptData };
|
|
6
7
|
export declare const conf: (options: {
|
|
7
8
|
responses: any;
|
|
8
9
|
prefs: any;
|
|
@@ -34,6 +35,8 @@ declare const _default: {
|
|
|
34
35
|
KeysInRangeDetailed: typeof import("./functions/ObjectKeys.js").KeysInRangeDetailed;
|
|
35
36
|
AllowedKeys: typeof import("./functions/ObjectKeys.js").AllowedKeys;
|
|
36
37
|
};
|
|
38
|
+
encryptData: typeof encryptData;
|
|
39
|
+
decryptData: typeof decryptData;
|
|
37
40
|
};
|
|
38
41
|
export default _default;
|
|
39
42
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,yBAAyB,CAAC;AACjD,OAAO,YAAY,MAAM,4BAA4B,CAAC;AACtD,OAAO,MAAM,MAAM,uBAAuB,CAAC;AAC3C,OAAO,MAAM,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,yBAAyB,CAAC;AACjD,OAAO,YAAY,MAAM,4BAA4B,CAAC;AACtD,OAAO,MAAM,MAAM,uBAAuB,CAAC;AAC3C,OAAO,MAAM,MAAM,2BAA2B,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAElE,OAAO,EACH,UAAU,EACV,YAAY,EACZ,MAAM,EACN,MAAM,EACN,WAAW,EACX,WAAW,EACd,CAAC;AAEF,eAAO,MAAM,IAAI;;;UAAc,CAAC;AAChC,eAAO,MAAM,SAAS;;;UAAgB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvC,wBAOE"}
|
package/dist/index.js
CHANGED
|
@@ -2,12 +2,15 @@ import coloredlog from "./functions/Colorlog.js";
|
|
|
2
2
|
import errorHandler from "./functions/handleError.js";
|
|
3
3
|
import config from "./functions/Config.js";
|
|
4
4
|
import object from "./functions/ObjectKeys.js";
|
|
5
|
-
|
|
5
|
+
import { encryptData, decryptData } from "./functions/Encrypt.js";
|
|
6
|
+
export { coloredlog, errorHandler, object, config, encryptData, decryptData };
|
|
6
7
|
export const conf = config.conf;
|
|
7
8
|
export const configure = config.config;
|
|
8
9
|
export default {
|
|
9
10
|
coloredlog,
|
|
10
11
|
errorHandler,
|
|
11
12
|
config,
|
|
12
|
-
object
|
|
13
|
+
object,
|
|
14
|
+
encryptData,
|
|
15
|
+
decryptData
|
|
13
16
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gerync/utils",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "A collection of utilities for any type of project, providing logging, error handling, configuration management, and object manipulation helpers.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|