2022-03-30 15:37:51 +00:00
|
|
|
import { _PaymentModel as Payment } from "@calcom/prisma/zod";
|
|
|
|
|
2022-04-07 01:29:53 +00:00
|
|
|
// FIXME: Payment seems a delicate endpoint, do we need to remove anything here?
|
2022-03-30 15:37:51 +00:00
|
|
|
export const schemaPaymentBodyParams = Payment.omit({ id: true });
|
2022-04-07 01:29:53 +00:00
|
|
|
export const schemaPaymentPublic = Payment.omit({ externalId: true });
|