authscape 1.0.92 → 1.0.94

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.92",
3
+ "version": "1.0.94",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -1,13 +1,13 @@
1
- import React, { Component } from 'react';
2
-
3
- export default class DummyComponent extends Component {
4
-
5
- render () {
6
-
7
- return (
8
- <div>I am a dummy react npm module</div>
9
- )
10
-
11
- }
12
-
1
+ import React, { Component } from 'react';
2
+
3
+ export default class DummyComponent extends Component {
4
+
5
+ render () {
6
+
7
+ return (
8
+ <div>I am a dummy react npm module</div>
9
+ )
10
+
11
+ }
12
+
13
13
  }
@@ -209,7 +209,7 @@ export const apiService = (ctx = null) => {
209
209
  if (accessToken)
210
210
  {
211
211
  let defaultOptions = await setupDefaultOptions(null);
212
- const response = await instance.get('/UserManagement', defaultOptions);
212
+ const response = await instance.get('/UserManagement/get', defaultOptions);
213
213
  if (response != null && response.status == 200)
214
214
  {
215
215
  return response.data;