shared-ritm 1.3.76 → 1.3.77

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.
@@ -17071,6 +17071,15 @@ class $S extends gn {
17071
17071
  const n = new URLSearchParams();
17072
17072
  return n.append("projects[0]", t), n.append("filter[state]", "1"), await this.post(`/gantt/set-planned-date?${n.toString()}`, null);
17073
17073
  }
17074
+ getLinksByProject(t) {
17075
+ return this.get(`gantt/${t}/links/list`);
17076
+ }
17077
+ createLink(t) {
17078
+ return this.post("gantt/task/link", t);
17079
+ }
17080
+ deleteLink(t) {
17081
+ return this.delete(`gantt/task/link/${t}`);
17082
+ }
17074
17083
  }
17075
17084
  let gl;
17076
17085
  function xM() {
@@ -17167,6 +17176,9 @@ class WS extends gn {
17167
17176
  fetchPersonnelPlanProjects(t) {
17168
17177
  return this.post("repairs/metrics/projects_with_personnel_plan", t);
17169
17178
  }
17179
+ fetchInstrumentsPlan(t) {
17180
+ return this.get("repairs/metrics/instruments_plan", { params: t });
17181
+ }
17170
17182
  }
17171
17183
  let yl;
17172
17184
  function CM() {