@hed-hog/core 0.0.297 → 0.0.298
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/auth/auth.controller.d.ts +10 -10
- package/dist/auth/auth.service.d.ts +10 -10
- package/dist/dashboard/dashboard-core/dashboard-core.controller.d.ts +14 -0
- package/dist/dashboard/dashboard-core/dashboard-core.controller.d.ts.map +1 -1
- package/dist/dashboard/dashboard-core/dashboard-core.controller.js +9 -0
- package/dist/dashboard/dashboard-core/dashboard-core.controller.js.map +1 -1
- package/dist/dashboard/dashboard-core/dashboard-core.module.d.ts.map +1 -1
- package/dist/dashboard/dashboard-core/dashboard-core.module.js +6 -1
- package/dist/dashboard/dashboard-core/dashboard-core.module.js.map +1 -1
- package/dist/dashboard/dashboard-core/dashboard-core.service.d.ts +173 -1
- package/dist/dashboard/dashboard-core/dashboard-core.service.d.ts.map +1 -1
- package/dist/dashboard/dashboard-core/dashboard-core.service.js +531 -5
- package/dist/dashboard/dashboard-core/dashboard-core.service.js.map +1 -1
- package/dist/file/file.controller.d.ts.map +1 -1
- package/dist/file/file.controller.js +16 -0
- package/dist/file/file.controller.js.map +1 -1
- package/dist/file/file.service.d.ts +7 -1
- package/dist/file/file.service.d.ts.map +1 -1
- package/dist/file/file.service.js +38 -1
- package/dist/file/file.service.js.map +1 -1
- package/dist/file/provider/s3.provider.d.ts +1 -0
- package/dist/file/provider/s3.provider.d.ts.map +1 -1
- package/dist/file/provider/s3.provider.js +38 -29
- package/dist/file/provider/s3.provider.js.map +1 -1
- package/dist/oauth/oauth.service.d.ts.map +1 -1
- package/dist/oauth/oauth.service.js +2 -1
- package/dist/oauth/oauth.service.js.map +1 -1
- package/dist/user/constants/user.constants.d.ts +1 -0
- package/dist/user/constants/user.constants.d.ts.map +1 -1
- package/dist/user/constants/user.constants.js +2 -1
- package/dist/user/constants/user.constants.js.map +1 -1
- package/dist/user/user.controller.d.ts +10 -10
- package/dist/user/user.service.d.ts +30 -30
- package/dist/user/user.service.d.ts.map +1 -1
- package/dist/user/user.service.js +2 -1
- package/dist/user/user.service.js.map +1 -1
- package/hedhog/data/dashboard_item.yaml +11 -11
- package/hedhog/data/route.yaml +8 -0
- package/hedhog/frontend/app/dashboard/[slug]/dashboard-content.tsx.ejs +76 -15
- package/hedhog/frontend/app/dashboard/components/widgets/email-notifications.tsx.ejs +85 -61
- package/hedhog/frontend/app/dashboard/components/widgets/locale-config.tsx.ejs +139 -280
- package/hedhog/frontend/app/dashboard/components/widgets/mail-config.tsx.ejs +161 -407
- package/hedhog/frontend/app/dashboard/components/widgets/oauth-config.tsx.ejs +150 -271
- package/hedhog/frontend/app/dashboard/components/widgets/profile-card.tsx.ejs +3 -3
- package/hedhog/frontend/app/dashboard/components/widgets/storage-config.tsx.ejs +161 -305
- package/hedhog/frontend/app/dashboard/components/widgets/theme-config.tsx.ejs +184 -246
- package/hedhog/frontend/app/dashboard/components/widgets/user-roles.tsx.ejs +12 -14
- package/hedhog/frontend/messages/en.json +90 -0
- package/hedhog/frontend/messages/pt.json +90 -0
- package/hedhog/table/mail_sent_user.yaml +75 -0
- package/package.json +5 -5
- package/src/dashboard/dashboard-core/dashboard-core.controller.ts +5 -0
- package/src/dashboard/dashboard-core/dashboard-core.module.ts +6 -1
- package/src/dashboard/dashboard-core/dashboard-core.service.ts +766 -3
- package/src/file/file.controller.ts +37 -13
- package/src/file/file.service.ts +47 -5
- package/src/file/provider/s3.provider.ts +39 -29
- package/src/oauth/oauth.service.ts +8 -7
- package/src/user/constants/user.constants.ts +1 -0
- package/src/user/user.service.ts +2 -1
|
@@ -19,6 +19,16 @@ export declare class AuthController {
|
|
|
19
19
|
id: any;
|
|
20
20
|
}, locale: string): Promise<{
|
|
21
21
|
requires_password_reset: boolean;
|
|
22
|
+
user_identifier: {
|
|
23
|
+
value: string;
|
|
24
|
+
type: import("@prisma/client").$Enums.user_identifier_type_e66d505520_enum;
|
|
25
|
+
id: number;
|
|
26
|
+
created_at: Date;
|
|
27
|
+
updated_at: Date;
|
|
28
|
+
user_id: number;
|
|
29
|
+
enabled: boolean;
|
|
30
|
+
verified_at: Date | null;
|
|
31
|
+
}[];
|
|
22
32
|
user_account: {
|
|
23
33
|
id: number;
|
|
24
34
|
provider: import("@prisma/client").$Enums.user_account_provider_52222e2ecb_enum;
|
|
@@ -49,16 +59,6 @@ export declare class AuthController {
|
|
|
49
59
|
revoked_at: Date | null;
|
|
50
60
|
requires_reset: boolean;
|
|
51
61
|
}[];
|
|
52
|
-
user_identifier: {
|
|
53
|
-
value: string;
|
|
54
|
-
type: import("@prisma/client").$Enums.user_identifier_type_e66d505520_enum;
|
|
55
|
-
id: number;
|
|
56
|
-
created_at: Date;
|
|
57
|
-
updated_at: Date;
|
|
58
|
-
user_id: number;
|
|
59
|
-
enabled: boolean;
|
|
60
|
-
verified_at: Date | null;
|
|
61
|
-
}[];
|
|
62
62
|
user_session: {
|
|
63
63
|
id: number;
|
|
64
64
|
hash: string;
|
|
@@ -81,6 +81,16 @@ export declare class AuthService {
|
|
|
81
81
|
}[]>;
|
|
82
82
|
verifyUser(locale: string, userId: number): Promise<{
|
|
83
83
|
requires_password_reset: boolean;
|
|
84
|
+
user_identifier: {
|
|
85
|
+
value: string;
|
|
86
|
+
type: import("@prisma/client").$Enums.user_identifier_type_e66d505520_enum;
|
|
87
|
+
id: number;
|
|
88
|
+
created_at: Date;
|
|
89
|
+
updated_at: Date;
|
|
90
|
+
user_id: number;
|
|
91
|
+
enabled: boolean;
|
|
92
|
+
verified_at: Date | null;
|
|
93
|
+
}[];
|
|
84
94
|
user_account: {
|
|
85
95
|
id: number;
|
|
86
96
|
provider: import("@prisma/client").$Enums.user_account_provider_52222e2ecb_enum;
|
|
@@ -111,16 +121,6 @@ export declare class AuthService {
|
|
|
111
121
|
revoked_at: Date | null;
|
|
112
122
|
requires_reset: boolean;
|
|
113
123
|
}[];
|
|
114
|
-
user_identifier: {
|
|
115
|
-
value: string;
|
|
116
|
-
type: import("@prisma/client").$Enums.user_identifier_type_e66d505520_enum;
|
|
117
|
-
id: number;
|
|
118
|
-
created_at: Date;
|
|
119
|
-
updated_at: Date;
|
|
120
|
-
user_id: number;
|
|
121
|
-
enabled: boolean;
|
|
122
|
-
verified_at: Date | null;
|
|
123
|
-
}[];
|
|
124
124
|
user_session: {
|
|
125
125
|
id: number;
|
|
126
126
|
hash: string;
|
|
@@ -65,6 +65,7 @@ export declare class DashboardCoreController {
|
|
|
65
65
|
};
|
|
66
66
|
};
|
|
67
67
|
}>;
|
|
68
|
+
getConfigOverview(): Promise<import("./dashboard-core.service").DashboardCoreConfigOverview>;
|
|
68
69
|
getWidgetsData(user: any, locale: string): Promise<{
|
|
69
70
|
accountSecurity: {
|
|
70
71
|
score: number;
|
|
@@ -87,6 +88,19 @@ export declare class DashboardCoreController {
|
|
|
87
88
|
action: string;
|
|
88
89
|
created_at: Date;
|
|
89
90
|
}[];
|
|
91
|
+
emailNotifications: {
|
|
92
|
+
cards: {
|
|
93
|
+
received: number;
|
|
94
|
+
read: number;
|
|
95
|
+
unread: number;
|
|
96
|
+
error: number;
|
|
97
|
+
};
|
|
98
|
+
chart: {
|
|
99
|
+
date: string;
|
|
100
|
+
received: number;
|
|
101
|
+
read: number;
|
|
102
|
+
}[];
|
|
103
|
+
};
|
|
90
104
|
loginHistory: {
|
|
91
105
|
day: string;
|
|
92
106
|
logins: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-core.controller.d.ts","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.controller.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE,qBAEa,uBAAuB;IACtB,OAAO,CAAC,QAAQ,CAAC,oBAAoB;gBAApB,oBAAoB,EAAE,oBAAoB;IAGvE,OAAO,CAAS,EAAC,EAAE,EAAC;;KAAA,EAAY,MAAM,EAAE,MAAM;;;;;;IAK9C,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKjB,iBAAiB;;;;;;;;;;;;;;IAKjB,mBAAmB;;;;;;;;;;;;IAKnB,cAAc,CAAS,IAAI,KAAA,EAAY,MAAM,EAAE,MAAM
|
|
1
|
+
{"version":3,"file":"dashboard-core.controller.d.ts","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.controller.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE,qBAEa,uBAAuB;IACtB,OAAO,CAAC,QAAQ,CAAC,oBAAoB;gBAApB,oBAAoB,EAAE,oBAAoB;IAGvE,OAAO,CAAS,EAAC,EAAE,EAAC;;KAAA,EAAY,MAAM,EAAE,MAAM;;;;;;IAK9C,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKjB,iBAAiB;;;;;;;;;;;;;;IAKjB,mBAAmB;;;;;;;;;;;;IAKnB,iBAAiB;IAKjB,cAAc,CAAS,IAAI,KAAA,EAAY,MAAM,EAAE,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKrD,iBAAiB,CAAS,IAAI,KAAA,EAAY,MAAM,EAAE,MAAM;;;;;;;;;;;;IAKxD,WAAW,CAAS,IAAI,KAAA,EAAiB,IAAI,EAAE,MAAM,EAAY,MAAM,EAAE,MAAM;;;;;;;;IAK/E,aAAa,CAAS,IAAI,KAAA,EAAiB,IAAI,EAAE,MAAM,EAAY,MAAM,EAAE,MAAM;;;;;;;;;;;;;;;;IAKjF,cAAc,CACJ,IAAI,KAAA,EACG,IAAI,EAAE,MAAM,EACnB,IAAI,EAAE;QAAE,MAAM,EAAE,KAAK,CAAC;YAAE,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAC;YAAC,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC,CAAA;KAAE;;;IAM5F,SAAS,CACC,IAAI,KAAA,EACG,IAAI,EAAE,MAAM,EACnB,IAAI,EAAE;QAAE,aAAa,EAAE,MAAM,CAAA;KAAE,EAC7B,MAAM,EAAE,MAAM;;;;;;;;;;;;;;;;IAW1B,YAAY,CACF,IAAI,KAAA,EACG,IAAI,EAAE,MAAM,EACR,QAAQ,EAAE,MAAM;IAUrC,QAAQ,CAAgB,IAAI,EAAE,MAAM,EAAY,MAAM,KAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGvD"}
|
|
@@ -33,6 +33,9 @@ let DashboardCoreController = class DashboardCoreController {
|
|
|
33
33
|
getSystemStatistics() {
|
|
34
34
|
return this.dashboardCoreService.getSystemStatistics();
|
|
35
35
|
}
|
|
36
|
+
getConfigOverview() {
|
|
37
|
+
return this.dashboardCoreService.getConfigOverview();
|
|
38
|
+
}
|
|
36
39
|
getWidgetsData(user, locale) {
|
|
37
40
|
return this.dashboardCoreService.getWidgetsData(user.id, locale);
|
|
38
41
|
}
|
|
@@ -85,6 +88,12 @@ __decorate([
|
|
|
85
88
|
__metadata("design:paramtypes", []),
|
|
86
89
|
__metadata("design:returntype", void 0)
|
|
87
90
|
], DashboardCoreController.prototype, "getSystemStatistics", null);
|
|
91
|
+
__decorate([
|
|
92
|
+
(0, common_1.Get)('config/overview'),
|
|
93
|
+
__metadata("design:type", Function),
|
|
94
|
+
__metadata("design:paramtypes", []),
|
|
95
|
+
__metadata("design:returntype", void 0)
|
|
96
|
+
], DashboardCoreController.prototype, "getConfigOverview", null);
|
|
88
97
|
__decorate([
|
|
89
98
|
(0, common_1.Get)('widgets/me'),
|
|
90
99
|
__param(0, (0, api_1.User)()),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-core.controller.js","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,sCAA0C;AAC1C,oDAA6C;AAC7C,2CAA4E;AAC5E,qEAAgE;AAIzD,IAAM,uBAAuB,GAA7B,MAAM,uBAAuB;IAClC,YAA6B,oBAA0C;QAA1C,yBAAoB,GAApB,oBAAoB,CAAsB;IAAG,CAAC;IAG3E,OAAO,CAAS,EAAC,EAAE,EAAC,EAAY,MAAc;QAC5C,OAAO,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC;IACvD,CAAC;IAGD,iBAAiB;QACf,OAAO,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,EAAE,CAAC;IACvD,CAAC;IAGD,iBAAiB;QACf,OAAO,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,EAAE,CAAC;IACvD,CAAC;IAGD,mBAAmB;QACjB,OAAO,IAAI,CAAC,oBAAoB,CAAC,mBAAmB,EAAE,CAAC;IACzD,CAAC;IAGD,cAAc,CAAS,IAAI,EAAY,MAAc;QACnD,OAAO,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC;IACnE,CAAC;IAGD,iBAAiB,CAAS,IAAI,EAAY,MAAc;QACtD,OAAO,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,IAAI,CAAC,EAAE,EAAE,MAAM,CAAC,CAAC;IACtE,CAAC;IAGD,WAAW,CAAS,IAAI,EAAiB,IAAY,EAAY,MAAc;QAC7E,OAAO,IAAI,CAAC,oBAAoB,CAAC,oBAAoB,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;IAC/E,CAAC;IAGD,aAAa,CAAS,IAAI,EAAiB,IAAY,EAAY,MAAc;QAC/E,OAAO,IAAI,CAAC,oBAAoB,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;IACxE,CAAC;IAGD,cAAc,CACJ,IAAI,EACG,IAAY,EACnB,IAAkF;QAE1F,OAAO,IAAI,CAAC,oBAAoB,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;IAC9E,CAAC;IAGD,SAAS,CACC,IAAI,EACG,IAAY,EACnB,IAA+B,EAC7B,MAAc;QAExB,OAAO,IAAI,CAAC,oBAAoB,CAAC,wBAAwB,CACvD,IAAI,CAAC,EAAE,EACP,IAAI,EACJ,IAAI,CAAC,aAAa,EAClB,MAAM,CACP,CAAC;IACJ,CAAC;IAGD,YAAY,CACF,IAAI,EACG,IAAY,EACR,QAAgB;QAEnC,OAAO,IAAI,CAAC,oBAAoB,CAAC,6BAA6B,CAC5D,IAAI,CAAC,EAAE,EACP,IAAI,EACJ,QAAQ,CACT,CAAC;IACJ,CAAC;IAGD,QAAQ,CAAgB,IAAY,EAAY,MAAM;QACpD,OAAO,IAAI,CAAC,oBAAoB,CAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;IAC1D,CAAC;CACF,CAAA;
|
|
1
|
+
{"version":3,"file":"dashboard-core.controller.js","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.controller.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-core.module.d.ts","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dashboard-core.module.d.ts","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.module.ts"],"names":[],"mappings":"AAQA,qBAUa,mBAAmB;CAAG"}
|
|
@@ -10,6 +10,7 @@ exports.DashboardCoreModule = void 0;
|
|
|
10
10
|
const common_1 = require("@nestjs/common");
|
|
11
11
|
const api_locale_1 = require("@hed-hog/api-locale");
|
|
12
12
|
const api_prisma_1 = require("@hed-hog/api-prisma");
|
|
13
|
+
const setting_module_1 = require("../../setting/setting.module");
|
|
13
14
|
const dashboard_core_controller_1 = require("./dashboard-core.controller");
|
|
14
15
|
const dashboard_core_service_1 = require("./dashboard-core.service");
|
|
15
16
|
let DashboardCoreModule = class DashboardCoreModule {
|
|
@@ -17,7 +18,11 @@ let DashboardCoreModule = class DashboardCoreModule {
|
|
|
17
18
|
exports.DashboardCoreModule = DashboardCoreModule;
|
|
18
19
|
exports.DashboardCoreModule = DashboardCoreModule = __decorate([
|
|
19
20
|
(0, common_1.Module)({
|
|
20
|
-
imports: [
|
|
21
|
+
imports: [
|
|
22
|
+
(0, common_1.forwardRef)(() => api_locale_1.LocaleModule),
|
|
23
|
+
(0, common_1.forwardRef)(() => api_prisma_1.PrismaModule),
|
|
24
|
+
(0, common_1.forwardRef)(() => setting_module_1.SettingModule),
|
|
25
|
+
],
|
|
21
26
|
controllers: [dashboard_core_controller_1.DashboardCoreController],
|
|
22
27
|
providers: [dashboard_core_service_1.DashboardCoreService],
|
|
23
28
|
exports: [dashboard_core_service_1.DashboardCoreService],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-core.module.js","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAoD;AAEpD,oDAAmD;AACnD,oDAAmD;AACnD,2EAAsE;AACtE,qEAAgE;
|
|
1
|
+
{"version":3,"file":"dashboard-core.module.js","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAoD;AAEpD,oDAAmD;AACnD,oDAAmD;AACnD,iEAA6D;AAC7D,2EAAsE;AACtE,qEAAgE;AAYzD,IAAM,mBAAmB,GAAzB,MAAM,mBAAmB;CAAG,CAAA;AAAtB,kDAAmB;8BAAnB,mBAAmB;IAV/B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,yBAAY,CAAC;YAC9B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,yBAAY,CAAC;YAC9B,IAAA,mBAAU,EAAC,GAAG,EAAE,CAAC,8BAAa,CAAC;SAChC;QACD,WAAW,EAAE,CAAC,mDAAuB,CAAC;QACtC,SAAS,EAAE,CAAC,6CAAoB,CAAC;QACjC,OAAO,EAAE,CAAC,6CAAoB,CAAC;KAChC,CAAC;GACW,mBAAmB,CAAG"}
|
|
@@ -1,7 +1,152 @@
|
|
|
1
1
|
import { PrismaService } from '@hed-hog/api-prisma';
|
|
2
|
+
import { SettingService } from '../../setting/setting.service';
|
|
3
|
+
type DashboardCoreConfigStatus = {
|
|
4
|
+
isConfigured: boolean;
|
|
5
|
+
};
|
|
6
|
+
type DashboardCoreLocaleConfigOverview = {
|
|
7
|
+
status: DashboardCoreConfigStatus & {
|
|
8
|
+
enabledLocaleCount: number;
|
|
9
|
+
disabledLocaleCount: number;
|
|
10
|
+
};
|
|
11
|
+
settings: {
|
|
12
|
+
dateFormat: string | null;
|
|
13
|
+
timeFormat: string | null;
|
|
14
|
+
timezone: string | null;
|
|
15
|
+
};
|
|
16
|
+
locales: Array<{
|
|
17
|
+
id: number;
|
|
18
|
+
code: string;
|
|
19
|
+
region: string;
|
|
20
|
+
name: string;
|
|
21
|
+
enabled: boolean;
|
|
22
|
+
}>;
|
|
23
|
+
};
|
|
24
|
+
type DashboardCoreMailProviderOverview = {
|
|
25
|
+
id: string;
|
|
26
|
+
label: string;
|
|
27
|
+
selected: boolean;
|
|
28
|
+
configured: boolean;
|
|
29
|
+
missingKeys: string[];
|
|
30
|
+
};
|
|
31
|
+
type DashboardCoreMailConfigOverview = {
|
|
32
|
+
status: DashboardCoreConfigStatus & {
|
|
33
|
+
selectedProvider: string | null;
|
|
34
|
+
configuredProvider: string | null;
|
|
35
|
+
};
|
|
36
|
+
sender: {
|
|
37
|
+
from: string | null;
|
|
38
|
+
};
|
|
39
|
+
metrics: {
|
|
40
|
+
templateCount: number;
|
|
41
|
+
sentCount: number;
|
|
42
|
+
sentLast30Days: number;
|
|
43
|
+
};
|
|
44
|
+
providers: DashboardCoreMailProviderOverview[];
|
|
45
|
+
};
|
|
46
|
+
type DashboardCoreOAuthProviderOverview = {
|
|
47
|
+
id: string;
|
|
48
|
+
label: string;
|
|
49
|
+
enabled: boolean;
|
|
50
|
+
configured: boolean;
|
|
51
|
+
missingKeys: string[];
|
|
52
|
+
scopesCount: number;
|
|
53
|
+
connectedUsers: number;
|
|
54
|
+
};
|
|
55
|
+
type DashboardCoreOAuthConfigOverview = {
|
|
56
|
+
status: DashboardCoreConfigStatus & {
|
|
57
|
+
enabledProviderCount: number;
|
|
58
|
+
configuredProviderCount: number;
|
|
59
|
+
connectedAccountCount: number;
|
|
60
|
+
};
|
|
61
|
+
providers: DashboardCoreOAuthProviderOverview[];
|
|
62
|
+
};
|
|
63
|
+
type DashboardCoreStorageConfigOverview = {
|
|
64
|
+
status: DashboardCoreConfigStatus & {
|
|
65
|
+
totalProfiles: number;
|
|
66
|
+
activeProfiles: number;
|
|
67
|
+
defaultProfileId: number | null;
|
|
68
|
+
};
|
|
69
|
+
providers: Array<{
|
|
70
|
+
providerType: string;
|
|
71
|
+
total: number;
|
|
72
|
+
active: number;
|
|
73
|
+
defaults: number;
|
|
74
|
+
}>;
|
|
75
|
+
profiles: Array<{
|
|
76
|
+
id: number;
|
|
77
|
+
name: string;
|
|
78
|
+
providerType: string;
|
|
79
|
+
bucketName: string;
|
|
80
|
+
region: string | null;
|
|
81
|
+
endpointUrl: string | null;
|
|
82
|
+
basePath: string | null;
|
|
83
|
+
pathTemplate: string | null;
|
|
84
|
+
forcePathStyle: boolean;
|
|
85
|
+
isDefault: boolean;
|
|
86
|
+
isActive: boolean;
|
|
87
|
+
testStatus: string;
|
|
88
|
+
lastTestedAt: Date | null;
|
|
89
|
+
updatedAt: Date;
|
|
90
|
+
}>;
|
|
91
|
+
};
|
|
92
|
+
type DashboardCoreThemePaletteMode = {
|
|
93
|
+
primary: string | null;
|
|
94
|
+
primaryForeground: string | null;
|
|
95
|
+
secondary: string | null;
|
|
96
|
+
secondaryForeground: string | null;
|
|
97
|
+
accent: string | null;
|
|
98
|
+
accentForeground: string | null;
|
|
99
|
+
muted: string | null;
|
|
100
|
+
mutedForeground: string | null;
|
|
101
|
+
background: string | null;
|
|
102
|
+
backgroundForeground: string | null;
|
|
103
|
+
card: string | null;
|
|
104
|
+
cardForeground: string | null;
|
|
105
|
+
};
|
|
106
|
+
type DashboardCoreThemeConfigOverview = {
|
|
107
|
+
status: DashboardCoreConfigStatus & {
|
|
108
|
+
configuredTokenCount: number;
|
|
109
|
+
};
|
|
110
|
+
branding: {
|
|
111
|
+
systemName: string | null;
|
|
112
|
+
systemSlogan: string | null;
|
|
113
|
+
iconUrl: string | null;
|
|
114
|
+
imageUrl: string | null;
|
|
115
|
+
};
|
|
116
|
+
presentation: {
|
|
117
|
+
mode: string | null;
|
|
118
|
+
font: string | null;
|
|
119
|
+
textSize: string | null;
|
|
120
|
+
radius: string | null;
|
|
121
|
+
};
|
|
122
|
+
palette: {
|
|
123
|
+
light: DashboardCoreThemePaletteMode;
|
|
124
|
+
dark: DashboardCoreThemePaletteMode;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
export type DashboardCoreConfigOverview = {
|
|
128
|
+
localeConfig: DashboardCoreLocaleConfigOverview;
|
|
129
|
+
mailConfig: DashboardCoreMailConfigOverview;
|
|
130
|
+
oauthConfig: DashboardCoreOAuthConfigOverview;
|
|
131
|
+
storageConfig: DashboardCoreStorageConfigOverview;
|
|
132
|
+
themeConfig: DashboardCoreThemeConfigOverview;
|
|
133
|
+
};
|
|
2
134
|
export declare class DashboardCoreService {
|
|
3
135
|
private readonly prismaService;
|
|
4
|
-
|
|
136
|
+
private readonly settingService;
|
|
137
|
+
private readonly logger;
|
|
138
|
+
constructor(prismaService: PrismaService, settingService: SettingService);
|
|
139
|
+
getConfigOverview(): Promise<DashboardCoreConfigOverview>;
|
|
140
|
+
private getLocaleConfigOverview;
|
|
141
|
+
private getMailConfigOverview;
|
|
142
|
+
private getOAuthConfigOverview;
|
|
143
|
+
private getStorageConfigOverview;
|
|
144
|
+
private getThemeConfigOverview;
|
|
145
|
+
private getMissingSettingKeys;
|
|
146
|
+
private hasConfigValue;
|
|
147
|
+
private toNullableString;
|
|
148
|
+
private toNullableUppercaseString;
|
|
149
|
+
private normalizeProviderList;
|
|
5
150
|
getHome(userId: number, locale: string): Promise<{
|
|
6
151
|
id: number;
|
|
7
152
|
created_at: Date;
|
|
@@ -209,6 +354,19 @@ export declare class DashboardCoreService {
|
|
|
209
354
|
slug: string;
|
|
210
355
|
name: string;
|
|
211
356
|
}[]>;
|
|
357
|
+
getEmailNotificationStats(userId: number): Promise<{
|
|
358
|
+
cards: {
|
|
359
|
+
received: number;
|
|
360
|
+
read: number;
|
|
361
|
+
unread: number;
|
|
362
|
+
error: number;
|
|
363
|
+
};
|
|
364
|
+
chart: {
|
|
365
|
+
date: string;
|
|
366
|
+
received: number;
|
|
367
|
+
read: number;
|
|
368
|
+
}[];
|
|
369
|
+
}>;
|
|
212
370
|
getWidgetsData(userId: number, locale: string): Promise<{
|
|
213
371
|
accountSecurity: {
|
|
214
372
|
score: number;
|
|
@@ -231,6 +389,19 @@ export declare class DashboardCoreService {
|
|
|
231
389
|
action: string;
|
|
232
390
|
created_at: Date;
|
|
233
391
|
}[];
|
|
392
|
+
emailNotifications: {
|
|
393
|
+
cards: {
|
|
394
|
+
received: number;
|
|
395
|
+
read: number;
|
|
396
|
+
unread: number;
|
|
397
|
+
error: number;
|
|
398
|
+
};
|
|
399
|
+
chart: {
|
|
400
|
+
date: string;
|
|
401
|
+
received: number;
|
|
402
|
+
read: number;
|
|
403
|
+
}[];
|
|
404
|
+
};
|
|
234
405
|
loginHistory: {
|
|
235
406
|
day: string;
|
|
236
407
|
logins: number;
|
|
@@ -274,4 +445,5 @@ export declare class DashboardCoreService {
|
|
|
274
445
|
expires_at: Date;
|
|
275
446
|
}[]>;
|
|
276
447
|
}
|
|
448
|
+
export {};
|
|
277
449
|
//# sourceMappingURL=dashboard-core.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard-core.service.d.ts","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"dashboard-core.service.d.ts","sourceRoot":"","sources":["../../../src/dashboard/dashboard-core/dashboard-core.service.ts"],"names":[],"mappings":"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"}
|