* getEnabledAppsFromCredentials * wip * wip * mv more * fix: update test mocking for PrismockClient in processPaymentRefund.test.ts - Replace prismaMock with prismock for proper PrismockClient usage - Update mock data structure to include required fields (id, userId, teamId, etc.) - Create app and credential records separately to handle PrismockClient limitations - Replace 'as any' type casting with vi.mocked() for proper type safety - Adjust test expectations to match PrismockClient's actual return structure - Add proper cleanup in beforeEach hook for both credential and app records Fixes failing unit tests after migration from packages/lib to packages/features/bookings/lib/payment Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * publish platform libraries * fix import * bump version * fix apiv2 * publish platform-libraries --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
17 lines
548 B
TypeScript
17 lines
548 B
TypeScript
import { sendOrganizerPaymentRefundFailedEmail } from "@calcom/emails";
|
|
import type { CalendarEvent } from "@calcom/types/Calendar";
|
|
|
|
const handleRefundError = async (opts: { event: CalendarEvent; reason: string; paymentId: string }) => {
|
|
console.error(`refund failed: ${opts.reason} for booking '${opts.event.uid}'`);
|
|
try {
|
|
await sendOrganizerPaymentRefundFailedEmail({
|
|
...opts.event,
|
|
paymentInfo: { reason: opts.reason, id: opts.paymentId },
|
|
});
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
};
|
|
|
|
export { handleRefundError };
|