sim-node-lib 0.4.57 → 0.4.59

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.
@@ -23,10 +23,8 @@ class UserPermissionIdentifiers {
23
23
  get() {
24
24
  return __awaiter(this, void 0, void 0, function* () {
25
25
  try {
26
- const data = yield new AxiosService_1.AxiosService(this.url)
27
- .authSim(this.authSim)
28
- .get();
29
- return data;
26
+ const response = yield new AxiosService_1.AxiosService(this.url).authSim(this.authSim).get();
27
+ return response.data;
30
28
  }
31
29
  catch (error) {
32
30
  throw new BasicException_1.default(error.status, error.message);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-node-lib",
3
- "version": "0.4.57",
3
+ "version": "0.4.59",
4
4
  "description": "Library from SIMLabs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",