shared-ritm 1.3.100 → 1.3.101

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.
@@ -22,7 +22,7 @@ declare class GanttService extends ApiService {
22
22
  setFixPlan(project_id: string): Promise<any>;
23
23
  getLinksByProject(id: string): Promise<ApiGanttLinkDto[]>;
24
24
  createLink(payload: ApiCreateGanttLinkDto): Promise<ApiGanttLinkDto>;
25
- editLink(id: string, payload: ApiCreateGanttLinkDto): Promise<ApiGanttLinkDto>;
25
+ editLink(id: string, payload: ApiUpdateGanttLinkDto): Promise<ApiGanttLinkDto>;
26
26
  deleteLink(id: string): Promise<any>;
27
27
  recalculateLinks(projectIds: string[]): Promise<any>;
28
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.3.100",
3
+ "version": "1.3.101",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -39,7 +39,7 @@ class GanttService extends ApiService {
39
39
  public createLink(payload: ApiCreateGanttLinkDto): Promise<ApiGanttLinkDto> {
40
40
  return this.post<ApiCreateGanttLinkDto, ApiGanttLinkDto>(`gantt/task/link`, payload)
41
41
  }
42
- public editLink(id: string, payload: ApiCreateGanttLinkDto): Promise<ApiGanttLinkDto> {
42
+ public editLink(id: string, payload: ApiUpdateGanttLinkDto): Promise<ApiGanttLinkDto> {
43
43
  return this.put<ApiUpdateGanttLinkDto, ApiGanttLinkDto>(`gantt/task/link${id}`, payload)
44
44
  }
45
45
  public deleteLink(id: string): Promise<any> {