| 43 | } |
| 44 | |
| 45 | interface Segment { type: string; text?: string; url?: string; [k: string]: unknown } |
| 46 | |
| 47 | async function post(url: string, secret: string, payload: object, idempotency = true) { |
| 48 | const body = Buffer.from(JSON.stringify(payload)); |
nothing calls this directly
no outgoing calls
no test coverage detected