@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
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
|
+
import { LocalizationService, PermissionService, TrackByService } from '@abp/ng.core';
|
|
4
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
5
|
+
import { OvoltIntegrationLogService } from '../../../proxy/ovolt-integration-logs/ovolt-integration-log.service';
|
|
6
|
+
import { HitOvoltIntegrationLogService } from '../../hit-proxy/hit-ovolt-integration-logs/hit-ovolt-integration-log.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class HitOvoltIntegrationLogComponent implements OnInit {
|
|
9
|
+
private service;
|
|
10
|
+
track: TrackByService;
|
|
11
|
+
readonly hitOvoltIntegrationLogService: HitOvoltIntegrationLogService;
|
|
12
|
+
private toaster;
|
|
13
|
+
private localization;
|
|
14
|
+
private permissionService;
|
|
15
|
+
private confirmation;
|
|
16
|
+
dxGrid: DxDataGridComponent;
|
|
17
|
+
OvoltIntegrationLogDataSource: any;
|
|
18
|
+
isdeleteAll: boolean;
|
|
19
|
+
isRequestBodyModalOpen: boolean;
|
|
20
|
+
selectedRequestBodyModel: any;
|
|
21
|
+
isLoadingRequestBodyModel: boolean;
|
|
22
|
+
closeRequestBodyButtonOptions: Record<string, unknown>;
|
|
23
|
+
isResponseBodyModalOpen: boolean;
|
|
24
|
+
selectedResponseBodyModel: any;
|
|
25
|
+
isLoadingResponseBodyModel: boolean;
|
|
26
|
+
closeResponseBodyButtonOptions: Record<string, unknown>;
|
|
27
|
+
actionMenuItems: any;
|
|
28
|
+
constructor(service: OvoltIntegrationLogService, track: TrackByService, hitOvoltIntegrationLogService: HitOvoltIntegrationLogService, toaster: ToasterService, localization: LocalizationService, permissionService: PermissionService, confirmation: ConfirmationService);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
l(key: string): string;
|
|
31
|
+
initDataSource(): void;
|
|
32
|
+
showRequestBody(id: any): void;
|
|
33
|
+
showResponseBody(id: any): void;
|
|
34
|
+
deleteAll(): void;
|
|
35
|
+
deleteOvoltIntegrationLog(record: string): void;
|
|
36
|
+
onActionClick(e: any, id: any): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitOvoltIntegrationLogComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitOvoltIntegrationLogComponent, "lib-hit-ovolt-integration-log", never, {}, {}, never, never, false>;
|
|
39
|
+
}
|
package/lib/components/hit-ovolt-integration-logs/hit-ovolt-integration-log-routing.module.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitOvoltIntegrationLogRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitOvoltIntegrationLogRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitOvoltIntegrationLogRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitOvoltIntegrationLogRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/hit-ovolt-integration-log.component";
|
|
3
|
+
import * as i2 from "./hit-ovolt-integration-log-routing.module";
|
|
4
|
+
import * as i3 from "@abp/ng.core";
|
|
5
|
+
import * as i4 from "@abp/ng.theme.shared";
|
|
6
|
+
import * as i5 from "@volo/abp.commercial.ng.ui";
|
|
7
|
+
import * as i6 from "@ngx-validate/core";
|
|
8
|
+
import * as i7 from "@ng-bootstrap/ng-bootstrap";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
import * as i9 from "devextreme-angular";
|
|
11
|
+
export declare class HitOvoltIntegrationLogModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitOvoltIntegrationLogModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitOvoltIntegrationLogModule, [typeof i1.HitOvoltIntegrationLogComponent], [typeof i2.HitOvoltIntegrationLogRoutingModule, typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.PageModule, typeof i9.DxDataGridModule, typeof i9.DxButtonModule, typeof i9.DxPopupModule, typeof i9.DxScrollViewModule, typeof i9.DxTemplateModule, typeof i9.DxDropDownButtonModule], never>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitOvoltIntegrationLogModule>;
|
|
15
|
+
}
|
|
16
|
+
export declare function loadHitOvoltIntegrationLogModuleAsChild(): Promise<typeof HitOvoltIntegrationLogModule>;
|
package/lib/components/hit-proxy/hit-ovolt-integration-logs/hit-ovolt-integration-log.service.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import { DevexpressRestService } from '../devexpress-query-builder/devexpress-query-builder';
|
|
3
|
+
import { GetRequestModelDto } from './models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitOvoltIntegrationLogService {
|
|
6
|
+
private restService;
|
|
7
|
+
private devexService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
get LoadOvoltIntegrationLogs(): import("devextreme/data/custom_store").default<any, any>;
|
|
11
|
+
getRequesteBody: (input: GetRequestModelDto) => import("rxjs").Observable<string>;
|
|
12
|
+
getResponseBody: (input: GetRequestModelDto) => import("rxjs").Observable<string>;
|
|
13
|
+
deleteAll: () => import("rxjs").Observable<boolean>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitOvoltIntegrationLogService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitOvoltIntegrationLogService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ListService, PagedResultDto, TrackByService } from '@abp/ng.core';
|
|
2
|
+
import { ConfirmationService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { OnInit } from '@angular/core';
|
|
4
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
5
|
+
import type { GetOvoltIntegrationLogsInput, OvoltIntegrationLogDto } from '../../../proxy/ovolt-integration-logs/models';
|
|
6
|
+
import { OvoltIntegrationLogService } from '../../../proxy/ovolt-integration-logs/ovolt-integration-log.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class OvoltIntegrationLogComponent implements OnInit {
|
|
9
|
+
readonly list: ListService;
|
|
10
|
+
readonly track: TrackByService;
|
|
11
|
+
readonly service: OvoltIntegrationLogService;
|
|
12
|
+
private confirmation;
|
|
13
|
+
private fb;
|
|
14
|
+
data: PagedResultDto<OvoltIntegrationLogDto>;
|
|
15
|
+
filters: GetOvoltIntegrationLogsInput;
|
|
16
|
+
form: FormGroup;
|
|
17
|
+
isFiltersHidden: boolean;
|
|
18
|
+
isModalBusy: boolean;
|
|
19
|
+
isModalOpen: boolean;
|
|
20
|
+
isExportToExcelBusy: boolean;
|
|
21
|
+
selected?: OvoltIntegrationLogDto;
|
|
22
|
+
constructor(list: ListService, track: TrackByService, service: OvoltIntegrationLogService, confirmation: ConfirmationService, fb: FormBuilder);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
clearFilters(): void;
|
|
25
|
+
buildForm(): void;
|
|
26
|
+
hideForm(): void;
|
|
27
|
+
showForm(): void;
|
|
28
|
+
submitForm(): void;
|
|
29
|
+
create(): void;
|
|
30
|
+
update(record: OvoltIntegrationLogDto): void;
|
|
31
|
+
delete(record: OvoltIntegrationLogDto): void;
|
|
32
|
+
exportToExcel(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OvoltIntegrationLogComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OvoltIntegrationLogComponent, "lib-ovolt-integration-log", never, {}, {}, never, never, false>;
|
|
35
|
+
}
|
package/lib/ovolt-integration-logs/ovolt-integration-log/ovolt-integration-log-routing.module.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class OvoltIntegrationLogRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OvoltIntegrationLogRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OvoltIntegrationLogRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OvoltIntegrationLogRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./components/ovolt-integration-log.component";
|
|
3
|
+
import * as i2 from "./ovolt-integration-log-routing.module";
|
|
4
|
+
import * as i3 from "@abp/ng.core";
|
|
5
|
+
import * as i4 from "@abp/ng.theme.shared";
|
|
6
|
+
import * as i5 from "@volo/abp.commercial.ng.ui";
|
|
7
|
+
import * as i6 from "@ngx-validate/core";
|
|
8
|
+
import * as i7 from "@ng-bootstrap/ng-bootstrap";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
export declare class OvoltIntegrationLogModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OvoltIntegrationLogModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OvoltIntegrationLogModule, [typeof i1.OvoltIntegrationLogComponent], [typeof i2.OvoltIntegrationLogRoutingModule, typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.PageModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OvoltIntegrationLogModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadOvoltIntegrationLogModuleAsChild(): Promise<typeof OvoltIntegrationLogModule>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export interface GetOvoltIntegrationLogsInput extends PagedAndSortedResultRequestDto {
|
|
3
|
+
filterText?: string;
|
|
4
|
+
path?: string;
|
|
5
|
+
method?: string;
|
|
6
|
+
requestBody?: string;
|
|
7
|
+
responseBody?: string;
|
|
8
|
+
statusCode?: string;
|
|
9
|
+
requestTimeMin?: string;
|
|
10
|
+
requestTimeMax?: string;
|
|
11
|
+
responseTimeMin?: string;
|
|
12
|
+
responseTimeMax?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface OvoltIntegrationLogCreateDto {
|
|
15
|
+
path?: string;
|
|
16
|
+
method?: string;
|
|
17
|
+
requestBody?: string;
|
|
18
|
+
responseBody?: string;
|
|
19
|
+
statusCode?: string;
|
|
20
|
+
requestTime?: string;
|
|
21
|
+
responseTime?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface OvoltIntegrationLogDto extends FullAuditedEntityDto<string> {
|
|
24
|
+
path?: string;
|
|
25
|
+
method?: string;
|
|
26
|
+
requestBody?: string;
|
|
27
|
+
responseBody?: string;
|
|
28
|
+
statusCode?: string;
|
|
29
|
+
requestTime?: string;
|
|
30
|
+
responseTime?: string;
|
|
31
|
+
concurrencyStamp?: string;
|
|
32
|
+
}
|
|
33
|
+
export interface OvoltIntegrationLogExcelDownloadDto {
|
|
34
|
+
downloadToken?: string;
|
|
35
|
+
filterText?: string;
|
|
36
|
+
name?: string;
|
|
37
|
+
}
|
|
38
|
+
export interface OvoltIntegrationLogUpdateDto {
|
|
39
|
+
path?: string;
|
|
40
|
+
method?: string;
|
|
41
|
+
requestBody?: string;
|
|
42
|
+
responseBody?: string;
|
|
43
|
+
statusCode?: string;
|
|
44
|
+
requestTime?: string;
|
|
45
|
+
responseTime?: string;
|
|
46
|
+
concurrencyStamp?: string;
|
|
47
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { GetOvoltIntegrationLogsInput, OvoltIntegrationLogCreateDto, OvoltIntegrationLogDto, OvoltIntegrationLogExcelDownloadDto, OvoltIntegrationLogUpdateDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import type { DownloadTokenResultDto } from '../shared/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class OvoltIntegrationLogService {
|
|
7
|
+
private restService;
|
|
8
|
+
apiName: string;
|
|
9
|
+
create: (input: OvoltIntegrationLogCreateDto) => import("rxjs").Observable<OvoltIntegrationLogDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<OvoltIntegrationLogDto>;
|
|
12
|
+
getDownloadToken: () => import("rxjs").Observable<DownloadTokenResultDto>;
|
|
13
|
+
getList: (input: GetOvoltIntegrationLogsInput) => import("rxjs").Observable<PagedResultDto<OvoltIntegrationLogDto>>;
|
|
14
|
+
getListAsExcelFile: (input: OvoltIntegrationLogExcelDownloadDto) => import("rxjs").Observable<Blob>;
|
|
15
|
+
update: (id: string, input: OvoltIntegrationLogUpdateDto) => import("rxjs").Observable<OvoltIntegrationLogDto>;
|
|
16
|
+
constructor(restService: RestService);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OvoltIntegrationLogService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OvoltIntegrationLogService>;
|
|
19
|
+
}
|
|
@@ -7,6 +7,8 @@ export interface GetProcessLogsInput extends PagedAndSortedResultRequestDto {
|
|
|
7
7
|
status?: boolean;
|
|
8
8
|
request?: string;
|
|
9
9
|
response?: string;
|
|
10
|
+
jobRunId?: string;
|
|
11
|
+
jobName?: string;
|
|
10
12
|
}
|
|
11
13
|
export interface ProcessLogCreateDto {
|
|
12
14
|
processId?: string;
|
|
@@ -15,6 +17,8 @@ export interface ProcessLogCreateDto {
|
|
|
15
17
|
status?: boolean;
|
|
16
18
|
request?: string;
|
|
17
19
|
response?: string;
|
|
20
|
+
jobRunId?: string;
|
|
21
|
+
jobName?: string;
|
|
18
22
|
}
|
|
19
23
|
export interface ProcessLogDto extends FullAuditedEntityDto<string> {
|
|
20
24
|
processId?: string;
|
|
@@ -23,6 +27,8 @@ export interface ProcessLogDto extends FullAuditedEntityDto<string> {
|
|
|
23
27
|
status?: boolean;
|
|
24
28
|
request?: string;
|
|
25
29
|
response?: string;
|
|
30
|
+
jobRunId?: string;
|
|
31
|
+
jobName?: string;
|
|
26
32
|
concurrencyStamp?: string;
|
|
27
33
|
}
|
|
28
34
|
export interface ProcessLogExcelDownloadDto {
|
|
@@ -37,5 +43,7 @@ export interface ProcessLogUpdateDto {
|
|
|
37
43
|
status?: boolean;
|
|
38
44
|
request?: string;
|
|
39
45
|
response?: string;
|
|
46
|
+
jobRunId?: string;
|
|
47
|
+
jobName?: string;
|
|
40
48
|
concurrencyStamp?: string;
|
|
41
49
|
}
|