arkos 1.2.30-test → 1.2.31-test
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/cjs/modules/auth/auth.router.js +8 -82
- package/dist/cjs/modules/auth/auth.router.js.map +1 -1
- package/dist/cjs/modules/base/utils/helpers/base.router.helpers.js +9 -93
- package/dist/cjs/modules/base/utils/helpers/base.router.helpers.js.map +1 -1
- package/dist/cjs/modules/error-handler/utils/catch-async.js.map +1 -1
- package/dist/cjs/modules/file-upload/file-upload.router.js +6 -19
- package/dist/cjs/modules/file-upload/file-upload.router.js.map +1 -1
- package/dist/cjs/modules/file-upload/utils/helpers/file-upload.helpers.js +7 -0
- package/dist/cjs/modules/file-upload/utils/helpers/file-upload.helpers.js.map +1 -1
- package/dist/cjs/server.js +1 -1
- package/dist/cjs/server.js.map +1 -1
- package/dist/cjs/utils/cli/dev.js +5 -5
- package/dist/cjs/utils/cli/dev.js.map +1 -1
- package/dist/cjs/utils/cli/utils/cli.helpers.js +1 -1
- package/dist/cjs/utils/features/api.features.js +9 -3
- package/dist/cjs/utils/features/api.features.js.map +1 -1
- package/dist/cjs/utils/helpers/routers.helpers.js +21 -0
- package/dist/cjs/utils/helpers/routers.helpers.js.map +1 -0
- package/dist/cjs/utils/sheu.js +101 -125
- package/dist/cjs/utils/sheu.js.map +1 -1
- package/dist/esm/modules/auth/auth.router.js +8 -82
- package/dist/esm/modules/auth/auth.router.js.map +1 -1
- package/dist/esm/modules/base/utils/helpers/base.router.helpers.js +9 -93
- package/dist/esm/modules/base/utils/helpers/base.router.helpers.js.map +1 -1
- package/dist/esm/modules/error-handler/utils/catch-async.js.map +1 -1
- package/dist/esm/modules/file-upload/file-upload.router.js +6 -19
- package/dist/esm/modules/file-upload/file-upload.router.js.map +1 -1
- package/dist/esm/modules/file-upload/utils/helpers/file-upload.helpers.js +6 -0
- package/dist/esm/modules/file-upload/utils/helpers/file-upload.helpers.js.map +1 -1
- package/dist/esm/server.js +1 -1
- package/dist/esm/server.js.map +1 -1
- package/dist/esm/utils/cli/dev.js +5 -5
- package/dist/esm/utils/cli/dev.js.map +1 -1
- package/dist/esm/utils/cli/utils/cli.helpers.js +1 -1
- package/dist/esm/utils/features/api.features.js +9 -3
- package/dist/esm/utils/features/api.features.js.map +1 -1
- package/dist/esm/utils/helpers/routers.helpers.js +16 -0
- package/dist/esm/utils/helpers/routers.helpers.js.map +1 -0
- package/dist/esm/utils/sheu.js +101 -125
- package/dist/esm/utils/sheu.js.map +1 -1
- package/dist/types/modules/error-handler/utils/catch-async.d.ts +1 -0
- package/dist/types/modules/file-upload/utils/helpers/file-upload.helpers.d.ts +2 -1
- package/dist/types/utils/features/api.features.d.ts +1 -0
- package/dist/types/utils/helpers/routers.helpers.d.ts +2 -0
- package/dist/types/utils/sheu.d.ts +66 -21
- package/package.json +1 -1
|
@@ -1,25 +1,70 @@
|
|
|
1
1
|
declare class Sheu {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
2
|
+
private getTimestamp;
|
|
3
|
+
private formatText;
|
|
4
|
+
private getColorCode;
|
|
5
|
+
red(text: string, options?: {
|
|
6
|
+
timestamp?: boolean | string;
|
|
7
|
+
bold?: boolean;
|
|
8
|
+
}): string;
|
|
9
|
+
blue(text: string, options?: {
|
|
10
|
+
timestamp?: boolean | string;
|
|
11
|
+
bold?: boolean;
|
|
12
|
+
}): string;
|
|
13
|
+
green(text: string, options?: {
|
|
14
|
+
timestamp?: boolean | string;
|
|
15
|
+
bold?: boolean;
|
|
16
|
+
}): string;
|
|
17
|
+
yellow(text: string, options?: {
|
|
18
|
+
timestamp?: boolean | string;
|
|
19
|
+
bold?: boolean;
|
|
20
|
+
}): string;
|
|
21
|
+
cyan(text: string, options?: {
|
|
22
|
+
timestamp?: boolean | string;
|
|
23
|
+
bold?: boolean;
|
|
24
|
+
}): string;
|
|
25
|
+
magenta(text: string, options?: {
|
|
26
|
+
timestamp?: boolean | string;
|
|
27
|
+
bold?: boolean;
|
|
28
|
+
}): string;
|
|
29
|
+
white(text: string, options?: {
|
|
30
|
+
timestamp?: boolean | string;
|
|
31
|
+
bold?: boolean;
|
|
32
|
+
}): string;
|
|
33
|
+
black(text: string, options?: {
|
|
34
|
+
timestamp?: boolean | string;
|
|
35
|
+
bold?: boolean;
|
|
36
|
+
}): string;
|
|
37
|
+
gray(text: string, options?: {
|
|
38
|
+
timestamp?: boolean | string;
|
|
39
|
+
bold?: boolean;
|
|
40
|
+
}): string;
|
|
41
|
+
orange(text: string, options?: {
|
|
42
|
+
timestamp?: boolean | string;
|
|
43
|
+
bold?: boolean;
|
|
44
|
+
}): string;
|
|
45
|
+
bold(text: string, options?: {
|
|
46
|
+
timestamp?: boolean | string;
|
|
47
|
+
}): string;
|
|
48
|
+
info(message: string, options?: {
|
|
49
|
+
timestamp?: boolean | string;
|
|
50
|
+
bold?: boolean;
|
|
51
|
+
}): string;
|
|
52
|
+
error(message: string, options?: {
|
|
53
|
+
timestamp?: boolean | string;
|
|
54
|
+
bold?: boolean;
|
|
55
|
+
}): string;
|
|
56
|
+
ready(message: string, options?: {
|
|
57
|
+
timestamp?: boolean | string;
|
|
58
|
+
bold?: boolean;
|
|
59
|
+
}): string;
|
|
60
|
+
done(message: string, options?: {
|
|
61
|
+
timestamp?: boolean | string;
|
|
62
|
+
bold?: boolean;
|
|
63
|
+
}): string;
|
|
64
|
+
warn(message: string, options?: {
|
|
65
|
+
timestamp?: boolean | string;
|
|
66
|
+
bold?: boolean;
|
|
67
|
+
}): string;
|
|
23
68
|
}
|
|
24
69
|
declare const sheu: Sheu;
|
|
25
70
|
export default sheu;
|