Skip to content

Commit

Permalink
Remove unnecessary logs
Browse files Browse the repository at this point in the history
Remove unnecessary logs
  • Loading branch information
Shreyaschorge authored Nov 9, 2023
2 parents 6f3956b + 4b6722d commit 2006c4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@neynar/nodejs-sdk",
"version": "0.10.12",
"version": "0.10.13",
"description": "SDK to interact with Neynar APIs (https://docs.neynar.com/)",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/neynar-api/neynar-v1-api/neynar-api-v1-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class NeynarV1APIClient {
basePath: basePath ? `${basePath}/v1` : BASE_PATH,
apiKey: apiKey,
});
console.log("basepath", basePath, config);

this.apis = {
user: new UserApi(config, undefined, axiosInstance),
cast: new CastApi(config, undefined, axiosInstance),
Expand Down
2 changes: 1 addition & 1 deletion src/neynar-api/neynar-v2-api/neynar-api-v2-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class NeynarV2APIClient {
basePath: basePath ? `${basePath}/v2` : BASE_PATH,
apiKey: apiKey,
});
console.log("basepath", basePath, config);

this.apis = {
signer: new SignerApi(config, undefined, axiosInstance),
user: new UserApi(config, undefined, axiosInstance),
Expand Down

0 comments on commit 2006c4d

Please sign in to comment.