fix: repair ci audit and type drift

This commit is contained in:
Peter Steinberger
2026-03-13 20:59:47 +00:00
parent cfc9a21957
commit b84c7037de
21 changed files with 566 additions and 166 deletions

View File

@@ -36,7 +36,8 @@ describe("TwilioProvider", () => {
const result = provider.parseWebhookEvent(ctx);
expectStreamingTwiml(result.providerResponseBody);
expect(result.providerResponseBody).toBeDefined();
expectStreamingTwiml(result.providerResponseBody ?? "");
});
it("returns empty TwiML for status callbacks", () => {
@@ -59,7 +60,8 @@ describe("TwilioProvider", () => {
const result = provider.parseWebhookEvent(ctx);
expectStreamingTwiml(result.providerResponseBody);
expect(result.providerResponseBody).toBeDefined();
expectStreamingTwiml(result.providerResponseBody ?? "");
});
it("returns queue TwiML for second inbound call when first call is active", () => {