@omniumretail/shared-resources 0.2.28 → 0.2.30
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/dist/bundle.js +1 -1
- package/dist/types/hooks/ATIM/BackOffice/get/useAbsenceTypes.hook.d.ts +10 -0
- package/dist/types/hooks/ATIM/BackOffice/get/useAttendancesSummary.hook.d.ts +10 -0
- package/dist/types/hooks/ATIM/BackOffice/get/useEmployeeWorklogDetails.hook.d.ts +5 -3
- package/dist/types/hooks/ATIM/BackOffice/get/useWorkMonths.hook.d.ts +9 -0
- package/dist/types/hooks/ATIM/BackOffice/mutate/postAttendanceSummary.hook.d.ts +2 -0
- package/dist/types/hooks/OSUA/MIMO/get/getIntegrationByName.hook.d.ts +6 -0
- package/dist/types/hooks/OSUA/MIMO/mutate/postDagsAdjustStock.hook.d.ts +1 -0
- package/dist/types/hooks/OSUA/MIMO/mutate/postProductVendusIntegration.hook.d.ts +2 -0
- package/dist/types/hooks/OSUA/get/documentos/getGngDocumentos.hook.d.ts +2 -2
- package/dist/types/hooks/index.d.ts +150 -144
- package/dist/types/interfaces/BackofficeAtim.d.ts +68 -0
- package/dist/types/interfaces/MIMO.d.ts +12 -0
- package/dist/types/interfaces/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/hooks/ATIM/BackOffice/get/useAbsenceTypes.hook.ts +33 -0
- package/src/hooks/ATIM/BackOffice/get/useAttendancesSummary.hook.ts +40 -0
- package/src/hooks/ATIM/BackOffice/get/useEmployeeWorklogDetails.hook.ts +63 -38
- package/src/hooks/ATIM/BackOffice/get/useWorkMonths.hook.ts +31 -0
- package/src/hooks/ATIM/BackOffice/mutate/postAttendanceSummary.hook.ts +17 -0
- package/src/hooks/Astt/get/getTransferDocumentsPackagesQuery.hook.ts +2 -1
- package/src/hooks/OSUA/MIMO/get/getIntegrationByName.hook.ts +19 -0
- package/src/hooks/OSUA/MIMO/mutate/postDagsAdjustStock.hook.ts +13 -0
- package/src/hooks/OSUA/MIMO/mutate/postProductVendusIntegration.hook.ts +15 -0
- package/src/hooks/OSUA/get/documentos/getGngDocumentos.hook.ts +17 -10
- package/src/hooks/index.ts +157 -148
- package/src/interfaces/BackofficeAtim.ts +106 -31
- package/src/interfaces/MIMO.ts +13 -0
- package/src/interfaces/index.ts +2 -1
|
@@ -1,41 +1,66 @@
|
|
|
1
|
-
import { useQuery
|
|
1
|
+
import { useQuery, UseQueryOptions } from "@tanstack/react-query";
|
|
2
2
|
import { getDateToUnix } from "../../../../helpers/date-unix.helper";
|
|
3
|
-
import { get, getAuth0} from "../../../../services/ApiService";
|
|
4
|
-
import { ResponseList, EmployeesWorklog } from
|
|
3
|
+
import { get, getAuth0 } from "../../../../services/ApiService";
|
|
4
|
+
import { ResponseList, EmployeesWorklog } from "../../../../interfaces";
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export const useEmployeeWorklogDetails = ({storeId, startDate, endDate, search, page, records, sortBy, sortDirection, ...options}: EmployeesWithTimekeepingProps) => {
|
|
22
|
-
return useQuery<ResponseList<"EmployeesWorklog", EmployeesWorklog>>(
|
|
23
|
-
['EMPLOYEES_WITH_TIMEKEEPING', storeId, startDate, endDate, search, page, records, sortBy, sortDirection],
|
|
24
|
-
() => getAuth0<ResponseList<"EmployeesWorklog", EmployeesWorklog>>('/ATIM/EmployeesWorklogDetails', {
|
|
25
|
-
pStoreId: storeId,
|
|
26
|
-
pPage: page || 1,
|
|
27
|
-
pRecords: records,
|
|
28
|
-
pStartDate: startDate || getDateToUnix(new Date()),
|
|
29
|
-
pEndDate: endDate || getDateToUnix(new Date()),
|
|
30
|
-
pSortBy: sortBy,
|
|
31
|
-
pSortDirection: sortDirection,
|
|
32
|
-
pDisplayName: search,
|
|
33
|
-
|
|
34
|
-
}),
|
|
35
|
-
{
|
|
36
|
-
suspense: false,
|
|
37
|
-
enabled: (!!storeId && !!startDate && !!endDate),
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
);
|
|
6
|
+
interface EmployeesWithTimekeepingProps
|
|
7
|
+
extends UseQueryOptions<ResponseList<"EmployeesWorkLog", EmployeesWorklog>> {
|
|
8
|
+
storeId?: string;
|
|
9
|
+
startDate?: number;
|
|
10
|
+
endDate?: number;
|
|
11
|
+
search?: string;
|
|
12
|
+
page?: number;
|
|
13
|
+
records?: number;
|
|
14
|
+
sortBy?: string;
|
|
15
|
+
sortDirection?: string;
|
|
16
|
+
terms?: string;
|
|
17
|
+
query?: string;
|
|
41
18
|
}
|
|
19
|
+
|
|
20
|
+
export const useEmployeeWorklogDetails = ({
|
|
21
|
+
storeId,
|
|
22
|
+
startDate,
|
|
23
|
+
endDate,
|
|
24
|
+
search,
|
|
25
|
+
page,
|
|
26
|
+
records,
|
|
27
|
+
sortBy,
|
|
28
|
+
sortDirection,
|
|
29
|
+
terms,
|
|
30
|
+
query,
|
|
31
|
+
}: EmployeesWithTimekeepingProps) => {
|
|
32
|
+
return useQuery<ResponseList<"EmployeesWorklog", EmployeesWorklog>>(
|
|
33
|
+
[
|
|
34
|
+
"EMPLOYEES_WITH_TIMEKEEPING",
|
|
35
|
+
storeId,
|
|
36
|
+
startDate,
|
|
37
|
+
endDate,
|
|
38
|
+
search,
|
|
39
|
+
page,
|
|
40
|
+
records,
|
|
41
|
+
sortBy,
|
|
42
|
+
sortDirection,
|
|
43
|
+
terms,
|
|
44
|
+
query,
|
|
45
|
+
],
|
|
46
|
+
() =>
|
|
47
|
+
getAuth0<ResponseList<"EmployeesWorklog", EmployeesWorklog>>(
|
|
48
|
+
"/ATIM/EmployeesWorklogDetails",
|
|
49
|
+
{
|
|
50
|
+
pStoreId: storeId,
|
|
51
|
+
pPage: page || 1,
|
|
52
|
+
pRecords: records,
|
|
53
|
+
pStartDate: startDate || getDateToUnix(new Date()),
|
|
54
|
+
pEndDate: endDate || getDateToUnix(new Date()),
|
|
55
|
+
pSortBy: sortBy,
|
|
56
|
+
pSortDirection: sortDirection,
|
|
57
|
+
pTerms: terms,
|
|
58
|
+
pQuery: query,
|
|
59
|
+
}
|
|
60
|
+
),
|
|
61
|
+
{
|
|
62
|
+
suspense: false,
|
|
63
|
+
enabled: !!storeId && !!startDate && !!endDate,
|
|
64
|
+
}
|
|
65
|
+
);
|
|
66
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { useQuery, UseQueryOptions } from "@tanstack/react-query";
|
|
2
|
+
import { getDateToUnix } from "../../../../helpers/date-unix.helper";
|
|
3
|
+
import { get, getAuth0 } from "../../../../services/ApiService";
|
|
4
|
+
import { ResponseList, WorkMonths } from "../../../../interfaces";
|
|
5
|
+
|
|
6
|
+
interface WorkMonthsQueryOptions
|
|
7
|
+
extends UseQueryOptions<ResponseList<"WorkMonths", WorkMonths>> {
|
|
8
|
+
year?: number;
|
|
9
|
+
page?: number;
|
|
10
|
+
records?: number;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const useWorkMonths = ({
|
|
14
|
+
year,
|
|
15
|
+
page,
|
|
16
|
+
records,
|
|
17
|
+
...options
|
|
18
|
+
}: WorkMonthsQueryOptions) => {
|
|
19
|
+
return useQuery<ResponseList<"WorkMonths", WorkMonths>>(
|
|
20
|
+
["WorkMonths", year, page, records],
|
|
21
|
+
() =>
|
|
22
|
+
get("/ATIM/WorkMonths", {
|
|
23
|
+
pYear: year,
|
|
24
|
+
pPage: page,
|
|
25
|
+
pRecords: records,
|
|
26
|
+
}),
|
|
27
|
+
{
|
|
28
|
+
...options,
|
|
29
|
+
}
|
|
30
|
+
);
|
|
31
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { useQueryClient, useMutation } from "@tanstack/react-query";
|
|
2
|
+
import { AttendancesSummary } from "../../../../interfaces";
|
|
3
|
+
import { postAuth0 } from "../../../../services/ApiService";
|
|
4
|
+
|
|
5
|
+
export const postAttendanceRange = () => {
|
|
6
|
+
const queryClient = useQueryClient();
|
|
7
|
+
return useMutation<AttendancesSummary , unknown, AttendancesSummary >(
|
|
8
|
+
(data: AttendancesSummary ) => {
|
|
9
|
+
return postAuth0("/ATIM/AttendancesSummary", undefined, data);
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
onSuccess: (data: AttendancesSummary ) => {
|
|
13
|
+
queryClient.setQueryData(["POST_ATTENDANCES_SUMMARY"], data);
|
|
14
|
+
},
|
|
15
|
+
}
|
|
16
|
+
);
|
|
17
|
+
};
|
|
@@ -12,7 +12,8 @@ export interface TransferDocumentsPackagesProps extends UseQueryOptions<Response
|
|
|
12
12
|
export const getTransferDocumentsPackagesQueryHook = ({ sortBy, sortDirection, terms, transferDocumentId }: TransferDocumentsPackagesProps) => {
|
|
13
13
|
return useQuery(
|
|
14
14
|
['ASTT_TRANSFER_PACKAGES', sortBy, sortDirection, terms, transferDocumentId],
|
|
15
|
-
() => getAuth0<ResponseList<"TransferDocumentDetails", TransferDocumentsDetails>>(`/ASTT/TransferDocuments
|
|
15
|
+
() => getAuth0<ResponseList<"TransferDocumentDetails", TransferDocumentsDetails>>(`/ASTT/TransferDocuments/Packages`, {
|
|
16
|
+
pTransferDocumentId: transferDocumentId,
|
|
16
17
|
pSortBy: sortBy || "PackageId",
|
|
17
18
|
pSortDirection: sortDirection || "asc",
|
|
18
19
|
pTerms: terms
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useQuery, UseQueryOptions } from "@tanstack/react-query";
|
|
2
|
+
import { ImportData } from "../../../../interfaces";
|
|
3
|
+
import { get } from "../../../../services/ApiService";
|
|
4
|
+
|
|
5
|
+
export interface getIntegrationByNameProps extends UseQueryOptions<ImportData> {
|
|
6
|
+
name: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export const getIntegrationByName = ({ name }: getIntegrationByNameProps) => {
|
|
10
|
+
return useQuery(
|
|
11
|
+
['GET_MIMO_INTEGRATION_BY_NAME', name],
|
|
12
|
+
() => get<ImportData>('/MIMO/IntegrationData/ByName', {
|
|
13
|
+
pName: name,
|
|
14
|
+
}),
|
|
15
|
+
{
|
|
16
|
+
keepPreviousData: true,
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
2
|
+
import { post } from '../../../../services/ApiService';
|
|
3
|
+
|
|
4
|
+
export const postDagsAdjustStock = () => {
|
|
5
|
+
const queryClient = useQueryClient();
|
|
6
|
+
return useMutation<string, unknown, void>(() => {
|
|
7
|
+
return post('/api/v1/MIMO/Dags/AdjustStock');
|
|
8
|
+
}, {
|
|
9
|
+
onSuccess: (data: string) => {
|
|
10
|
+
queryClient.setQueryData(['DAGS_ADJUST_STOCK'], data);
|
|
11
|
+
},
|
|
12
|
+
});
|
|
13
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
2
|
+
import { VendusIntegration } from '../../../../interfaces';
|
|
3
|
+
import { post } from '../../../../services/ApiService';
|
|
4
|
+
|
|
5
|
+
export const postVendusIntegration= () => {
|
|
6
|
+
const queryClient = useQueryClient();
|
|
7
|
+
return useMutation<VendusIntegration, unknown, VendusIntegration>((data: VendusIntegration) => {
|
|
8
|
+
return post('/MIMO/VendusIntegration/Full', data);
|
|
9
|
+
}, {
|
|
10
|
+
onSuccess: (data: VendusIntegration) => {
|
|
11
|
+
queryClient.setQueryData(
|
|
12
|
+
['VENDUS_INTEGRATION'], data);
|
|
13
|
+
},
|
|
14
|
+
});
|
|
15
|
+
}
|
|
@@ -1,21 +1,28 @@
|
|
|
1
|
-
import { useQuery, UseQueryOptions } from
|
|
2
|
-
import { get } from
|
|
3
|
-
import { DocumentGng
|
|
1
|
+
import { useQuery, UseQueryOptions } from "@tanstack/react-query";
|
|
2
|
+
import { get } from "../../../../services/ApiService";
|
|
3
|
+
import { DocumentGng, ResponseList } from "../../../../interfaces";
|
|
4
4
|
|
|
5
|
-
interface GetGNGDocumentosProps
|
|
5
|
+
interface GetGNGDocumentosProps
|
|
6
|
+
extends UseQueryOptions<ResponseList<"Documents", DocumentGng>> {
|
|
6
7
|
page?: number;
|
|
7
8
|
records?: number;
|
|
8
9
|
query?: string;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
|
-
export const getGngDocumentos = ({
|
|
12
|
+
export const getGngDocumentos = ({
|
|
13
|
+
page,
|
|
14
|
+
records,
|
|
15
|
+
query,
|
|
16
|
+
...options
|
|
17
|
+
}: GetGNGDocumentosProps) => {
|
|
12
18
|
return useQuery(
|
|
13
|
-
[
|
|
14
|
-
() =>
|
|
19
|
+
["GNG_DOCUMENTOS", page, records, query],
|
|
20
|
+
() =>
|
|
21
|
+
get<ResponseList<"Documents", DocumentGng>>("/GNG/Document/Documents", {
|
|
15
22
|
pPage: page || 1,
|
|
16
23
|
pRecords: records || 50,
|
|
17
|
-
pQuery: query
|
|
18
|
-
|
|
24
|
+
pQuery: query,
|
|
25
|
+
}),
|
|
19
26
|
options
|
|
20
27
|
);
|
|
21
|
-
}
|
|
28
|
+
};
|
package/src/hooks/index.ts
CHANGED
|
@@ -1,189 +1,198 @@
|
|
|
1
1
|
//Stores
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
2
|
+
export * from "./Store/useStoreQuery";
|
|
3
|
+
export * from "./Store/useStoreByCodeQuery.hook";
|
|
4
|
+
export * from "./Store/useAllStoreQuery.hook";
|
|
5
|
+
export * from "./Store/getLocationsByUser.hook";
|
|
6
6
|
|
|
7
7
|
//EvaluationCycle
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
8
|
+
export * from "./EvaluationCycle/get/useEvaluationCycleIdQuery.hook";
|
|
9
|
+
export * from "./EvaluationCycle/mutate/useEvaluationCycleMutateQuery.hook";
|
|
10
|
+
export * from "./EvaluationCycle/others/activateEvaluationCycleQuery.hook";
|
|
11
|
+
export * from "./EvaluationCycle/others/deleteEvaluationCycleQuery.hook";
|
|
12
|
+
export * from "./EvaluationCycle/get/useEvaluationCycleQuery.hook";
|
|
13
|
+
export * from "./EvaluationCycle/others/cancelEvaluationCycleQuery.hook";
|
|
14
|
+
export * from "./EvaluationCycle/others/finishEvaluationCycleQuery.hook";
|
|
15
15
|
|
|
16
16
|
//Questionnaire
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
17
|
+
export * from "./Questionnaire/get/useQuestionnaireQuery.hook";
|
|
18
|
+
export * from "./Questionnaire/others/deleteQuestionnaireQuery.hook";
|
|
19
|
+
export * from "./Questionnaire/others/duplicateQuestionnaireQuery.hook";
|
|
20
|
+
export * from "./Questionnaire/mutate/useQuestionnaireMutateQuery.hook";
|
|
21
|
+
export * from "./Questionnaire/others/activateQuestionnaireQuery.hook";
|
|
22
|
+
export * from "./Questionnaire/get/useQuestionnaireIdQuery.hook";
|
|
23
|
+
export * from "./Questionnaire/others/finishQuestionnaireQuery.hook";
|
|
24
|
+
export * from "./Questionnaire/others/cancelQuestionnaireQuery.hook";
|
|
25
25
|
|
|
26
26
|
//Users
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
29
|
-
export * from
|
|
30
|
-
export * from
|
|
31
|
-
export * from
|
|
32
|
-
export * from
|
|
33
|
-
export * from
|
|
34
|
-
export * from
|
|
35
|
-
export * from
|
|
36
|
-
export * from
|
|
37
|
-
export * from
|
|
38
|
-
export * from
|
|
27
|
+
export * from "./Users/get/useUserQuery.hook";
|
|
28
|
+
export * from "./Users/get/useUserListQuery.hook";
|
|
29
|
+
export * from "./Users/others/useUserBlockQuery.hook";
|
|
30
|
+
export * from "./Users/others/useUserEmailVerifQuery.hook";
|
|
31
|
+
export * from "./Users/get/useExpUsersAnswersQuery.hook";
|
|
32
|
+
export * from "./Users/mutate/useUpdateSupervisorMutateQuery.hook";
|
|
33
|
+
export * from "./Users/others/useSingleUserResetPassword.hook";
|
|
34
|
+
export * from "./Users/get/useSingleUserIdQuery.hook";
|
|
35
|
+
export * from "./Users/mutate/useSingleUserIdMutateQuery.hook";
|
|
36
|
+
export * from "./Users/get/useUserIdQuery.hook";
|
|
37
|
+
export * from "./Users/others/useUserResetPassByEmail.hook";
|
|
38
|
+
export * from "./Users/get/getUserAndSupervisorQuery.hook";
|
|
39
39
|
|
|
40
40
|
//Analytics
|
|
41
|
-
export * from
|
|
42
|
-
export * from
|
|
43
|
-
export * from
|
|
44
|
-
export * from
|
|
45
|
-
export * from
|
|
46
|
-
export * from
|
|
41
|
+
export * from "./Analytics/get/useAnalyticsEvaluationCyclesQuery.hook";
|
|
42
|
+
export * from "./Analytics/get/useAnalyticsUserIdQuery.hook";
|
|
43
|
+
export * from "./Analytics/get/useAnalyticsQuestionsQuery.hook";
|
|
44
|
+
export * from "./Analytics/get/useAnalyticsSideBarQuery.hook";
|
|
45
|
+
export * from "./Analytics/get/useAnalyticsUserQuery.hook";
|
|
46
|
+
export * from "./Analytics/get/getArchivedAnalyticsQuery.hook";
|
|
47
47
|
|
|
48
48
|
//Answers
|
|
49
|
-
export * from
|
|
50
|
-
export * from
|
|
51
|
-
export * from
|
|
52
|
-
export * from
|
|
53
|
-
export * from
|
|
49
|
+
export * from "./Answer/get/useAnswerIdQuery.hook";
|
|
50
|
+
export * from "./Answer/mutate/useAnswerMutateQuery.hook";
|
|
51
|
+
export * from "./Answer/get/useAnswersUserSupervisorQuery.hook";
|
|
52
|
+
export * from "./Answer/others/openAnswerQuery.hook";
|
|
53
|
+
export * from "./Answer/others/showAnswerQuery.hook";
|
|
54
54
|
|
|
55
55
|
//AprProducts
|
|
56
|
-
export * from
|
|
57
|
-
export * from
|
|
58
|
-
export * from
|
|
59
|
-
export * from
|
|
56
|
+
export * from "./AprProduct/get/useProductsQuery.hook";
|
|
57
|
+
export * from "./AprProduct/get/useProductHierarchies.hook";
|
|
58
|
+
export * from "./AprProduct/get/useProductRecommendations.hook";
|
|
59
|
+
export * from "./AprProduct/get/useProductsByRefQuery.hook";
|
|
60
60
|
|
|
61
61
|
//Roles
|
|
62
|
-
export * from
|
|
62
|
+
export * from "./Roles/get/useAllRolesQuery.hook";
|
|
63
63
|
|
|
64
64
|
//AsvProduct
|
|
65
|
-
export * from
|
|
66
|
-
export * from
|
|
67
|
-
export * from
|
|
65
|
+
export * from "./AsvProduct/get/getProductsByRefQuery.hook";
|
|
66
|
+
export * from "./AsvProduct/get/getProductsByStoreQuery.hook";
|
|
67
|
+
export * from "./AsvProduct/get/getProductsStockDetailsQuery.hook";
|
|
68
68
|
|
|
69
69
|
//Ass
|
|
70
|
-
export * from
|
|
71
|
-
export * from
|
|
72
|
-
export * from
|
|
70
|
+
export * from "./Ass/get/getAssProductsByRefQuery.hook";
|
|
71
|
+
export * from "./Ass/get/getAssProductsByStoreQuery.hook";
|
|
72
|
+
export * from "./Ass/get/getAssProductsStockDetailsQuery.hook";
|
|
73
73
|
|
|
74
74
|
//ASTS
|
|
75
|
-
export * from
|
|
76
|
-
export * from
|
|
75
|
+
export * from "./Asts/get/getProductInfoQuery.hook";
|
|
76
|
+
export * from "./Asts/get/getStockQuery.hook";
|
|
77
77
|
|
|
78
78
|
//Astt
|
|
79
|
-
export * from
|
|
80
|
-
export * from
|
|
81
|
-
export * from
|
|
82
|
-
export * from
|
|
83
|
-
export * from
|
|
84
|
-
export * from
|
|
85
|
-
export * from
|
|
86
|
-
export * from
|
|
87
|
-
export * from
|
|
88
|
-
export * from
|
|
89
|
-
export * from
|
|
90
|
-
export * from
|
|
79
|
+
export * from "./Astt/get/getTransferDocumentsQuery.hook";
|
|
80
|
+
export * from "./Astt/get/getTransferDocumentsByIdQuery.hook";
|
|
81
|
+
export * from "./Astt/get/getTransferDocumentsByPackageQuery.hook";
|
|
82
|
+
export * from "./Astt/get/getTransferStatesQuery.hook";
|
|
83
|
+
export * from "./Astt/get/getTransferDocumentsPackagesQuery.hook";
|
|
84
|
+
export * from "./Astt/get/getTransferReportDiff.hook";
|
|
85
|
+
export * from "./Astt/get/getTransferAllProductsQuery.hook";
|
|
86
|
+
export * from "./Astt/mutate/postTransferDocumentsMutateQuery.hook";
|
|
87
|
+
export * from "./Astt/mutate/putTransferDocumentsStateMutateQuery.hook";
|
|
88
|
+
export * from "./Astt/get/getReportsBuilderQuery.hook";
|
|
89
|
+
export * from "./Astt/get/getRfidQuery.hook";
|
|
90
|
+
export * from "./Astt/get/getProductsListingQuery.hook";
|
|
91
91
|
|
|
92
92
|
//ATIM
|
|
93
|
-
export * from
|
|
94
|
-
export * from
|
|
95
|
-
export * from
|
|
93
|
+
export * from "./ATIM/PicaPonto/get/getEmployeesWithTimekeeping.hook";
|
|
94
|
+
export * from "./ATIM/PicaPonto/mutate/postVerifyUserQuery.hook";
|
|
95
|
+
export * from "./ATIM/PicaPonto/mutate/postAttendance.hook";
|
|
96
96
|
|
|
97
97
|
//ASTA
|
|
98
|
-
export * from
|
|
99
|
-
export * from
|
|
100
|
-
export * from
|
|
101
|
-
export * from
|
|
102
|
-
export * from
|
|
103
|
-
export * from
|
|
104
|
-
export * from
|
|
105
|
-
export * from
|
|
106
|
-
export * from
|
|
107
|
-
|
|
108
|
-
export * from
|
|
109
|
-
export * from
|
|
110
|
-
export * from
|
|
111
|
-
export * from
|
|
112
|
-
export * from
|
|
113
|
-
export * from
|
|
114
|
-
|
|
115
|
-
export * from
|
|
116
|
-
export * from
|
|
117
|
-
export * from
|
|
118
|
-
export * from
|
|
119
|
-
export * from
|
|
120
|
-
|
|
121
|
-
export * from
|
|
122
|
-
export * from
|
|
123
|
-
export * from
|
|
124
|
-
export * from
|
|
125
|
-
export * from
|
|
126
|
-
export * from
|
|
127
|
-
export * from
|
|
128
|
-
export * from
|
|
129
|
-
export * from
|
|
130
|
-
|
|
131
|
-
export * from
|
|
132
|
-
export * from
|
|
133
|
-
export * from
|
|
134
|
-
export * from
|
|
135
|
-
export * from
|
|
136
|
-
export * from
|
|
137
|
-
export * from
|
|
138
|
-
export * from
|
|
139
|
-
export * from
|
|
140
|
-
export * from
|
|
141
|
-
export * from
|
|
98
|
+
export * from "./Asta/Template/get/getTemplateByIdQuery.hook";
|
|
99
|
+
export * from "./Asta/Template/get/getTemplateHeadersQuery.hook";
|
|
100
|
+
export * from "./Asta/Template/get/getTemplateQuery.hook";
|
|
101
|
+
export * from "./Asta/Template/mutate/useTemplateMutateQuery.hook";
|
|
102
|
+
export * from "./Asta/Template/others/deleteTemplateQuery.hook";
|
|
103
|
+
export * from "./Asta/Template/others/extractTemplateQuery.hook";
|
|
104
|
+
export * from "./Asta/Template/others/archiveTemplateQuery.hook";
|
|
105
|
+
export * from "./Asta/Template/others/duplicateTemplateQuery.hook";
|
|
106
|
+
export * from "./Asta/Template/others/finishTemplateQuery.hook";
|
|
107
|
+
|
|
108
|
+
export * from "./Asta/Inspection/get/getInspectionQuery.hook";
|
|
109
|
+
export * from "./Asta/Inspection/mutate/useInspectionMutateQuery.hook";
|
|
110
|
+
export * from "./Asta/Inspection/others/deleteInspectionQuery.hook";
|
|
111
|
+
export * from "./Asta/Inspection/others/finishInspectionQuery.hook";
|
|
112
|
+
export * from "./Asta/Inspection/others/archiveTemplateQuery.hook";
|
|
113
|
+
export * from "./Asta/Inspection/others/extractTemplateQuery.hook";
|
|
114
|
+
|
|
115
|
+
export * from "./Asta/Answer/get/getAstaAnswerQuery.hook";
|
|
116
|
+
export * from "./Asta/Answer/get/getAstaAnswerByIdQuery.hook";
|
|
117
|
+
export * from "./Asta/Answer/mutate/useAstaAnswersMutateQuery.hook";
|
|
118
|
+
export * from "./Asta/Answer/others/finishAstaAnswersQuery.hook";
|
|
119
|
+
export * from "./Asta/Answer/others/putAnswerImageQuery.hook";
|
|
120
|
+
|
|
121
|
+
export * from "./Asta/AnswerType/get/getAnswerTypeQuery.hook";
|
|
122
|
+
export * from "./Asta/AnswerType/get/getAllAnswerTypeQuery.hook";
|
|
123
|
+
export * from "./Asta/AnswerType/get/getAnswerColorsQuery.hook";
|
|
124
|
+
export * from "./Asta/AnswerType/get/getAnswerTypeByIdQuery.hook";
|
|
125
|
+
export * from "./Asta/AnswerType/mutate/useAnswerTypeMutateQuery.hook";
|
|
126
|
+
export * from "./Asta/AnswerType/mutate/useAnswerTypeMutateQuery.hook";
|
|
127
|
+
export * from "./Asta/AnswerType/others/deleteAnswerTypeQuery.hook";
|
|
128
|
+
export * from "./Asta/AnswerType/others/finishAnswerTypeQuery.hook";
|
|
129
|
+
export * from "./Asta/AnswerType/others/selectAnswerNameQuery.hook";
|
|
130
|
+
|
|
131
|
+
export * from "./Asta/Actions/get/getActionByIdQuery.hook";
|
|
132
|
+
export * from "./Asta/Actions/get/getActionStagesQuery.hook";
|
|
133
|
+
export * from "./Asta/Actions/get/getActionPriorityQuery.hook";
|
|
134
|
+
export * from "./Asta/Actions/get/getActionQuery.hook";
|
|
135
|
+
export * from "./Asta/Actions/mutate/useActionMutateQuery.hook";
|
|
136
|
+
export * from "./Asta/Actions/others/deleteActionQuery.hook";
|
|
137
|
+
export * from "./Asta/Actions/others/extractActionQuery.hook";
|
|
138
|
+
export * from "./Asta/Actions/others/archiveActionQuery.hook";
|
|
139
|
+
export * from "./Asta/Actions/others/finishActionQuery.hook";
|
|
140
|
+
export * from "./Asta/Actions/others/startActionQuery.hook";
|
|
141
|
+
export * from "./Asta/Actions/others/selectActionStatusQuery.hook";
|
|
142
142
|
|
|
143
143
|
//APRC
|
|
144
|
-
export * from
|
|
145
|
-
export * from
|
|
146
|
-
export * from
|
|
144
|
+
export * from "./Aprc/get/getPriceChangePinQuery.hook";
|
|
145
|
+
export * from "./Aprc/others/postPriceChangePinQuery.hook";
|
|
146
|
+
export * from "./Aprc/others/sendEmailWithPinQuery.hook";
|
|
147
147
|
|
|
148
148
|
//BigWin
|
|
149
|
-
export * from
|
|
150
|
-
export * from
|
|
151
|
-
export * from
|
|
149
|
+
export * from "./BigWin/get/getMonthsListQuery.hook";
|
|
150
|
+
export * from "./BigWin/others/publishMonthsEmployeeQuery.hook";
|
|
151
|
+
export * from "./BigWin/others/publishMonthsManagerQuery.hook";
|
|
152
152
|
|
|
153
153
|
//OSUA
|
|
154
|
-
export * from
|
|
155
|
-
export * from
|
|
156
|
-
export * from
|
|
157
|
-
export * from
|
|
158
|
-
export * from
|
|
159
|
-
export * from
|
|
154
|
+
export * from "./OSUA/get/documentos/getGngDocumentos.hook";
|
|
155
|
+
export * from "./OSUA/get/documentos/getSitooDocumentos.hook";
|
|
156
|
+
export * from "./OSUA/get/vouchers/getGngVoucher.hook";
|
|
157
|
+
export * from "./OSUA/get/vouchers/getSitooVouchers.hook";
|
|
158
|
+
export * from "./OSUA/get/vouchers/getVoucherIntegrationRequestStatus.hook";
|
|
159
|
+
export * from "./OSUA/get/orders/getOrderDocuments.hook";
|
|
160
160
|
|
|
161
|
-
export * from
|
|
161
|
+
export * from "./OSUA/mutate/postCreateIntegrationRequest.hook";
|
|
162
|
+
|
|
163
|
+
//MIMO
|
|
164
|
+
export * from "./OSUA/MIMO/get/getIntegrationByName.hook";
|
|
165
|
+
export * from "./OSUA/MIMO/mutate/postProductVendusIntegration.hook";
|
|
166
|
+
export * from "./OSUA/MIMO/mutate/postDagsAdjustStock.hook";
|
|
162
167
|
|
|
163
168
|
//ACB
|
|
164
|
-
export * from
|
|
165
|
-
export * from
|
|
169
|
+
export * from "./ACB/get/getClientBalance.hook";
|
|
170
|
+
export * from "./ACB/mutate/postClientBalance.hook";
|
|
166
171
|
|
|
167
172
|
//BackofficeAtim
|
|
168
173
|
|
|
169
|
-
export * from
|
|
170
|
-
export * from
|
|
171
|
-
export * from
|
|
172
|
-
export * from
|
|
174
|
+
export * from "./ATIM/BackOffice/get/useEmployeeWorklogDetails.hook";
|
|
175
|
+
export * from "./ATIM/BackOffice/get/useEmployeeQueryHook.hook";
|
|
176
|
+
export * from "./ATIM/BackOffice/get/useStoresQueryHook.hook";
|
|
177
|
+
export * from "./ATIM/BackOffice/mutate/postAttendanceRange.hook";
|
|
178
|
+
export * from "./ATIM/BackOffice/get/useAbsenceTypes.hook";
|
|
179
|
+
export * from "./ATIM/BackOffice/get/useAttendancesSummary.hook";
|
|
180
|
+
export * from "./ATIM/BackOffice/get/useWorkMonths.hook";
|
|
173
181
|
|
|
174
182
|
//Others
|
|
175
|
-
export * from
|
|
176
|
-
export * from
|
|
177
|
-
export * from
|
|
178
|
-
export * from
|
|
179
|
-
export * from
|
|
180
|
-
export * from
|
|
181
|
-
export * from
|
|
182
|
-
export * from
|
|
183
|
-
export * from
|
|
184
|
-
export * from
|
|
185
|
-
export * from
|
|
186
|
-
export * from
|
|
187
|
-
export * from
|
|
188
|
-
export * from
|
|
189
|
-
export * from
|
|
183
|
+
export * from "./Others/useJobTitlesQuery.hook";
|
|
184
|
+
export * from "./Others/useContractStatesQuery.hook";
|
|
185
|
+
export * from "./Others/useApplicationDataQuery.hook";
|
|
186
|
+
export * from "./Others/useTermNotificationQuery.hook";
|
|
187
|
+
export * from "./Others/useCustomersQuery.hook";
|
|
188
|
+
export * from "./Others/useCountriesQuery.hook";
|
|
189
|
+
export * from "./Others/useCreateNotification.hook";
|
|
190
|
+
export * from "./Others/postCheckoutsMutateQuery.hook";
|
|
191
|
+
export * from "./Others/postVerifyImageQuery.hook";
|
|
192
|
+
export * from "./Others/getWeeklyWorkloadQuery.hook";
|
|
193
|
+
export * from "./Others/getNotificationTitleQuery.hook";
|
|
194
|
+
export * from "./Others/getUserEmailStatusQuery.hook";
|
|
195
|
+
export * from "./Others/getRegulationQuery.hook";
|
|
196
|
+
export * from "./Others/useRegulationQuery.hook";
|
|
197
|
+
export * from "./Others/postUserAuthenticationQuery.hook";
|
|
198
|
+
|