@hitsoft/ovolt 0.0.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/README.md +24 -0
- package/config/enums/index.d.ts +1 -0
- package/config/enums/route-names.d.ts +3 -0
- package/config/index.d.ts +5 -0
- package/config/ovolt-config.module.d.ts +8 -0
- package/config/providers/index.d.ts +1 -0
- package/config/providers/process-log-route.provider.d.ts +9 -0
- package/config/providers/route.provider.d.ts +8 -0
- package/config/providers/system-parameter-route.provider.d.ts +9 -0
- package/config/public-api.d.ts +3 -0
- package/esm2020/config/enums/index.mjs +2 -0
- package/esm2020/config/enums/route-names.mjs +2 -0
- package/esm2020/config/hitsoft-ovolt-config.mjs +5 -0
- package/esm2020/config/hitsoft.Entegration-ovolt-config.mjs +5 -0
- package/esm2020/config/ovolt-config.module.mjs +24 -0
- package/esm2020/config/providers/index.mjs +2 -0
- package/esm2020/config/providers/process-log-route.provider.mjs +19 -0
- package/esm2020/config/providers/route.provider.mjs +24 -0
- package/esm2020/config/providers/system-parameter-route.provider.mjs +19 -0
- package/esm2020/config/public-api.mjs +4 -0
- package/esm2020/hitsoft-ovolt.mjs +5 -0
- package/esm2020/hitsoft.Entegration-ovolt.mjs +5 -0
- package/esm2020/lib/components/hit-process-logs/components/hit-process-log.component.mjs +98 -0
- package/esm2020/lib/components/hit-process-logs/hit-process-log-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-process-logs/hit-process-log.module.mjs +69 -0
- package/esm2020/lib/components/hit-proxy/devexpress-query-builder/devexpress-load-options.model.mjs +2 -0
- package/esm2020/lib/components/hit-proxy/devexpress-query-builder/devexpress-query-builder.mjs +53 -0
- package/esm2020/lib/components/hit-proxy/hit-process-logs/hit-process-log.service.mjs +31 -0
- package/esm2020/lib/components/hit-proxy/hit-process-logs/models.mjs +2 -0
- package/esm2020/lib/components/hit-proxy/hit-system-parameters/hit-system-parameter.service.mjs +22 -0
- package/esm2020/lib/components/hit-proxy/hit-system-parameters/index.mjs +3 -0
- package/esm2020/lib/components/hit-system-parameters/components/hit-system-parameter.component.mjs +122 -0
- package/esm2020/lib/components/hit-system-parameters/hit-system-parameter-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-system-parameters/hit-system-parameter.module.mjs +52 -0
- package/esm2020/lib/components/ovolt.component.mjs +18 -0
- package/esm2020/lib/ovolt-routing.module.mjs +29 -0
- package/esm2020/lib/ovolt.module.mjs +29 -0
- package/esm2020/lib/process-logs/process-log/components/process-log.component.mjs +112 -0
- package/esm2020/lib/process-logs/process-log/process-log-routing.module.mjs +26 -0
- package/esm2020/lib/process-logs/process-log/process-log.module.mjs +52 -0
- package/esm2020/lib/proxy/general-transactions/rest-company-type.enum.mjs +8 -0
- package/esm2020/lib/proxy/process-logs/models.mjs +2 -0
- package/esm2020/lib/proxy/process-logs/process-log.service.mjs +51 -0
- package/esm2020/lib/proxy/shared/models.mjs +2 -0
- package/esm2020/lib/proxy/system-parameters/models.mjs +2 -0
- package/esm2020/lib/proxy/system-parameters/system-parameter.service.mjs +41 -0
- package/esm2020/lib/services/ovolt.service.mjs +21 -0
- package/esm2020/public-api.mjs +7 -0
- package/fesm2015/hitsoft-ovolt-config.mjs +85 -0
- package/fesm2015/hitsoft-ovolt-config.mjs.map +1 -0
- package/fesm2015/hitsoft-ovolt.mjs +630 -0
- package/fesm2015/hitsoft-ovolt.mjs.map +1 -0
- package/fesm2015/hitsoft.Entegration-ovolt-config.mjs +85 -0
- package/fesm2015/hitsoft.Entegration-ovolt-config.mjs.map +1 -0
- package/fesm2015/hitsoft.Entegration-ovolt.mjs +630 -0
- package/fesm2015/hitsoft.Entegration-ovolt.mjs.map +1 -0
- package/fesm2020/hitsoft-ovolt-config.mjs +85 -0
- package/fesm2020/hitsoft-ovolt-config.mjs.map +1 -0
- package/fesm2020/hitsoft-ovolt.mjs +631 -0
- package/fesm2020/hitsoft-ovolt.mjs.map +1 -0
- package/fesm2020/hitsoft.Entegration-ovolt-config.mjs +85 -0
- package/fesm2020/hitsoft.Entegration-ovolt-config.mjs.map +1 -0
- package/fesm2020/hitsoft.Entegration-ovolt.mjs +631 -0
- package/fesm2020/hitsoft.Entegration-ovolt.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/hit-process-logs/components/hit-process-log.component.d.ts +29 -0
- package/lib/components/hit-process-logs/hit-process-log-routing.module.d.ts +7 -0
- package/lib/components/hit-process-logs/hit-process-log.module.d.ts +16 -0
- package/lib/components/hit-proxy/devexpress-query-builder/devexpress-load-options.model.d.ts +8 -0
- package/lib/components/hit-proxy/devexpress-query-builder/devexpress-query-builder.d.ts +16 -0
- package/lib/components/hit-proxy/hit-process-logs/hit-process-log.service.d.ts +14 -0
- package/lib/components/hit-proxy/hit-process-logs/models.d.ts +3 -0
- package/lib/components/hit-proxy/hit-system-parameters/hit-system-parameter.service.d.ts +12 -0
- package/lib/components/hit-proxy/hit-system-parameters/index.d.ts +2 -0
- package/lib/components/hit-system-parameters/components/hit-system-parameter.component.d.ts +30 -0
- package/lib/components/hit-system-parameters/hit-system-parameter-routing.module.d.ts +7 -0
- package/lib/components/hit-system-parameters/hit-system-parameter.module.d.ts +15 -0
- package/lib/components/ovolt.component.d.ts +10 -0
- package/lib/ovolt-routing.module.d.ts +7 -0
- package/lib/ovolt.module.d.ts +13 -0
- package/lib/process-logs/process-log/components/process-log.component.d.ts +35 -0
- package/lib/process-logs/process-log/process-log-routing.module.d.ts +7 -0
- package/lib/process-logs/process-log/process-log.module.d.ts +15 -0
- package/lib/proxy/general-transactions/rest-company-type.enum.d.ts +5 -0
- package/lib/proxy/process-logs/models.d.ts +41 -0
- package/lib/proxy/process-logs/process-log.service.d.ts +19 -0
- package/lib/proxy/shared/models.d.ts +3 -0
- package/lib/proxy/system-parameters/models.d.ts +80 -0
- package/lib/proxy/system-parameters/system-parameter.service.d.ts +16 -0
- package/lib/services/ovolt.service.d.ts +10 -0
- package/package.json +41 -0
- package/public-api.d.ts +3 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { GetSystemParametersInput, SystemParameterCreateDto, SystemParameterDto, SystemParameterUpdateDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SystemParameterService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
create: (input: SystemParameterCreateDto) => import("rxjs").Observable<SystemParameterDto>;
|
|
9
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
10
|
+
get: (id: string) => import("rxjs").Observable<SystemParameterDto>;
|
|
11
|
+
getList: (input: GetSystemParametersInput) => import("rxjs").Observable<PagedResultDto<SystemParameterDto>>;
|
|
12
|
+
update: (id: string, input: SystemParameterUpdateDto) => import("rxjs").Observable<SystemParameterDto>;
|
|
13
|
+
constructor(restService: RestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SystemParameterService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SystemParameterService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class OvoltService {
|
|
4
|
+
private restService;
|
|
5
|
+
apiName: string;
|
|
6
|
+
constructor(restService: RestService);
|
|
7
|
+
sample(): import("rxjs").Observable<any>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OvoltService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OvoltService>;
|
|
10
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hitsoft/ovolt",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": ">=9",
|
|
6
|
+
"@angular/core": ">=9",
|
|
7
|
+
"@abp/ng.core": ">=6.0.2",
|
|
8
|
+
"@abp/ng.theme.shared": ">=6.0.2"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"tslib": "^2.1.0"
|
|
12
|
+
},
|
|
13
|
+
"module": "fesm2015/hitsoft-ovolt.mjs",
|
|
14
|
+
"es2020": "fesm2020/hitsoft-ovolt.mjs",
|
|
15
|
+
"esm2020": "esm2020/hitsoft-ovolt.mjs",
|
|
16
|
+
"fesm2020": "fesm2020/hitsoft-ovolt.mjs",
|
|
17
|
+
"fesm2015": "fesm2015/hitsoft-ovolt.mjs",
|
|
18
|
+
"typings": "index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
"./package.json": {
|
|
21
|
+
"default": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
|
+
"esm2020": "./esm2020/hitsoft-ovolt.mjs",
|
|
26
|
+
"es2020": "./fesm2020/hitsoft-ovolt.mjs",
|
|
27
|
+
"es2015": "./fesm2015/hitsoft-ovolt.mjs",
|
|
28
|
+
"node": "./fesm2015/hitsoft-ovolt.mjs",
|
|
29
|
+
"default": "./fesm2020/hitsoft-ovolt.mjs"
|
|
30
|
+
},
|
|
31
|
+
"./config": {
|
|
32
|
+
"types": "./config/index.d.ts",
|
|
33
|
+
"esm2020": "./esm2020/config/hitsoft-ovolt-config.mjs",
|
|
34
|
+
"es2020": "./fesm2020/hitsoft-ovolt-config.mjs",
|
|
35
|
+
"es2015": "./fesm2015/hitsoft-ovolt-config.mjs",
|
|
36
|
+
"node": "./fesm2015/hitsoft-ovolt-config.mjs",
|
|
37
|
+
"default": "./fesm2020/hitsoft-ovolt-config.mjs"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"sideEffects": false
|
|
41
|
+
}
|
package/public-api.d.ts
ADDED