d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { resendHandler } from '@/lib/webhooks/providers/resend'
|
|
|
|
describe('Resend webhook provider', () => {
|
|
it('formatInput exposes documented email metadata and distinct data.created_at', async () => {
|
|
const { input } = await resendHandler.formatInput!({
|
|
webhook: {},
|
|
workflow: { id: 'wf', userId: 'u' },
|
|
body: {
|
|
type: 'email.bounced',
|
|
created_at: '2024-11-22T23:41:12.126Z',
|
|
data: {
|
|
broadcast_id: '8b146471-e88e-4322-86af-016cd36fd216',
|
|
created_at: '2024-11-22T23:41:11.894719+00:00',
|
|
email_id: '56761188-7520-42d8-8898-ff6fc54ce618',
|
|
from: 'Acme <onboarding@resend.dev>',
|
|
to: ['delivered@resend.dev'],
|
|
subject: 'Sending this example',
|
|
template_id: '43f68331-0622-4e15-8202-246a0388854b',
|
|
tags: { category: 'confirm_email' },
|
|
bounce: {
|
|
message: 'Hard bounce',
|
|
subType: 'Suppressed',
|
|
type: 'Permanent',
|
|
},
|
|
},
|
|
},
|
|
headers: {},
|
|
requestId: 'test',
|
|
})
|
|
|
|
expect(input).toMatchObject({
|
|
type: 'email.bounced',
|
|
created_at: '2024-11-22T23:41:12.126Z',
|
|
data_created_at: '2024-11-22T23:41:11.894719+00:00',
|
|
email_id: '56761188-7520-42d8-8898-ff6fc54ce618',
|
|
broadcast_id: '8b146471-e88e-4322-86af-016cd36fd216',
|
|
template_id: '43f68331-0622-4e15-8202-246a0388854b',
|
|
tags: { category: 'confirm_email' },
|
|
bounceType: 'Permanent',
|
|
bounceSubType: 'Suppressed',
|
|
bounceMessage: 'Hard bounce',
|
|
})
|
|
})
|
|
})
|