@carrot-protocol/boost-http-client 0.2.15-group-refactor1-dev-5488543 → 0.2.15-group-refactor1-dev-94d77e6

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/dist/index.js CHANGED
@@ -107,7 +107,6 @@ class Client {
107
107
  async getUser(groups, user, getClendAccountSummary) {
108
108
  const body = await handleApiCall(() => this.http.get(`/user?user=${user.toString()}&groups=${groups.map((g) => g.toString()).join(",")}&getClendAccountSummary=${getClendAccountSummary}`));
109
109
  const jsonRawResponse = JSON.parse(body);
110
- console.log(JSON.stringify(jsonRawResponse, null, 2));
111
110
  // parse balances
112
111
  const walletBalances = [];
113
112
  for (const b of jsonRawResponse.wallet.balances) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carrot-protocol/boost-http-client",
3
- "version": "0.2.15-group-refactor1-dev-5488543",
3
+ "version": "0.2.15-group-refactor1-dev-94d77e6",
4
4
  "description": "HTTP client for Carrot Boost",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -119,7 +119,6 @@ export class Client {
119
119
  );
120
120
 
121
121
  const jsonRawResponse: any = JSON.parse(body);
122
- console.log(JSON.stringify(jsonRawResponse, null, 2));
123
122
 
124
123
  // parse balances
125
124
  const walletBalances: UserBalance[] = [];