@hitsoft/ovolt 0.0.10 → 0.0.12
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/config/providers/ovolt-integration-log-route.provider.d.ts +9 -0
- package/esm2020/config/ovolt-config.module.mjs +3 -1
- package/esm2020/config/providers/ovolt-integration-log-route.provider.mjs +19 -0
- package/esm2020/config/providers/process-log-route.provider.mjs +1 -1
- package/esm2020/lib/components/hit-fuel-integration-logs/components/hit-fuel-integration-log.component.mjs +29 -11
- package/esm2020/lib/components/hit-ovolt-integration-logs/components/hit-ovolt-integration-log.component.mjs +170 -0
- package/esm2020/lib/components/hit-ovolt-integration-logs/hit-ovolt-integration-log-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-ovolt-integration-logs/hit-ovolt-integration-log.module.mjs +71 -0
- package/esm2020/lib/components/hit-proxy/hit-ovolt-integration-logs/hit-ovolt-integration-log.service.mjs +40 -0
- package/esm2020/lib/components/hit-proxy/hit-ovolt-integration-logs/models.mjs +2 -0
- package/esm2020/lib/ovolt-integration-logs/ovolt-integration-log/components/ovolt-integration-log.component.mjs +113 -0
- package/esm2020/lib/ovolt-integration-logs/ovolt-integration-log/ovolt-integration-log-routing.module.mjs +26 -0
- package/esm2020/lib/ovolt-integration-logs/ovolt-integration-log/ovolt-integration-log.module.mjs +52 -0
- package/esm2020/lib/ovolt-routing.module.mjs +3 -1
- package/esm2020/lib/process-logs/process-log/components/process-log.component.mjs +6 -4
- package/esm2020/lib/process-logs/process-log/process-log-routing.module.mjs +1 -1
- package/esm2020/lib/process-logs/process-log/process-log.module.mjs +1 -1
- package/esm2020/lib/proxy/ovolt-integration-logs/models.mjs +2 -0
- package/esm2020/lib/proxy/ovolt-integration-logs/ovolt-integration-log.service.mjs +51 -0
- package/esm2020/lib/proxy/process-logs/models.mjs +1 -1
- package/esm2020/lib/proxy/process-logs/process-log.service.mjs +2 -2
- package/fesm2015/hitsoft-ovolt-config.mjs +29 -11
- package/fesm2015/hitsoft-ovolt-config.mjs.map +1 -1
- package/fesm2015/hitsoft-ovolt.mjs +363 -23
- package/fesm2015/hitsoft-ovolt.mjs.map +1 -1
- package/fesm2020/hitsoft-ovolt-config.mjs +29 -11
- package/fesm2020/hitsoft-ovolt-config.mjs.map +1 -1
- package/fesm2020/hitsoft-ovolt.mjs +362 -23
- package/fesm2020/hitsoft-ovolt.mjs.map +1 -1
- package/lib/components/hit-ovolt-integration-logs/components/hit-ovolt-integration-log.component.d.ts +39 -0
- package/lib/components/hit-ovolt-integration-logs/hit-ovolt-integration-log-routing.module.d.ts +7 -0
- package/lib/components/hit-ovolt-integration-logs/hit-ovolt-integration-log.module.d.ts +16 -0
- package/lib/components/hit-proxy/hit-ovolt-integration-logs/hit-ovolt-integration-log.service.d.ts +16 -0
- package/lib/components/hit-proxy/hit-ovolt-integration-logs/models.d.ts +3 -0
- package/lib/ovolt-integration-logs/ovolt-integration-log/components/ovolt-integration-log.component.d.ts +35 -0
- package/lib/ovolt-integration-logs/ovolt-integration-log/ovolt-integration-log-routing.module.d.ts +7 -0
- package/lib/ovolt-integration-logs/ovolt-integration-log/ovolt-integration-log.module.d.ts +15 -0
- package/lib/proxy/ovolt-integration-logs/models.d.ts +47 -0
- package/lib/proxy/ovolt-integration-logs/ovolt-integration-log.service.d.ts +19 -0
- package/lib/proxy/process-logs/models.d.ts +8 -0
- package/package.json +1 -1
|
@@ -5,12 +5,12 @@ import { RoutesService } from '@abp/ng.core';
|
|
|
5
5
|
const OVOLT_ROUTE_PROVIDERS = [
|
|
6
6
|
{
|
|
7
7
|
provide: APP_INITIALIZER,
|
|
8
|
-
useFactory: configureRoutes$
|
|
8
|
+
useFactory: configureRoutes$5,
|
|
9
9
|
deps: [RoutesService],
|
|
10
10
|
multi: true,
|
|
11
11
|
},
|
|
12
12
|
];
|
|
13
|
-
function configureRoutes$
|
|
13
|
+
function configureRoutes$5(routes) {
|
|
14
14
|
return () => {
|
|
15
15
|
routes.add([
|
|
16
16
|
{
|
|
@@ -25,9 +25,9 @@ function configureRoutes$4(routes) {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
const PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER = [
|
|
28
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
28
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$4, deps: [RoutesService], multi: true },
|
|
29
29
|
];
|
|
30
|
-
function configureRoutes$
|
|
30
|
+
function configureRoutes$4(routes) {
|
|
31
31
|
return () => {
|
|
32
32
|
routes.add([
|
|
33
33
|
{
|
|
@@ -42,9 +42,9 @@ function configureRoutes$3(routes) {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
const SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER = [
|
|
45
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
45
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$3, deps: [RoutesService], multi: true },
|
|
46
46
|
];
|
|
47
|
-
function configureRoutes$
|
|
47
|
+
function configureRoutes$3(routes) {
|
|
48
48
|
return () => {
|
|
49
49
|
routes.add([
|
|
50
50
|
{
|
|
@@ -59,9 +59,9 @@ function configureRoutes$2(routes) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
const FUEL_INTEGRATION_LOGS_FUEL_INTEGRATION_LOG_ROUTE_PROVIDER = [
|
|
62
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes$
|
|
62
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$2, deps: [RoutesService], multi: true },
|
|
63
63
|
];
|
|
64
|
-
function configureRoutes$
|
|
64
|
+
function configureRoutes$2(routes) {
|
|
65
65
|
return () => {
|
|
66
66
|
routes.add([
|
|
67
67
|
{
|
|
@@ -76,9 +76,9 @@ function configureRoutes$1(routes) {
|
|
|
76
76
|
}
|
|
77
77
|
|
|
78
78
|
const LATEST_FAILED_PROCESS_LOGS_LATEST_FAILED_PROCESS_LOG_ROUTE_PROVIDER = [
|
|
79
|
-
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
|
|
79
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes$1, deps: [RoutesService], multi: true },
|
|
80
80
|
];
|
|
81
|
-
function configureRoutes(routes) {
|
|
81
|
+
function configureRoutes$1(routes) {
|
|
82
82
|
return () => {
|
|
83
83
|
routes.add([
|
|
84
84
|
{
|
|
@@ -92,6 +92,23 @@ function configureRoutes(routes) {
|
|
|
92
92
|
};
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
+
const OVOLT_INTEGRATION_LOGS_OVOLT_INTEGRATION_LOG_ROUTE_PROVIDER = [
|
|
96
|
+
{ provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },
|
|
97
|
+
];
|
|
98
|
+
function configureRoutes(routes) {
|
|
99
|
+
return () => {
|
|
100
|
+
routes.add([
|
|
101
|
+
{
|
|
102
|
+
path: '/ovolt/ovolt-integration-logs',
|
|
103
|
+
parentName: "Ovolt::Menu:Ovolt" /* eOvoltRouteNames.Ovolt */,
|
|
104
|
+
name: 'Ovolt::Menu:OvoltIntegrationLogs',
|
|
105
|
+
layout: "application" /* eLayoutType.application */,
|
|
106
|
+
requiredPolicy: 'Ovolt.OvoltIntegrationLogs',
|
|
107
|
+
},
|
|
108
|
+
]);
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
|
|
95
112
|
class OvoltConfigModule {
|
|
96
113
|
static forRoot() {
|
|
97
114
|
return {
|
|
@@ -102,6 +119,7 @@ class OvoltConfigModule {
|
|
|
102
119
|
PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER,
|
|
103
120
|
LATEST_FAILED_PROCESS_LOGS_LATEST_FAILED_PROCESS_LOG_ROUTE_PROVIDER,
|
|
104
121
|
FUEL_INTEGRATION_LOGS_FUEL_INTEGRATION_LOG_ROUTE_PROVIDER,
|
|
122
|
+
OVOLT_INTEGRATION_LOGS_OVOLT_INTEGRATION_LOG_ROUTE_PROVIDER,
|
|
105
123
|
],
|
|
106
124
|
};
|
|
107
125
|
}
|
|
@@ -117,5 +135,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
|
|
|
117
135
|
* Generated bundle index. Do not edit.
|
|
118
136
|
*/
|
|
119
137
|
|
|
120
|
-
export { OVOLT_ROUTE_PROVIDERS, OvoltConfigModule, configureRoutes$
|
|
138
|
+
export { OVOLT_ROUTE_PROVIDERS, OvoltConfigModule, configureRoutes$5 as configureRoutes };
|
|
121
139
|
//# sourceMappingURL=hitsoft-ovolt-config.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hitsoft-ovolt-config.mjs","sources":["../../../projects/ovolt/config/src/providers/route.provider.ts","../../../projects/ovolt/config/src/providers/process-log-route.provider.ts","../../../projects/ovolt/config/src/providers/system-parameter-route.provider.ts","../../../projects/ovolt/config/src/providers/fuel-integration-log-route.provider.ts","../../../projects/ovolt/config/src/providers/hit-error-process-log-route.provider.ts","../../../projects/ovolt/config/src/ovolt-config.module.ts","../../../projects/ovolt/config/src/hitsoft-ovolt-config.ts"],"sourcesContent":["import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eOvoltRouteNames } from '../enums/route-names';\r\n\r\nexport const OVOLT_ROUTE_PROVIDERS = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/ovolt',\r\n name: eOvoltRouteNames.Ovolt,\r\n iconClass: 'fas fa-book',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\
|
|
1
|
+
{"version":3,"file":"hitsoft-ovolt-config.mjs","sources":["../../../projects/ovolt/config/src/providers/route.provider.ts","../../../projects/ovolt/config/src/providers/process-log-route.provider.ts","../../../projects/ovolt/config/src/providers/system-parameter-route.provider.ts","../../../projects/ovolt/config/src/providers/fuel-integration-log-route.provider.ts","../../../projects/ovolt/config/src/providers/hit-error-process-log-route.provider.ts","../../../projects/ovolt/config/src/providers/ovolt-integration-log-route.provider.ts","../../../projects/ovolt/config/src/ovolt-config.module.ts","../../../projects/ovolt/config/src/hitsoft-ovolt-config.ts"],"sourcesContent":["import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eOvoltRouteNames } from '../enums/route-names';\r\n\r\nexport const OVOLT_ROUTE_PROVIDERS = [\r\n {\r\n provide: APP_INITIALIZER,\r\n useFactory: configureRoutes,\r\n deps: [RoutesService],\r\n multi: true,\r\n },\r\n];\r\n\r\nexport function configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/ovolt',\r\n name: eOvoltRouteNames.Ovolt,\r\n iconClass: 'fas fa-book',\r\n layout: eLayoutType.application,\r\n order: 3,\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\nimport { APP_INITIALIZER } from '@angular/core';\nimport { eOvoltRouteNames } from '../enums/route-names';\n\nexport const PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER = [\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\n];\n\nfunction configureRoutes(routes: RoutesService) {\n return () => {\n routes.add([\n {\n path: '/ovolt/process-logs',\n parentName: eOvoltRouteNames.Ovolt,\n name: 'Ovolt::Menu:ProcessLogs',\n layout: eLayoutType.application,\n requiredPolicy: 'Ovolt.ProcessLogs',\n },\n ]);\n };\n}\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\nimport { APP_INITIALIZER } from '@angular/core';\nimport { eOvoltRouteNames } from '../enums/route-names';\n\nexport const SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER = [\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\n];\n\nfunction configureRoutes(routes: RoutesService) {\n return () => {\n routes.add([\n {\n path: '/ovolt/system-parameters',\n parentName: eOvoltRouteNames.Ovolt,\n name: 'Ovolt::Menu:SystemParameters',\n layout: eLayoutType.application,\n requiredPolicy: 'Ovolt.SystemParameters',\n },\n ]);\n };\n}\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eOvoltRouteNames } from '../enums/route-names';\r\n\r\nexport const FUEL_INTEGRATION_LOGS_FUEL_INTEGRATION_LOG_ROUTE_PROVIDER = [\r\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\r\n];\r\n\r\nfunction configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/ovolt/fuel-integration-logs',\r\n parentName: eOvoltRouteNames.Ovolt,\r\n name: 'Ovolt::Menu:FuelIntegrationLogs',\r\n layout: eLayoutType.application,\r\n requiredPolicy: 'Ovolt.FuelIntegrationLogs',\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eOvoltRouteNames } from '../enums/route-names';\r\n\r\nexport const LATEST_FAILED_PROCESS_LOGS_LATEST_FAILED_PROCESS_LOG_ROUTE_PROVIDER = [\r\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\r\n];\r\n\r\nfunction configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/ovolt/latest-failed-process-logs',\r\n parentName: eOvoltRouteNames.Ovolt,\r\n name: 'Ovolt::Menu:LatestFailedProcessLogs',\r\n layout: eLayoutType.application,\r\n requiredPolicy: 'Ovolt.ProcessLogs.LatestFailedProcessLogs',\r\n },\r\n ]);\r\n };\r\n}\r\n","import { eLayoutType, RoutesService } from '@abp/ng.core';\r\nimport { APP_INITIALIZER } from '@angular/core';\r\nimport { eOvoltRouteNames } from '../enums/route-names';\r\n\r\nexport const OVOLT_INTEGRATION_LOGS_OVOLT_INTEGRATION_LOG_ROUTE_PROVIDER = [\r\n { provide: APP_INITIALIZER, useFactory: configureRoutes, deps: [RoutesService], multi: true },\r\n];\r\n\r\nfunction configureRoutes(routes: RoutesService) {\r\n return () => {\r\n routes.add([\r\n {\r\n path: '/ovolt/ovolt-integration-logs',\r\n parentName: eOvoltRouteNames.Ovolt,\r\n name: 'Ovolt::Menu:OvoltIntegrationLogs',\r\n layout: eLayoutType.application,\r\n requiredPolicy: 'Ovolt.OvoltIntegrationLogs',\r\n },\r\n ]);\r\n };\r\n}\r\n","import { ModuleWithProviders, NgModule } from '@angular/core';\r\nimport { OVOLT_ROUTE_PROVIDERS } from './providers/route.provider';\r\nimport { PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER } from './providers/process-log-route.provider';\r\nimport { SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER } from './providers/system-parameter-route.provider';\r\nimport { FUEL_INTEGRATION_LOGS_FUEL_INTEGRATION_LOG_ROUTE_PROVIDER } from './providers/fuel-integration-log-route.provider';\r\nimport { LATEST_FAILED_PROCESS_LOGS_LATEST_FAILED_PROCESS_LOG_ROUTE_PROVIDER } from './providers/hit-error-process-log-route.provider';\r\nimport { OVOLT_INTEGRATION_LOGS_OVOLT_INTEGRATION_LOG_ROUTE_PROVIDER } from './providers/ovolt-integration-log-route.provider';\r\n\r\n@NgModule()\r\nexport class OvoltConfigModule {\r\n static forRoot(): ModuleWithProviders<OvoltConfigModule> {\r\n return {\r\n ngModule: OvoltConfigModule,\r\n providers: [\r\n OVOLT_ROUTE_PROVIDERS,\r\n SYSTEM_PARAMETERS_SYSTEM_PARAMETER_ROUTE_PROVIDER,\r\n PROCESS_LOGS_PROCESS_LOG_ROUTE_PROVIDER,\r\n LATEST_FAILED_PROCESS_LOGS_LATEST_FAILED_PROCESS_LOG_ROUTE_PROVIDER,\r\n FUEL_INTEGRATION_LOGS_FUEL_INTEGRATION_LOG_ROUTE_PROVIDER,\r\n OVOLT_INTEGRATION_LOGS_OVOLT_INTEGRATION_LOG_ROUTE_PROVIDER,\r\n ],\r\n };\r\n }\r\n}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["configureRoutes"],"mappings":"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"}
|