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.
- package/dist/shared-ritm.es.js +12 -0
- package/dist/shared-ritm.umd.js +280 -280
- package/dist/types/api/services/GanttService.d.ts +16 -0
- package/dist/types/api/services/MetricsService.d.ts +2 -1
- package/dist/types/api/types/Api_Metrics.d.ts +11 -0
- package/package.json +1 -1
- package/src/api/services/GanttService.ts +24 -0
- package/src/api/services/MetricsService.ts +5 -0
- package/src/api/types/Api_Metrics.ts +13 -0
package/dist/shared-ritm.es.js
CHANGED
|
@@ -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() {
|