Removed per-user patient filtering so all staff accounts see the same patient pool. Previously each user only saw patients they created. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
|
|
import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers';
|
|
|
|
import Decimal from "decimal.js";
|
|
const makeSchema = () => z.object({
|
|
id: z.number().int().optional(),
|
|
npiProviderId: z.number().int(),
|
|
totalCollection: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'totalCollection' must be a Decimal",
|
|
}),
|
|
commissionAmount: z.union([
|
|
z.number(),
|
|
z.string(),
|
|
z.instanceof(Decimal),
|
|
z.instanceof(Decimal),
|
|
DecimalJSLikeSchema,
|
|
]).refine((v) => isValidDecimalInput(v), {
|
|
message: "Field 'commissionAmount' must be a Decimal",
|
|
}),
|
|
notes: z.string().optional().nullable(),
|
|
createdAt: z.coerce.date().optional()
|
|
}).strict();
|
|
export const CommissionBatchUncheckedCreateWithoutItemsInputObjectSchema: z.ZodType<Prisma.CommissionBatchUncheckedCreateWithoutItemsInput> = makeSchema() as unknown as z.ZodType<Prisma.CommissionBatchUncheckedCreateWithoutItemsInput>;
|
|
export const CommissionBatchUncheckedCreateWithoutItemsInputObjectZodSchema = makeSchema();
|