File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11import Client from './client' ;
22import {
3- Paginated ,
43 StringifiedTimestamp ,
54 GenericSearchFilters ,
65 Order ,
@@ -525,7 +524,9 @@ interface ListConversationData {
525524 perPage ?: number ;
526525}
527526
528- type ListConversationResponse = Paginated < ConversationObjectWithoutParts > ;
527+ type ListConversationResponse = PaginatedBase & {
528+ conversations : ConversationObjectWithoutParts [ ] ;
529+ } ;
529530//
530531export enum RedactConversationPartType {
531532 CONVERSATION_PART = 'conversation_part' ,
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export default class Scroll<EntityType> {
1010 this . scrollParam = scrollParam ;
1111 }
1212
13+ // eslint-disable-next-line require-await
1314 async each ( params : EachData ) : Promise < EntityType [ ] > {
1415 this . scrollParam = params . scrollParam ?? undefined ;
1516
You can’t perform that action at this time.
0 commit comments