Skip to content

Commit 15dea74

Browse files
committed
Unused response variable issue resolved
1 parent cf4af93 commit 15dea74

14 files changed

+29
-33
lines changed

src/api/calendar-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ export class CalendarApi {
488488
body: ObjectSerializer.serialize(request, "CalendarSaveRequest"),
489489
};
490490

491-
const response = await invokeApiMethod(requestOptions, this.configuration);
491+
await invokeApiMethod(requestOptions, this.configuration);
492492
return Promise.resolve(null);
493493
}
494494

src/api/client-account-api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export class ClientAccountApi {
168168
body: ObjectSerializer.serialize(request, "ClientAccountSaveRequest"),
169169
};
170170

171-
const response = await invokeApiMethod(requestOptions, this.configuration);
171+
await invokeApiMethod(requestOptions, this.configuration);
172172
return Promise.resolve(null);
173173
}
174174

@@ -193,7 +193,7 @@ export class ClientAccountApi {
193193
body: ObjectSerializer.serialize(request, "ClientAccountSaveMultiRequest"),
194194
};
195195

196-
const response = await invokeApiMethod(requestOptions, this.configuration);
196+
await invokeApiMethod(requestOptions, this.configuration);
197197
return Promise.resolve(null);
198198
}
199199

src/api/client-folder-api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class ClientFolderApi {
6464
body: ObjectSerializer.serialize(request, "ClientFolderCreateRequest"),
6565
};
6666

67-
const response = await invokeApiMethod(requestOptions, this.configuration);
67+
await invokeApiMethod(requestOptions, this.configuration);
6868
return Promise.resolve(null);
6969
}
7070

@@ -89,7 +89,7 @@ export class ClientFolderApi {
8989
body: ObjectSerializer.serialize(request, "ClientFolderDeleteRequest"),
9090
};
9191

92-
const response = await invokeApiMethod(requestOptions, this.configuration);
92+
await invokeApiMethod(requestOptions, this.configuration);
9393
return Promise.resolve(null);
9494
}
9595

src/api/client-message-api.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export class ClientMessageApi {
169169
body: ObjectSerializer.serialize(request, "ClientMessageDeleteRequest"),
170170
};
171171

172-
const response = await invokeApiMethod(requestOptions, this.configuration);
172+
await invokeApiMethod(requestOptions, this.configuration);
173173
return Promise.resolve(null);
174174
}
175175

@@ -414,7 +414,7 @@ export class ClientMessageApi {
414414
body: ObjectSerializer.serialize(request, "ClientMessageMoveRequest"),
415415
};
416416

417-
const response = await invokeApiMethod(requestOptions, this.configuration);
417+
await invokeApiMethod(requestOptions, this.configuration);
418418
return Promise.resolve(null);
419419
}
420420

@@ -439,7 +439,7 @@ export class ClientMessageApi {
439439
body: ObjectSerializer.serialize(request, "ClientMessageSendRequest"),
440440
};
441441

442-
const response = await invokeApiMethod(requestOptions, this.configuration);
442+
await invokeApiMethod(requestOptions, this.configuration);
443443
return Promise.resolve(null);
444444
}
445445

@@ -509,7 +509,7 @@ export class ClientMessageApi {
509509
}
510510
}
511511

512-
const response = await invokeApiMethod(requestOptions, this.configuration);
512+
await invokeApiMethod(requestOptions, this.configuration);
513513
return Promise.resolve(null);
514514
}
515515

@@ -534,7 +534,7 @@ export class ClientMessageApi {
534534
body: ObjectSerializer.serialize(request, "ClientMessageSetIsReadRequest"),
535535
};
536536

537-
const response = await invokeApiMethod(requestOptions, this.configuration);
537+
await invokeApiMethod(requestOptions, this.configuration);
538538
return Promise.resolve(null);
539539
}
540540

src/api/client-thread-api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class ClientThreadApi {
6464
body: ObjectSerializer.serialize(request, "ClientThreadDeleteRequest"),
6565
};
6666

67-
const response = await invokeApiMethod(requestOptions, this.configuration);
67+
await invokeApiMethod(requestOptions, this.configuration);
6868
return Promise.resolve(null);
6969
}
7070

@@ -223,7 +223,7 @@ export class ClientThreadApi {
223223
body: ObjectSerializer.serialize(request, "ClientThreadMoveRequest"),
224224
};
225225

226-
const response = await invokeApiMethod(requestOptions, this.configuration);
226+
await invokeApiMethod(requestOptions, this.configuration);
227227
return Promise.resolve(null);
228228
}
229229

@@ -248,7 +248,7 @@ export class ClientThreadApi {
248248
body: ObjectSerializer.serialize(request, "ClientThreadSetIsReadRequest"),
249249
};
250250

251-
const response = await invokeApiMethod(requestOptions, this.configuration);
251+
await invokeApiMethod(requestOptions, this.configuration);
252252
return Promise.resolve(null);
253253
}
254254

src/api/contact-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ export class ContactApi {
437437
body: ObjectSerializer.serialize(request, "ContactSaveRequest"),
438438
};
439439

440-
const response = await invokeApiMethod(requestOptions, this.configuration);
440+
await invokeApiMethod(requestOptions, this.configuration);
441441
return Promise.resolve(null);
442442
}
443443

src/api/email-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ export class EmailApi {
419419
body: ObjectSerializer.serialize(request, "EmailSaveRequest"),
420420
};
421421

422-
const response = await invokeApiMethod(requestOptions, this.configuration);
422+
await invokeApiMethod(requestOptions, this.configuration);
423423
return Promise.resolve(null);
424424
}
425425

src/api/file-api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class FileApi {
100100
}
101101
}
102102

103-
const response = await invokeApiMethod(requestOptions, this.configuration);
103+
await invokeApiMethod(requestOptions, this.configuration);
104104
return Promise.resolve(null);
105105
}
106106

@@ -148,7 +148,7 @@ export class FileApi {
148148
}
149149
}
150150

151-
const response = await invokeApiMethod(requestOptions, this.configuration);
151+
await invokeApiMethod(requestOptions, this.configuration);
152152
return Promise.resolve(null);
153153
}
154154

@@ -259,7 +259,7 @@ export class FileApi {
259259
}
260260
}
261261

262-
const response = await invokeApiMethod(requestOptions, this.configuration);
262+
await invokeApiMethod(requestOptions, this.configuration);
263263
return Promise.resolve(null);
264264
}
265265

src/api/folder-api.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export class FolderApi {
9696
}
9797
}
9898

99-
const response = await invokeApiMethod(requestOptions, this.configuration);
99+
await invokeApiMethod(requestOptions, this.configuration);
100100
return Promise.resolve(null);
101101
}
102102

@@ -140,7 +140,7 @@ export class FolderApi {
140140
}
141141
}
142142

143-
const response = await invokeApiMethod(requestOptions, this.configuration);
143+
await invokeApiMethod(requestOptions, this.configuration);
144144
return Promise.resolve(null);
145145
}
146146

@@ -188,7 +188,7 @@ export class FolderApi {
188188
}
189189
}
190190

191-
const response = await invokeApiMethod(requestOptions, this.configuration);
191+
await invokeApiMethod(requestOptions, this.configuration);
192192
return Promise.resolve(null);
193193
}
194194

@@ -290,7 +290,7 @@ export class FolderApi {
290290
}
291291
}
292292

293-
const response = await invokeApiMethod(requestOptions, this.configuration);
293+
await invokeApiMethod(requestOptions, this.configuration);
294294
return Promise.resolve(null);
295295
}
296296

src/api/mapi-calendar-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export class MapiCalendarApi {
219219
body: ObjectSerializer.serialize(request, "MapiCalendarSaveRequest"),
220220
};
221221

222-
const response = await invokeApiMethod(requestOptions, this.configuration);
222+
await invokeApiMethod(requestOptions, this.configuration);
223223
return Promise.resolve(null);
224224
}
225225

0 commit comments

Comments
 (0)