@dexteel/mesf-core 5.13.1 → 5.14.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +31 -0
- package/dist/components/shared/CenteredLazyLoading.d.ts +2 -0
- package/dist/configuration/pages/log/LogsPage.d.ts +8 -0
- package/dist/configuration/pages/log/components/Filters/dateFilter.d.ts +2 -2
- package/dist/configuration/pages/log/components/LogsTable/TableLogs.d.ts +1 -9
- package/dist/configuration/pages/log/components/LogsTable/customHooks/useLogTableData.d.ts +0 -8
- package/dist/configuration/pages/log/repositories/LogsRepository.d.ts +8 -1
- package/dist/index.esm.js +333 -374
- package/dist/index.esm.js.map +1 -1
- package/dist/services/ApiService.d.ts +1 -1
- package/package.json +2 -1
- package/dist/configuration/pages/log/context/LogsContext.d.ts +0 -77
- package/dist/configuration/pages/log/reducers/LogsReducer.d.ts +0 -72
|
@@ -38,7 +38,7 @@ export declare class MESApiService {
|
|
|
38
38
|
loginWithWindowsAuthentication(): Promise<Response>;
|
|
39
39
|
uploadFiles(selectedFiles: File[], folderName?: string): Promise<any>;
|
|
40
40
|
call(procedure: string, parameters: any[], database?: string): Promise<any>;
|
|
41
|
-
callV2(procedure: string, parameters: any[],
|
|
41
|
+
callV2(procedure: string, parameters: any[], signal?: AbortSignal | undefined): Promise<ResponseMESF>;
|
|
42
42
|
callJSON(procedure: string, parameters: any[], database?: string): Promise<any>;
|
|
43
43
|
import(procedure: string, parameters: any[], files: any[], uniqueFile: any, database?: string): Promise<any>;
|
|
44
44
|
export(procedure: string, parameters: spParameter[], fileName: string, database?: string): Promise<string | void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dexteel/mesf-core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.14.1",
|
|
4
4
|
"author": "Dexteel Team",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"@reduxjs/toolkit": "^1.8.1",
|
|
37
37
|
"@rollup/plugin-babel": "^5.3.1",
|
|
38
38
|
"@rollup/plugin-typescript": "^8.3.1",
|
|
39
|
+
"@tanstack/react-query": "^4.41.0",
|
|
39
40
|
"@types/lodash-es": "^4.17.6",
|
|
40
41
|
"@types/node": "^12.20.46",
|
|
41
42
|
"@types/react": "^17.0.39",
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { default as React, type ReactNode } from "react";
|
|
2
|
-
export declare const useLogsContext: () => {
|
|
3
|
-
state: {
|
|
4
|
-
logs: import("../models/Log").Log[];
|
|
5
|
-
searchData: import("../models/SearchData").SearchData;
|
|
6
|
-
Timezone: "UTC" | "Server";
|
|
7
|
-
};
|
|
8
|
-
actions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
9
|
-
setLogs(state: import("immer/dist/internal").WritableDraft<{
|
|
10
|
-
logs: import("../models/Log").Log[];
|
|
11
|
-
searchData: import("../models/SearchData").SearchData;
|
|
12
|
-
Timezone: "UTC" | "Server";
|
|
13
|
-
}>, { payload }: {
|
|
14
|
-
payload: any;
|
|
15
|
-
type: string;
|
|
16
|
-
}): void;
|
|
17
|
-
setSearchData(state: import("immer/dist/internal").WritableDraft<{
|
|
18
|
-
logs: import("../models/Log").Log[];
|
|
19
|
-
searchData: import("../models/SearchData").SearchData;
|
|
20
|
-
Timezone: "UTC" | "Server";
|
|
21
|
-
}>, { payload }: {
|
|
22
|
-
payload: any;
|
|
23
|
-
type: string;
|
|
24
|
-
}): void;
|
|
25
|
-
setStartFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
26
|
-
logs: import("../models/Log").Log[];
|
|
27
|
-
searchData: import("../models/SearchData").SearchData;
|
|
28
|
-
Timezone: "UTC" | "Server";
|
|
29
|
-
}>, { payload }: {
|
|
30
|
-
payload: any;
|
|
31
|
-
type: string;
|
|
32
|
-
}): void;
|
|
33
|
-
setEndFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
34
|
-
logs: import("../models/Log").Log[];
|
|
35
|
-
searchData: import("../models/SearchData").SearchData;
|
|
36
|
-
Timezone: "UTC" | "Server";
|
|
37
|
-
}>, { payload }: {
|
|
38
|
-
payload: any;
|
|
39
|
-
type: string;
|
|
40
|
-
}): void;
|
|
41
|
-
setSearchFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
42
|
-
logs: import("../models/Log").Log[];
|
|
43
|
-
searchData: import("../models/SearchData").SearchData;
|
|
44
|
-
Timezone: "UTC" | "Server";
|
|
45
|
-
}>, { payload }: {
|
|
46
|
-
payload: any;
|
|
47
|
-
type: string;
|
|
48
|
-
}): void;
|
|
49
|
-
setLogTypeCodeFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
50
|
-
logs: import("../models/Log").Log[];
|
|
51
|
-
searchData: import("../models/SearchData").SearchData;
|
|
52
|
-
Timezone: "UTC" | "Server";
|
|
53
|
-
}>, { payload }: {
|
|
54
|
-
payload: any;
|
|
55
|
-
type: string;
|
|
56
|
-
}): void;
|
|
57
|
-
resetFilters(state: import("immer/dist/internal").WritableDraft<{
|
|
58
|
-
logs: import("../models/Log").Log[];
|
|
59
|
-
searchData: import("../models/SearchData").SearchData;
|
|
60
|
-
Timezone: "UTC" | "Server";
|
|
61
|
-
}>, { payload }: {
|
|
62
|
-
payload: any;
|
|
63
|
-
type: string;
|
|
64
|
-
}): void;
|
|
65
|
-
setTimezone(state: import("immer/dist/internal").WritableDraft<{
|
|
66
|
-
logs: import("../models/Log").Log[];
|
|
67
|
-
searchData: import("../models/SearchData").SearchData;
|
|
68
|
-
Timezone: "UTC" | "Server";
|
|
69
|
-
}>, { payload }: {
|
|
70
|
-
payload: any;
|
|
71
|
-
type: string;
|
|
72
|
-
}): void;
|
|
73
|
-
}, "__">;
|
|
74
|
-
};
|
|
75
|
-
export declare const LogsProvider: ({ children }: {
|
|
76
|
-
children: ReactNode;
|
|
77
|
-
}) => React.JSX.Element;
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { Log } from "../models/Log";
|
|
2
|
-
import { SearchData } from "../models/SearchData";
|
|
3
|
-
export declare const LogsReducer: import("@reduxjs/toolkit").Slice<{
|
|
4
|
-
logs: Log[];
|
|
5
|
-
searchData: SearchData;
|
|
6
|
-
Timezone: "UTC" | "Server";
|
|
7
|
-
}, {
|
|
8
|
-
setLogs(state: import("immer/dist/internal").WritableDraft<{
|
|
9
|
-
logs: Log[];
|
|
10
|
-
searchData: SearchData;
|
|
11
|
-
Timezone: "UTC" | "Server";
|
|
12
|
-
}>, { payload }: {
|
|
13
|
-
payload: any;
|
|
14
|
-
type: string;
|
|
15
|
-
}): void;
|
|
16
|
-
setSearchData(state: import("immer/dist/internal").WritableDraft<{
|
|
17
|
-
logs: Log[];
|
|
18
|
-
searchData: SearchData;
|
|
19
|
-
Timezone: "UTC" | "Server";
|
|
20
|
-
}>, { payload }: {
|
|
21
|
-
payload: any;
|
|
22
|
-
type: string;
|
|
23
|
-
}): void;
|
|
24
|
-
setStartFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
25
|
-
logs: Log[];
|
|
26
|
-
searchData: SearchData;
|
|
27
|
-
Timezone: "UTC" | "Server";
|
|
28
|
-
}>, { payload }: {
|
|
29
|
-
payload: any;
|
|
30
|
-
type: string;
|
|
31
|
-
}): void;
|
|
32
|
-
setEndFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
33
|
-
logs: Log[];
|
|
34
|
-
searchData: SearchData;
|
|
35
|
-
Timezone: "UTC" | "Server";
|
|
36
|
-
}>, { payload }: {
|
|
37
|
-
payload: any;
|
|
38
|
-
type: string;
|
|
39
|
-
}): void;
|
|
40
|
-
setSearchFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
41
|
-
logs: Log[];
|
|
42
|
-
searchData: SearchData;
|
|
43
|
-
Timezone: "UTC" | "Server";
|
|
44
|
-
}>, { payload }: {
|
|
45
|
-
payload: any;
|
|
46
|
-
type: string;
|
|
47
|
-
}): void;
|
|
48
|
-
setLogTypeCodeFilter(state: import("immer/dist/internal").WritableDraft<{
|
|
49
|
-
logs: Log[];
|
|
50
|
-
searchData: SearchData;
|
|
51
|
-
Timezone: "UTC" | "Server";
|
|
52
|
-
}>, { payload }: {
|
|
53
|
-
payload: any;
|
|
54
|
-
type: string;
|
|
55
|
-
}): void;
|
|
56
|
-
resetFilters(state: import("immer/dist/internal").WritableDraft<{
|
|
57
|
-
logs: Log[];
|
|
58
|
-
searchData: SearchData;
|
|
59
|
-
Timezone: "UTC" | "Server";
|
|
60
|
-
}>, { payload }: {
|
|
61
|
-
payload: any;
|
|
62
|
-
type: string;
|
|
63
|
-
}): void;
|
|
64
|
-
setTimezone(state: import("immer/dist/internal").WritableDraft<{
|
|
65
|
-
logs: Log[];
|
|
66
|
-
searchData: SearchData;
|
|
67
|
-
Timezone: "UTC" | "Server";
|
|
68
|
-
}>, { payload }: {
|
|
69
|
-
payload: any;
|
|
70
|
-
type: string;
|
|
71
|
-
}): void;
|
|
72
|
-
}, "__">;
|