Skip to content

Commit

Permalink
Fixed: issue of missing export from util service(#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
ymaheshwari1 committed Jul 2, 2024
1 parent 8496f85 commit e2982dd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/services/UtilService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ const fetchEnums = async (payload: any): Promise<any> => {
});
}

const fetchOmsEnums = async (payload: any): Promise<any> => {
return api({
url: "omsenums",
method: "GET",
params: payload
});
}

const fetchFacilities = async (payload: any): Promise<any> => {
return api({
url: "facilities",
Expand Down Expand Up @@ -52,6 +60,7 @@ export const UtilService = {
fetchEnums,
fetchFacilities,
fetchFacilityGroups,
fetchOmsEnums,
fetchShippingMethods,
fetchStatusInformation
}

0 comments on commit e2982dd

Please sign in to comment.