Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"analyze": "ANALYZE=true next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build",
"experimental-analyze": "turbo run copy-app-store-static && next experimental-analyze --serve",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
"dev": "turbo run copy-app-store-static && next dev --turbopack",
"dev:scan": "yarn dev & npx --yes react-scan@latest localhost:3000",
Expand Down Expand Up @@ -109,7 +110,7 @@
"memory-cache": "^0.2.0",
"micro": "^10.0.1",
"mime-types": "^2.1.35",
"next": "15.5.4",
"next": "16.0.2-canary.23",
"next-auth": "^4.22.1",
"next-axiom": "^0.17.0",
"next-collect": "^0.2.1",
Expand Down
8 changes: 7 additions & 1 deletion apps/web/pages/api/integrations/alby/webhook.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
export { default, config } from "@calcom/app-store/alby/api/webhook";
export { default } from "@calcom/app-store/alby/api/webhook";

export const config = {
api: {
bodyParser: false,
},
};
4 changes: 3 additions & 1 deletion apps/web/pages/api/integrations/btcpayserver/webhook.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
export { default, config } from "@calcom/app-store/btcpayserver/api/webhook";
export { default } from "@calcom/app-store/btcpayserver/api/webhook";

export const config = { api: { bodyParser: false } };
8 changes: 7 additions & 1 deletion apps/web/pages/api/integrations/paypal/webhook.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
export { default, config } from "@calcom/app-store/paypal/api/webhook";
export { default } from "@calcom/app-store/paypal/api/webhook";

export const config = {
api: {
bodyParser: false,
},
};
8 changes: 7 additions & 1 deletion apps/web/pages/api/integrations/stripepayment/webhook.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
export { default, config } from "@calcom/features/ee/payments/api/webhook";
export { default } from "@calcom/features/ee/payments/api/webhook";

export const config = {
api: {
bodyParser: false,
},
};
Loading
Loading