payloadcms / payload

Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.
https://payloadcms.com
MIT License
25.74k stars 1.64k forks source link

Stripe Webhook Error #9314

Open mikecebul opened 4 hours ago

mikecebul commented 4 hours ago

Describe the Bug

The Stripe Webhooks quit working in my application. My build error is

src/app/api/webhooks/stripe/route.ts
Type error: File '/home/mike/Code/cvx-junior-golf/src/app/api/webhooks/stripe/route.ts' is not a module.

Link to the code that reproduces this issue

N/A

Reproduction Steps

export const checkoutSessionCompleted: StripeWebhookHandler<{ data: { object: Stripe.Checkout.Session } }> = async ({ event, payload }) => { console.log('checkoutSessionCompleted handler called')

const { id: sessionId, metadata, amount_total } = event.data.object const submissionId = metadata?.submissionId

if (!submissionId) { payload.logger.error('No submissionId found in checkout session metadata') return } try { await payload.update({ collection: 'form-submissions', id: submissionId, overrideAccess: true, data: { paymentStatus: 'paid', amount: amount_total ? $${(amount_total / 100).toFixed(2)} : '$0.00', }, })

payload.logger.info(
  `Successfully updated form submission ${submissionId} for checkout session ${sessionId}`,
)

} catch (error) { payload.logger.error(Error updating form submission: ${error}) } }

- Add the env vars
- Test  the webhook

### Which area(s) are affected? (Select all that apply)

plugin: stripe

### Environment Info

```text
Binaries:
  Node: 20.14.0
  npm: 10.7.0
  Yarn: 1.22.22
  pnpm: 9.7.0
Relevant Packages:
  payload: 3.0.0-beta.134
  next: 15.0.0
  @payloadcms/db-mongodb: 3.0.0-beta.134
  @payloadcms/email-resend: 3.0.0-beta.134
  @payloadcms/graphql: 3.0.0-beta.134
  @payloadcms/live-preview: 3.0.0-beta.134
  @payloadcms/live-preview-react: 3.0.0-beta.134
  @payloadcms/next/utilities: 3.0.0-beta.134
  @payloadcms/plugin-cloud-storage: 3.0.0-beta.134
  @payloadcms/plugin-form-builder: 3.0.0-beta.134
  @payloadcms/plugin-redirects: 3.0.0-beta.134
  @payloadcms/plugin-seo: 3.0.0-beta.134
  @payloadcms/plugin-stripe: 3.0.0-beta.134
  @payloadcms/richtext-lexical: 3.0.0-beta.134
  @payloadcms/storage-s3: 3.0.0-beta.134
  @payloadcms/translations: 3.0.0-beta.134
  @payloadcms/ui/shared: 3.0.0-beta.134
  react: 19.0.0-rc-65a56d0e-20241020
  react-dom: 19.0.0-rc-65a56d0e-20241020
Operating System:
  Platform: linux
  Arch: x64
  Version: #1 SMP Tue Nov 5 00:21:55 UTC 2024
  Available memory (MB): 15847
  Available CPU cores: 16
github-actions[bot] commented 4 hours ago

Please add a reproduction in order for us to be able to investigate.

Depending on the quality of reproduction steps, this issue may be closed if no reproduction is provided.

Why was this issue marked with the invalid-reproduction label?

To be able to investigate, we need access to a reproduction to identify what triggered the issue. We prefer a link to a public GitHub repository created with create-payload-app@beta -t blank or a forked/branched version of this repository with tests added (more info in the reproduction-guide).

To make sure the issue is resolved as quickly as possible, please make sure that the reproduction is as minimal as possible. This means that you should remove unnecessary code, files, and dependencies that do not contribute to the issue. Ensure your reproduction does not depend on secrets, 3rd party registries, private dependencies, or any other data that cannot be made public. Avoid a reproduction including a whole monorepo (unless relevant to the issue). The easier it is to reproduce the issue, the quicker we can help.

Please test your reproduction against the latest version of Payload to make sure your issue has not already been fixed.

I added a link, why was it still marked?

Ensure the link is pointing to a codebase that is accessible (e.g. not a private repository). "example.com", "n/a", "will add later", etc. are not acceptable links -- we need to see a public codebase. See the above section for accepted links.

Useful Resources