(threadId: string)
| 1362 | ); |
| 1363 | }, |
| 1364 | archiveThread(threadId: string): Promise<void> { |
| 1365 | return trackMutation( |
| 1366 | threadAdapterEvents.archiveRequested({ |
| 1367 | requestId: createThreadRequestId(), |
| 1368 | threadId, |
| 1369 | }), |
| 1370 | ); |
| 1371 | }, |
| 1372 | unarchiveThread(threadId: string): Promise<void> { |
| 1373 | return trackMutation( |
| 1374 | threadAdapterEvents.unarchiveRequested({ |
no test coverage detected
searching dependent graphs…