File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ class Client {
167
167
! Array . isArray ( args . at ( - 1 ) ) &&
168
168
args . pop ( ) ;
169
169
170
- return await this . transporter . request ( method , uri , body ) ;
170
+ return this . transporter . request ( method , uri , body ) ;
171
171
}
172
172
173
173
/**
@@ -234,8 +234,8 @@ class Client {
234
234
hasCursorPagination ( page )
235
235
? page . links . next
236
236
: hasOffsetPagination ( page )
237
- ? page . next_page
238
- : null ;
237
+ ? page . next_page
238
+ : null ;
239
239
const item = processResponseBody ( currentPage , this ) ;
240
240
241
241
bodyList . push ( item ) ;
@@ -245,12 +245,7 @@ class Client {
245
245
246
246
const fetchPagesRecursively = async ( pageUri ) => {
247
247
const isIncremental = pageUri . includes ( 'incremental' ) ;
248
- const responseData = await __request . call (
249
- this ,
250
- method ,
251
- pageUri ,
252
- ...args ,
253
- ) ;
248
+ const responseData = await __request . call ( this , method , pageUri , ...args ) ;
254
249
const nextPage = processPage ( responseData ) ;
255
250
if (
256
251
nextPage &&
You can’t perform that action at this time.
0 commit comments