@gandalan/weblibs 1.0.6 → 1.0.7
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/api/IDAS.js +3 -0
- package/package.json +1 -1
package/api/IDAS.js
CHANGED
|
@@ -189,6 +189,9 @@ class IDAS {
|
|
|
189
189
|
async getByVorgangsnummer(vorgangsNummer, jahr) {
|
|
190
190
|
return await this._self.restClient.get(`/Vorgang/${vorgangsNummer}/${jahr}`);
|
|
191
191
|
},
|
|
192
|
+
async getByGuid(guid) {
|
|
193
|
+
return await this._self.restClient.get(`/Vorgang/${guid}`);
|
|
194
|
+
},
|
|
192
195
|
};
|
|
193
196
|
|
|
194
197
|
positionen = {
|