(message: string)
| 347 | } |
| 348 | |
| 349 | function isAlreadyAbsentWebhookMessage(message: string): boolean { |
| 350 | const normalized = message.toLowerCase() |
| 351 | return ( |
| 352 | normalized.includes('not found') || |
| 353 | normalized.includes('not_found') || |
| 354 | normalized.includes('does not exist') || |
| 355 | normalized.includes('already deleted') |
| 356 | ) |
| 357 | } |
no outgoing calls
no test coverage detected