@gandalan/weblibs 0.0.12 → 0.0.13

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.
Files changed (2) hide show
  1. package/api/IDAS.js +9 -0
  2. package/package.json +1 -1
package/api/IDAS.js CHANGED
@@ -65,6 +65,15 @@ export class IDAS
65
65
  async save(m) { await restClient.put("/Benutzer", m); }
66
66
  };
67
67
 
68
+ feedback = {
69
+ async getAll() { return await restClient.get("/Feedback/"); },
70
+ async get(guid) { return await restClient.get("/Feedback/" + guid); },
71
+ async save(m) { await restClient.put("/Feedback", m); },
72
+ async comment(m) { await restClient.put("/FeedbackKommentar", m); },
73
+ async attachFile(m) { await restClient.put("/FeedbackAttachment", m); },
74
+ async deleteFile(guid) { await restClient.delete("/FeedbackAttachment/" + guid); }
75
+ };
76
+
68
77
  rollen = {
69
78
  async getAll() { return await restClient.get("/Rollen"); },
70
79
  async save(m) { await restClient.put("/Rollen", m); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gandalan/weblibs",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "WebLibs for Gandalan JS/TS/Svelte projects",
5
5
  "author": "Philipp Reif",
6
6
  "license": "ISC",