@hitsoft/ovolt 0.0.2 → 0.0.3
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/fuel-integration-log-route.provider.d.ts +9 -0
- package/esm2020/config/ovolt-config.module.mjs +3 -1
- package/esm2020/config/providers/fuel-integration-log-route.provider.mjs +19 -0
- package/esm2020/lib/components/hit-fuel-integration-logs/components/hit-fuel-integration-log.component.mjs +150 -0
- package/esm2020/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log.module.mjs +71 -0
- package/esm2020/lib/components/hit-proxy/hit-fuel-integration-logs/hit-fuel-integration-log.service.mjs +40 -0
- package/esm2020/lib/components/hit-proxy/hit-fuel-integration-logs/models.mjs +2 -0
- package/esm2020/lib/components/hit-system-parameters/components/hit-system-parameter.component.mjs +10 -10
- package/esm2020/lib/fuel-integration-logs/fuel-integration-log/components/fuel-integration-log.component.mjs +103 -0
- package/esm2020/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log-routing.module.mjs +26 -0
- package/esm2020/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log.module.mjs +52 -0
- package/esm2020/lib/ovolt-routing.module.mjs +3 -1
- package/esm2020/lib/proxy/fuel-integration-logs/fuel-integration-log.service.mjs +41 -0
- package/esm2020/lib/proxy/fuel-integration-logs/models.mjs +2 -0
- package/esm2020/lib/proxy/general-transactions/rest-company-type.enum.mjs +1 -1
- package/esm2020/lib/proxy/rest-company-type.enum.mjs +8 -0
- package/esm2020/lib/proxy/system-parameters/models.mjs +1 -1
- package/esm2020/lib/proxy/system-parameters/system-parameter.service.mjs +2 -2
- package/fesm2015/hitsoft-ovolt-config.mjs +25 -7
- package/fesm2015/hitsoft-ovolt-config.mjs.map +1 -1
- package/fesm2015/hitsoft-ovolt.mjs +317 -25
- package/fesm2015/hitsoft-ovolt.mjs.map +1 -1
- package/fesm2020/hitsoft-ovolt-config.mjs +25 -7
- package/fesm2020/hitsoft-ovolt-config.mjs.map +1 -1
- package/fesm2020/hitsoft-ovolt.mjs +316 -25
- package/fesm2020/hitsoft-ovolt.mjs.map +1 -1
- package/lib/components/hit-fuel-integration-logs/components/hit-fuel-integration-log.component.d.ts +39 -0
- package/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log-routing.module.d.ts +7 -0
- package/lib/components/hit-fuel-integration-logs/hit-fuel-integration-log.module.d.ts +16 -0
- package/lib/components/hit-proxy/hit-fuel-integration-logs/hit-fuel-integration-log.service.d.ts +16 -0
- package/lib/components/hit-proxy/hit-fuel-integration-logs/models.d.ts +3 -0
- package/lib/fuel-integration-logs/fuel-integration-log/components/fuel-integration-log.component.d.ts +33 -0
- package/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log-routing.module.d.ts +7 -0
- package/lib/fuel-integration-logs/fuel-integration-log/fuel-integration-log.module.d.ts +15 -0
- package/lib/proxy/fuel-integration-logs/fuel-integration-log.service.d.ts +16 -0
- package/lib/proxy/fuel-integration-logs/models.d.ts +42 -0
- package/lib/proxy/rest-company-type.enum.d.ts +5 -0
- package/lib/proxy/system-parameters/models.d.ts +17 -17
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { FuelIntegrationLogCreateDto, FuelIntegrationLogDto, FuelIntegrationLogUpdateDto, GetFuelIntegrationLogsInput } 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 FuelIntegrationLogService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
create: (input: FuelIntegrationLogCreateDto) => import("rxjs").Observable<FuelIntegrationLogDto>;
|
|
9
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
10
|
+
get: (id: string) => import("rxjs").Observable<FuelIntegrationLogDto>;
|
|
11
|
+
getList: (input: GetFuelIntegrationLogsInput) => import("rxjs").Observable<PagedResultDto<FuelIntegrationLogDto>>;
|
|
12
|
+
update: (id: string, input: FuelIntegrationLogUpdateDto) => import("rxjs").Observable<FuelIntegrationLogDto>;
|
|
13
|
+
constructor(restService: RestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FuelIntegrationLogService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FuelIntegrationLogService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export interface FuelIntegrationLogCreateDto {
|
|
3
|
+
path?: string;
|
|
4
|
+
method?: string;
|
|
5
|
+
requestBody?: string;
|
|
6
|
+
responseBody?: string;
|
|
7
|
+
statusCode?: string;
|
|
8
|
+
requestTime?: string;
|
|
9
|
+
responseTime?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface FuelIntegrationLogDto extends FullAuditedEntityDto<string> {
|
|
12
|
+
path?: string;
|
|
13
|
+
method?: string;
|
|
14
|
+
requestBody?: string;
|
|
15
|
+
responseBody?: string;
|
|
16
|
+
statusCode?: string;
|
|
17
|
+
requestTime?: string;
|
|
18
|
+
responseTime?: string;
|
|
19
|
+
concurrencyStamp?: string;
|
|
20
|
+
}
|
|
21
|
+
export interface FuelIntegrationLogUpdateDto {
|
|
22
|
+
path?: string;
|
|
23
|
+
method?: string;
|
|
24
|
+
requestBody?: string;
|
|
25
|
+
responseBody?: string;
|
|
26
|
+
statusCode?: string;
|
|
27
|
+
requestTime?: string;
|
|
28
|
+
responseTime?: string;
|
|
29
|
+
concurrencyStamp?: string;
|
|
30
|
+
}
|
|
31
|
+
export interface GetFuelIntegrationLogsInput extends PagedAndSortedResultRequestDto {
|
|
32
|
+
filterText?: string;
|
|
33
|
+
path?: string;
|
|
34
|
+
method?: string;
|
|
35
|
+
requestBody?: string;
|
|
36
|
+
responseBody?: string;
|
|
37
|
+
statusCode?: string;
|
|
38
|
+
requestTimeMin?: string;
|
|
39
|
+
requestTimeMax?: string;
|
|
40
|
+
responseTimeMin?: string;
|
|
41
|
+
responseTimeMax?: string;
|
|
42
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
-
import type { RestCompanyType } from '../
|
|
2
|
+
import type { RestCompanyType } from '../rest-company-type.enum';
|
|
3
3
|
export interface GetSystemParametersInput extends PagedAndSortedResultRequestDto {
|
|
4
4
|
filterText?: string;
|
|
5
5
|
sharzNetCustomerSeries?: string;
|
|
@@ -13,14 +13,14 @@ export interface GetSystemParametersInput extends PagedAndSortedResultRequestDto
|
|
|
13
13
|
vendorSeries?: string;
|
|
14
14
|
vendorGroupCodeMin?: number;
|
|
15
15
|
vendorGroupCodeMax?: number;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
warehouseCode?: string;
|
|
19
|
-
cogsCostingCode1?: string;
|
|
16
|
+
transactionItemCode?: string;
|
|
17
|
+
cogsCostingCode?: string;
|
|
20
18
|
cogsCostingCode2?: string;
|
|
21
19
|
cogsCostingCode3?: string;
|
|
22
20
|
poKey?: string;
|
|
23
21
|
selectedRestCompany?: RestCompanyType;
|
|
22
|
+
bplId?: string;
|
|
23
|
+
purchaseOrderItemCode?: string;
|
|
24
24
|
}
|
|
25
25
|
export interface SystemParameterCreateDto {
|
|
26
26
|
sharzNetCustomerSeries?: string;
|
|
@@ -31,14 +31,14 @@ export interface SystemParameterCreateDto {
|
|
|
31
31
|
upEnerjiCustomerDebitorAccount?: string;
|
|
32
32
|
vendorSeries?: string;
|
|
33
33
|
vendorGroupCode?: number;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
warehouseCode?: string;
|
|
37
|
-
cogsCostingCode1?: string;
|
|
34
|
+
transactionItemCode?: string;
|
|
35
|
+
cogsCostingCode?: string;
|
|
38
36
|
cogsCostingCode2?: string;
|
|
39
37
|
cogsCostingCode3?: string;
|
|
40
38
|
poKey?: string;
|
|
41
39
|
selectedRestCompany?: RestCompanyType;
|
|
40
|
+
bplId?: string;
|
|
41
|
+
purchaseOrderItemCode?: string;
|
|
42
42
|
}
|
|
43
43
|
export interface SystemParameterDto extends FullAuditedEntityDto<string> {
|
|
44
44
|
sharzNetCustomerSeries?: string;
|
|
@@ -49,14 +49,14 @@ export interface SystemParameterDto extends FullAuditedEntityDto<string> {
|
|
|
49
49
|
upEnerjiCustomerDebitorAccount?: string;
|
|
50
50
|
vendorSeries?: string;
|
|
51
51
|
vendorGroupCode?: number;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
warehouseCode?: string;
|
|
55
|
-
cogsCostingCode1?: string;
|
|
52
|
+
transactionItemCode?: string;
|
|
53
|
+
cogsCostingCode?: string;
|
|
56
54
|
cogsCostingCode2?: string;
|
|
57
55
|
cogsCostingCode3?: string;
|
|
58
56
|
poKey?: string;
|
|
59
57
|
selectedRestCompany?: RestCompanyType;
|
|
58
|
+
bplId?: string;
|
|
59
|
+
purchaseOrderItemCode?: string;
|
|
60
60
|
concurrencyStamp?: string;
|
|
61
61
|
}
|
|
62
62
|
export interface SystemParameterUpdateDto {
|
|
@@ -68,13 +68,13 @@ export interface SystemParameterUpdateDto {
|
|
|
68
68
|
upEnerjiCustomerDebitorAccount?: string;
|
|
69
69
|
vendorSeries?: string;
|
|
70
70
|
vendorGroupCode?: number;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
warehouseCode?: string;
|
|
74
|
-
cogsCostingCode1?: string;
|
|
71
|
+
transactionItemCode?: string;
|
|
72
|
+
cogsCostingCode?: string;
|
|
75
73
|
cogsCostingCode2?: string;
|
|
76
74
|
cogsCostingCode3?: string;
|
|
77
75
|
poKey?: string;
|
|
78
76
|
selectedRestCompany?: RestCompanyType;
|
|
77
|
+
bplId?: string;
|
|
78
|
+
purchaseOrderItemCode?: string;
|
|
79
79
|
concurrencyStamp?: string;
|
|
80
80
|
}
|