(payload: {
channelId: string;
accountId: string;
channelName: string;
})
| 158 | } |
| 159 | |
| 160 | export async function createTypesenseChannelDeletion(payload: { |
| 161 | channelId: string; |
| 162 | accountId: string; |
| 163 | channelName: string; |
| 164 | }) { |
| 165 | const worker = await WorkerSingleton.getInstance(); |
| 166 | return await worker.addJob('typesenseOnChannelDeletion', payload, { |
| 167 | maxAttempts: 1, |
| 168 | }); |
| 169 | } |
| 170 | |
| 171 | export async function createTypesenseCommunityTypeUpdate(payload: { |
| 172 | accountId: string; |
no test coverage detected