@omniumretail/shared-resources 0.0.99 → 0.1.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/shared-resources",
3
- "version": "0.0.99",
3
+ "version": "0.1.00",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
@@ -11,7 +11,7 @@ export interface UpdateSupervisorMutateQuery extends UseQueryOptions<EvaluationC
11
11
  export const useUpdateSupervisorMutateQueryHook = ({ evaluationCycleId, userId, supervisorId }: UpdateSupervisorMutateQuery) => {
12
12
  const queryClient = useQueryClient();
13
13
  return useMutation<EvaluationCycle, unknown, EvaluationCycle>((data: EvaluationCycle) => {
14
- return putAuth0(`/APE/EvaluationCycle/UpdateSupervisor`, {
14
+ return putAuth0(`/APE/EvaluationCycle/UpdateSupervisor?`, {
15
15
  pEvaluationCycleId: evaluationCycleId,
16
16
  pUserId: userId,
17
17
  pSupervisor: supervisorId