@vocollege/app 0.0.141 → 0.0.143

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.
@@ -154,7 +154,7 @@ var GraphClient = /** @class */ (function () {
154
154
  },
155
155
  },
156
156
  }),
157
- link: (0, client_1.from)([
157
+ link: client_1.ApolloLink.from([
158
158
  links.errorLink,
159
159
  links.authLink,
160
160
  links.omitTypenameLink,
@@ -102,7 +102,6 @@ var VoApi = /** @class */ (function (_super) {
102
102
  return [4 /*yield*/, axios_1.default.get(url)];
103
103
  case 1:
104
104
  user = _a.sent();
105
- console.log("VoApi.ts -> getUser() -> user:", user);
106
105
  return [2 /*return*/, user];
107
106
  case 2:
108
107
  error_1 = _a.sent();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vocollege/app",
3
- "version": "0.0.141",
3
+ "version": "0.0.143",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -110,7 +110,7 @@ class GraphClient {
110
110
  },
111
111
  },
112
112
  }),
113
- link: from([
113
+ link: ApolloLink.from([
114
114
  links.errorLink,
115
115
  links.authLink,
116
116
  links.omitTypenameLink,
@@ -41,7 +41,6 @@ class VoApi extends VoBase {
41
41
  url = `${url}?masquerade=${masquerade?.id}`;
42
42
  }
43
43
  const user = await axios.get(url);
44
- console.log("VoApi.ts -> getUser() -> user:", user);
45
44
  return user;
46
45
  } catch (error) {
47
46
  throw error;