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>
34 lines
1.5 KiB
TypeScript
34 lines
1.5 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema as CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema } from './CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInput.schema'
|
|
|
|
import { DecimalJSLikeSchema, isValidDecimalInput } from '../../helpers/decimal-helpers';
|
|
|
|
import Decimal from "decimal.js";
|
|
const makeSchema = () => z.object({
|
|
id: z.number().int().optional(),
|
|
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(),
|
|
items: z.lazy(() => CommissionBatchItemUncheckedCreateNestedManyWithoutCommissionBatchInputObjectSchema).optional()
|
|
}).strict();
|
|
export const CommissionBatchUncheckedCreateWithoutNpiProviderInputObjectSchema: z.ZodType<Prisma.CommissionBatchUncheckedCreateWithoutNpiProviderInput> = makeSchema() as unknown as z.ZodType<Prisma.CommissionBatchUncheckedCreateWithoutNpiProviderInput>;
|
|
export const CommissionBatchUncheckedCreateWithoutNpiProviderInputObjectZodSchema = makeSchema();
|