(incrementId: number)
| 508 | } |
| 509 | |
| 510 | export const findThreadByIncrementId = async (incrementId: number) => { |
| 511 | return findThreadWithMessages({ incrementId }); |
| 512 | }; |
| 513 | |
| 514 | export const findThreadById = async (id: string) => { |
| 515 | return findThreadWithMessages({ id }); |
no test coverage detected