project-booster-vue 9.13.2 → 9.13.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "9.13.2",
3
+ "version": "9.13.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -70,7 +70,7 @@ const declarationsWithoutAppointment = async (data: any) => {
70
70
  );
71
71
  };
72
72
 
73
- const linkInhabitantProjectToAppointmentQualification = async (data: any, inhabitantProjectId: any) => {
73
+ const linkInhabitantProjectToAppointmentQualification = async (data: any, inhabitantProjectId: string) => {
74
74
  const response = await clientApi.post(
75
75
  `/inhabitant-projects/${inhabitantProjectId}/appointment-qualifications`,
76
76
  data,
@@ -178,7 +178,7 @@ export default {
178
178
  },
179
179
  correlationId: state.sessions.correlationId,
180
180
  };
181
- const result = await linkInhabitantProjectToAppointmentQualification(state.sessions.inhabitantProjectId, data);
181
+ const result = await linkInhabitantProjectToAppointmentQualification(data, state.sessions.inhabitantProjectId);
182
182
  commit('setCurrentAppointmentQualification', result);
183
183
  commit('setIsLoadingProject', false);
184
184
  } catch (e) {