Skip to content

Commit 3475866

Browse files
committed
remove console logs
1 parent 41ecff1 commit 3475866

File tree

5 files changed

+0
-9
lines changed

5 files changed

+0
-9
lines changed

dist/Client.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,6 @@ export class Client {
205205
headers['Authorization'] = `Bearer ${this.bearerToken}`;
206206
}
207207
try {
208-
console.log('body', body);
209-
console.log(JSON.stringify(body, null, 2));
210208
const fetchResponse = await fetch(url, {
211209
method: 'POST',
212210
headers: headers,

dist/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ class BaseModel {
149149
}
150150
toJSON() {
151151
const obj = {};
152-
console.log(this);
153152
if (this.id)
154153
obj.id = this.id;
155154
if (this.type)
@@ -2116,8 +2115,6 @@ class Client {
21162115
headers["Authorization"] = `Bearer ${this.bearerToken}`;
21172116
}
21182117
try {
2119-
console.log("body", body);
2120-
console.log(JSON.stringify(body, null, 2));
21212118
const fetchResponse = await fetch(url, {
21222119
method: "POST",
21232120
headers,

dist/models/BaseModel.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export class BaseModel {
2525
}
2626
toJSON() {
2727
const obj = {};
28-
console.log(this);
2928
if (this.id)
3029
obj.id = this.id;
3130
if (this.type)

src/Client.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,6 @@ export class Client {
260260
}
261261

262262
try {
263-
console.log('body', body);
264-
console.log(JSON.stringify(body, null, 2));
265263
const fetchResponse = await fetch(url, {
266264
method: 'POST',
267265
headers: headers,

src/models/BaseModel.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export abstract class BaseModel implements Model {
3636

3737
toJSON() {
3838
const obj: Record<string, any> = {};
39-
console.log(this)
4039

4140
if (this.id) obj.id = this.id;
4241
if (this.type) obj.type = this.type;

0 commit comments

Comments
 (0)