fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -84,7 +84,7 @@ router.put("/set-npi-provider/:appointmentId", async (req: Request, res: Respons
|
||||
*/
|
||||
router.post("/save-for-appointment", async (req: Request, res: Response) => {
|
||||
try {
|
||||
const { appointmentId, patientId, npiProviderId, procedures } = req.body;
|
||||
const { appointmentId, patientId, npiProviderId, procedures, attachments } = req.body;
|
||||
|
||||
if (!appointmentId || isNaN(Number(appointmentId))) {
|
||||
return res.status(400).json({ message: "Invalid appointmentId" });
|
||||
@@ -100,6 +100,14 @@ router.post("/save-for-appointment", async (req: Request, res: Response) => {
|
||||
(p) => String(p.procedureCode ?? "").trim() !== ""
|
||||
);
|
||||
|
||||
const validAttachments = Array.isArray(attachments)
|
||||
? (attachments as any[]).filter((a) => a?.filename).map((a) => ({
|
||||
filename: String(a.filename),
|
||||
mimeType: a.mimeType ?? null,
|
||||
filePath: a.filePath ?? null,
|
||||
}))
|
||||
: undefined;
|
||||
|
||||
const count = await storage.saveForAppointment({
|
||||
appointmentId: Number(appointmentId),
|
||||
patientId: Number(patientId),
|
||||
@@ -110,6 +118,7 @@ router.post("/save-for-appointment", async (req: Request, res: Response) => {
|
||||
toothNumber: p.toothNumber || null,
|
||||
toothSurface: p.toothSurface || null,
|
||||
})),
|
||||
attachments: validAttachments,
|
||||
});
|
||||
|
||||
return res.json({ success: true, count });
|
||||
|
||||
@@ -425,18 +425,25 @@ router.post(
|
||||
// Fetch active claim for this appointment (includes service lines from draft saves)
|
||||
const activeClaim = await storage.getActiveClaimByAppointmentId(Number(apt.id));
|
||||
|
||||
// "Already claimed" = has a real claim number OR status is REVIEW/APPROVED
|
||||
// A PENDING claim with no claimNumber is just a draft save — not yet submitted
|
||||
const alreadyClaimed =
|
||||
// Skip if claim was voided via the "Void" button in Select Procedures.
|
||||
if (activeClaim?.status === "VOID") {
|
||||
resultItem.skipped = true;
|
||||
resultItem.error = "Voided";
|
||||
results.push(resultItem);
|
||||
continue;
|
||||
}
|
||||
|
||||
// Skip appointments whose claim was already submitted (has claimNumber or REVIEW/APPROVED).
|
||||
// The "Update & Resubmit" button resets the claim to PENDING so it is picked up again.
|
||||
const alreadySubmitted =
|
||||
activeClaim &&
|
||||
((activeClaim.claimNumber != null &&
|
||||
String(activeClaim.claimNumber).trim() !== "") ||
|
||||
((activeClaim.claimNumber != null && String(activeClaim.claimNumber).trim() !== "") ||
|
||||
activeClaim.status === "REVIEW" ||
|
||||
activeClaim.status === "APPROVED");
|
||||
|
||||
if (alreadyClaimed) {
|
||||
if (alreadySubmitted) {
|
||||
resultItem.skipped = true;
|
||||
resultItem.error = "Already claimed";
|
||||
resultItem.error = "Already submitted";
|
||||
results.push(resultItem);
|
||||
continue;
|
||||
}
|
||||
@@ -544,7 +551,6 @@ router.post(
|
||||
let claimId: number;
|
||||
if (activeClaim?.id) {
|
||||
claimId = activeClaim.id;
|
||||
// Update claim's npiProviderId if the user chose a different provider via Select Procedures
|
||||
if (procNpiProviderId && activeClaim.npiProviderId !== procNpiProviderId) {
|
||||
await storage.updateClaim(claimId, { npiProviderId: procNpiProviderId });
|
||||
}
|
||||
@@ -634,12 +640,31 @@ router.post(
|
||||
};
|
||||
}
|
||||
|
||||
// Collect attachments: appointment-level files + claim-level files
|
||||
const apptFiles = await storage.getAppointmentFiles(Number(apt.id));
|
||||
const claimFiles = (activeClaim as any)?.claimFiles ?? [];
|
||||
const allFileMeta = [
|
||||
...apptFiles,
|
||||
...claimFiles,
|
||||
] as Array<{ filename: string; mimeType?: string | null; filePath?: string | null }>;
|
||||
|
||||
const filesForQueue = allFileMeta.flatMap((f) => {
|
||||
if (!f.filePath) return [];
|
||||
const absPath = path.join(process.cwd(), f.filePath);
|
||||
if (!fs.existsSync(absPath)) {
|
||||
console.warn(`[batch-column] attachment not found on disk: ${absPath}`);
|
||||
return [];
|
||||
}
|
||||
const bufferBase64 = fs.readFileSync(absPath).toString("base64");
|
||||
return [{ originalname: f.filename, bufferBase64, mimetype: f.mimeType ?? "application/octet-stream" }];
|
||||
});
|
||||
|
||||
// Enqueue selenium claim-submit job
|
||||
const job = await seleniumQueue.add("claim-submit", {
|
||||
jobType: "claim-submit",
|
||||
userId: req.user.id,
|
||||
enrichedPayload,
|
||||
files: [],
|
||||
files: filesForQueue,
|
||||
claimId,
|
||||
});
|
||||
|
||||
@@ -991,4 +1016,72 @@ router.delete("/:id", async (req: Request, res: Response): Promise<any> => {
|
||||
}
|
||||
});
|
||||
|
||||
// POST /api/claims/void-for-appointment
|
||||
// Marks the claim for an appointment as VOID so batch-column skips it permanently.
|
||||
// If no claim exists yet, creates a minimal placeholder VOID claim.
|
||||
router.post("/void-for-appointment", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
if (!req.user?.id) return res.status(401).json({ error: "Unauthorized" });
|
||||
const { appointmentId } = req.body;
|
||||
if (!appointmentId || isNaN(Number(appointmentId))) {
|
||||
return res.status(400).json({ error: "Invalid appointmentId" });
|
||||
}
|
||||
|
||||
const existing = await storage.getActiveClaimByAppointmentId(Number(appointmentId));
|
||||
if (existing) {
|
||||
await storage.updateClaim(Number(existing.id), { status: "VOID" } as any);
|
||||
return res.json({ voided: true, claimId: existing.id });
|
||||
}
|
||||
|
||||
// No claim yet — look up appointment + patient to create a minimal VOID placeholder
|
||||
const apt = await storage.getAppointment(Number(appointmentId));
|
||||
if (!apt) return res.status(404).json({ error: "Appointment not found" });
|
||||
const patient = apt.patientId ? await storage.getPatient(apt.patientId) : null;
|
||||
if (!patient) return res.status(404).json({ error: "Patient not found" });
|
||||
|
||||
const newClaim = await storage.createClaim({
|
||||
patientId: Number(patient.id),
|
||||
appointmentId: Number(appointmentId),
|
||||
userId: req.user.id,
|
||||
staffId: Number(apt.staffId),
|
||||
patientName: `${patient.firstName ?? ""} ${patient.lastName ?? ""}`.trim(),
|
||||
memberId: String(patient.insuranceId ?? ""),
|
||||
dateOfBirth: patient.dateOfBirth ? new Date(patient.dateOfBirth) : new Date(),
|
||||
serviceDate: apt.date instanceof Date ? apt.date : new Date(apt.date as any),
|
||||
insuranceProvider: "MassHealth",
|
||||
remarks: "",
|
||||
missingTeethStatus: "No_missing",
|
||||
missingTeeth: {},
|
||||
status: "VOID",
|
||||
} as any);
|
||||
return res.json({ voided: true, claimId: newClaim.id });
|
||||
} catch (err: any) {
|
||||
console.error("void-for-appointment error", err);
|
||||
return res.status(500).json({ error: err.message ?? "Server error" });
|
||||
}
|
||||
});
|
||||
|
||||
// POST /api/claims/reset-for-resubmit
|
||||
// Resets the active claim for an appointment back to PENDING with no claimNumber,
|
||||
// so the batch-column will pick it up again on the next run.
|
||||
router.post("/reset-for-resubmit", async (req: Request, res: Response): Promise<any> => {
|
||||
try {
|
||||
const { appointmentId } = req.body;
|
||||
if (!appointmentId || isNaN(Number(appointmentId))) {
|
||||
return res.status(400).json({ error: "Invalid appointmentId" });
|
||||
}
|
||||
|
||||
const claim = await storage.getActiveClaimByAppointmentId(Number(appointmentId));
|
||||
if (!claim) {
|
||||
return res.json({ reset: false, message: "No existing claim found — will be created fresh on next submit" });
|
||||
}
|
||||
|
||||
await storage.updateClaim(Number(claim.id), { status: "PENDING", claimNumber: null } as any);
|
||||
return res.json({ reset: true, claimId: claim.id });
|
||||
} catch (err: any) {
|
||||
console.error("reset-for-resubmit error", err);
|
||||
return res.status(500).json({ error: err.message ?? "Server error" });
|
||||
}
|
||||
});
|
||||
|
||||
export default router;
|
||||
|
||||
@@ -7,6 +7,12 @@ import {
|
||||
} from "@repo/db/types";
|
||||
import { prisma as db } from "@repo/db/client";
|
||||
|
||||
export interface AppointmentFileMeta {
|
||||
filename: string;
|
||||
mimeType?: string | null;
|
||||
filePath?: string | null;
|
||||
}
|
||||
|
||||
export interface IAppointmentProceduresStorage {
|
||||
getByAppointmentId(appointmentId: number): Promise<AppointmentProcedure[]>;
|
||||
getPrefillDataByAppointmentId(appointmentId: number): Promise<{
|
||||
@@ -14,6 +20,7 @@ export interface IAppointmentProceduresStorage {
|
||||
patient: Patient;
|
||||
procedures: AppointmentProcedure[];
|
||||
npiProviderId: number | null;
|
||||
appointmentFiles: AppointmentFileMeta[];
|
||||
} | null>;
|
||||
saveForAppointment(params: {
|
||||
appointmentId: number;
|
||||
@@ -25,6 +32,7 @@ export interface IAppointmentProceduresStorage {
|
||||
toothNumber?: string | null;
|
||||
toothSurface?: string | null;
|
||||
}>;
|
||||
attachments?: AppointmentFileMeta[];
|
||||
}): Promise<number>;
|
||||
|
||||
createProcedure(
|
||||
@@ -37,6 +45,7 @@ export interface IAppointmentProceduresStorage {
|
||||
): Promise<AppointmentProcedure>;
|
||||
deleteProcedure(id: number): Promise<void>;
|
||||
clearByAppointmentId(appointmentId: number): Promise<void>;
|
||||
getAppointmentFiles(appointmentId: number): Promise<AppointmentFileMeta[]>;
|
||||
getAppointmentIdsWithProcedures(ids: number[]): Promise<Set<number>>;
|
||||
}
|
||||
|
||||
@@ -58,6 +67,9 @@ export const appointmentProceduresStorage: IAppointmentProceduresStorage = {
|
||||
procedures: {
|
||||
orderBy: { createdAt: "asc" },
|
||||
},
|
||||
files: {
|
||||
orderBy: { id: "asc" },
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
@@ -72,11 +84,28 @@ export const appointmentProceduresStorage: IAppointmentProceduresStorage = {
|
||||
patient: appointment.patient,
|
||||
procedures: appointment.procedures,
|
||||
npiProviderId,
|
||||
appointmentFiles: (appointment.files as any[]).map((f) => ({
|
||||
id: f.id,
|
||||
filename: f.filename,
|
||||
mimeType: f.mimeType,
|
||||
filePath: f.filePath,
|
||||
})),
|
||||
};
|
||||
},
|
||||
|
||||
async saveForAppointment({ appointmentId, patientId, npiProviderId, procedures }) {
|
||||
async saveForAppointment({ appointmentId, patientId, npiProviderId, procedures, attachments }) {
|
||||
await db.appointmentProcedure.deleteMany({ where: { appointmentId } });
|
||||
if (attachments?.length) {
|
||||
await db.appointmentFile.deleteMany({ where: { appointmentId } });
|
||||
await db.appointmentFile.createMany({
|
||||
data: attachments.map((a) => ({
|
||||
appointmentId,
|
||||
filename: a.filename,
|
||||
mimeType: a.mimeType ?? null,
|
||||
filePath: a.filePath ?? null,
|
||||
})),
|
||||
});
|
||||
}
|
||||
if (!procedures.length) return 0;
|
||||
const result = await db.appointmentProcedure.createMany({
|
||||
data: procedures.map((p) => ({
|
||||
@@ -139,6 +168,19 @@ export const appointmentProceduresStorage: IAppointmentProceduresStorage = {
|
||||
select: { appointmentId: true },
|
||||
distinct: ["appointmentId"],
|
||||
});
|
||||
return new Set(rows.map((r) => r.appointmentId));
|
||||
return new Set(rows.map((r: any) => r.appointmentId));
|
||||
},
|
||||
|
||||
async getAppointmentFiles(appointmentId: number): Promise<AppointmentFileMeta[]> {
|
||||
const rows = await db.appointmentFile.findMany({
|
||||
where: { appointmentId },
|
||||
orderBy: { id: "asc" },
|
||||
});
|
||||
return rows.map((f: any) => ({
|
||||
id: f.id,
|
||||
filename: f.filename,
|
||||
mimeType: f.mimeType,
|
||||
filePath: f.filePath,
|
||||
}));
|
||||
},
|
||||
};
|
||||
|
||||
@@ -60,7 +60,7 @@ export const claimsStorage: IStorage = {
|
||||
return db.claim.findFirst({
|
||||
where: {
|
||||
appointmentId,
|
||||
status: { notIn: ["CANCELLED", "VOID"] },
|
||||
status: { notIn: ["CANCELLED"] },
|
||||
},
|
||||
orderBy: { createdAt: "desc" },
|
||||
include: { serviceLines: true, claimFiles: true, staff: true },
|
||||
|
||||
@@ -402,6 +402,9 @@ export function ClaimForm({
|
||||
setForm((prev) => ({
|
||||
...prev,
|
||||
serviceLines: mappedLines,
|
||||
...(data.appointmentFiles?.length
|
||||
? { claimFiles: data.appointmentFiles }
|
||||
: {}),
|
||||
}));
|
||||
|
||||
// Restore NPI provider from saved procedures
|
||||
@@ -1094,6 +1097,10 @@ export function ClaimForm({
|
||||
: null;
|
||||
|
||||
try {
|
||||
const attachments = form.uploadedFiles?.length
|
||||
? await uploadAttachmentsToLocalFolder(form.uploadedFiles)
|
||||
: [];
|
||||
|
||||
const res = await apiRequest("POST", "/api/appointment-procedures/save-for-appointment", {
|
||||
appointmentId,
|
||||
patientId,
|
||||
@@ -1104,16 +1111,42 @@ export function ClaimForm({
|
||||
toothNumber: l.toothNumber || null,
|
||||
toothSurface: l.toothSurface || null,
|
||||
})),
|
||||
attachments,
|
||||
});
|
||||
const data = await res.json();
|
||||
if (!data.success) throw new Error("Failed to save procedures");
|
||||
toast({ title: "Procedures saved", description: `${data.count} procedure(s) saved.` });
|
||||
const attachMsg = attachments.length ? ` and ${attachments.length} attachment(s)` : "";
|
||||
toast({ title: "Procedures saved", description: `${data.count} procedure(s)${attachMsg} saved.` });
|
||||
onClose();
|
||||
} catch (err: any) {
|
||||
toast({ title: "Save failed", description: err?.message ?? "Failed to save procedures.", variant: "destructive" });
|
||||
}
|
||||
};
|
||||
|
||||
// Same as handleProceduresSave but also resets any existing submitted claim so
|
||||
// batch-column will treat this appointment as needing a new submission.
|
||||
const handleProceduresUpdate = async () => {
|
||||
if (!appointmentId) return;
|
||||
try {
|
||||
await apiRequest("POST", "/api/claims/reset-for-resubmit", { appointmentId });
|
||||
} catch {
|
||||
// Non-fatal: if reset fails we still save procedures
|
||||
}
|
||||
await handleProceduresSave();
|
||||
};
|
||||
|
||||
// Marks the claim for this appointment as VOID so batch-column will always skip it.
|
||||
const handleProceduresVoid = async () => {
|
||||
if (!appointmentId) return;
|
||||
try {
|
||||
await apiRequest("POST", "/api/claims/void-for-appointment", { appointmentId });
|
||||
toast({ title: "Claim voided", description: "This appointment will be skipped when claiming for the column." });
|
||||
onClose();
|
||||
} catch (err: any) {
|
||||
toast({ title: "Void failed", description: err?.message ?? "Failed to void claim.", variant: "destructive" });
|
||||
}
|
||||
};
|
||||
|
||||
// for direct combo button.
|
||||
const applyComboAndThenMH = async (
|
||||
comboId: keyof typeof PROCEDURE_COMBOS,
|
||||
@@ -1720,15 +1753,29 @@ export function ClaimForm({
|
||||
{proceduresOnly ? "Save Procedures" : "Insurance Carriers"}
|
||||
</h3>
|
||||
{proceduresOnly ? (
|
||||
/* ── Select Procedures mode: Save only ── */
|
||||
<div className="flex justify-center">
|
||||
/* ── Select Procedures mode ── */
|
||||
<div className="flex justify-center gap-3">
|
||||
<Button
|
||||
className="w-48"
|
||||
className="w-40"
|
||||
variant="default"
|
||||
onClick={handleProceduresSave}
|
||||
>
|
||||
Save Procedures
|
||||
</Button>
|
||||
<Button
|
||||
className="w-40"
|
||||
variant="secondary"
|
||||
onClick={handleProceduresUpdate}
|
||||
>
|
||||
Update & Resubmit
|
||||
</Button>
|
||||
<Button
|
||||
className="w-28"
|
||||
variant="destructive"
|
||||
onClick={handleProceduresVoid}
|
||||
>
|
||||
Void
|
||||
</Button>
|
||||
</div>
|
||||
) : (
|
||||
/* ── Insurance Claim mode: submit buttons, no Save ── */
|
||||
|
||||
@@ -8,8 +8,11 @@ import { io, Socket } from "socket.io-client";
|
||||
|
||||
// Connect directly to backend to avoid Vite's WS proxy failing on upgrade,
|
||||
// which causes an unhandled AggregateError from engine.io's Promise.any() probe.
|
||||
// Use the env var when set; otherwise derive the backend URL from the current
|
||||
// page's hostname so remote browsers (non-localhost) reach the server correctly.
|
||||
const SOCKET_URL =
|
||||
import.meta.env.VITE_API_BASE_URL_BACKEND || "http://localhost:5000";
|
||||
import.meta.env.VITE_API_BASE_URL_BACKEND ||
|
||||
`${window.location.protocol}//${window.location.hostname}:5000`;
|
||||
|
||||
export const socket: Socket = io(SOCKET_URL, {
|
||||
withCredentials: true,
|
||||
|
||||
@@ -470,9 +470,6 @@ export default function InsuranceStatusPage() {
|
||||
|
||||
{/* Insurance Eligibility Check Form */}
|
||||
<Card className="mb-6">
|
||||
<CardHeader>
|
||||
<CardTitle>Check Insurance Eligibility</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="grid grid-cols-4 md:grid-cols-4 gap-4 mb-4">
|
||||
<div className="space-y-2">
|
||||
|
||||
@@ -13,6 +13,7 @@ export default defineConfig(({ mode }) => {
|
||||
fs: {
|
||||
allow: [".."],
|
||||
},
|
||||
allowedHosts: ["communitydentistsoflowell.mydentalofficemanagement.com"],
|
||||
proxy: {
|
||||
"/api": {
|
||||
target: env.VITE_API_BASE_URL_BACKEND || "http://localhost:5000",
|
||||
|
||||
1652
packages/db/.turbo/turbo-build.log
Normal file
1652
packages/db/.turbo/turbo-build.log
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -167,6 +167,14 @@ exports.Prisma.AppointmentScalarFieldEnum = {
|
||||
eligibilityStatus: 'eligibilityStatus'
|
||||
};
|
||||
|
||||
exports.Prisma.AppointmentFileScalarFieldEnum = {
|
||||
id: 'id',
|
||||
appointmentId: 'appointmentId',
|
||||
filename: 'filename',
|
||||
mimeType: 'mimeType',
|
||||
filePath: 'filePath'
|
||||
};
|
||||
|
||||
exports.Prisma.StaffScalarFieldEnum = {
|
||||
id: 'id',
|
||||
userId: 'userId',
|
||||
@@ -509,6 +517,7 @@ exports.Prisma.ModelName = {
|
||||
User: 'User',
|
||||
Patient: 'Patient',
|
||||
Appointment: 'Appointment',
|
||||
AppointmentFile: 'AppointmentFile',
|
||||
Staff: 'Staff',
|
||||
NpiProvider: 'NpiProvider',
|
||||
AppointmentProcedure: 'AppointmentProcedure',
|
||||
|
||||
1650
packages/db/generated/prisma/index.d.ts
vendored
1650
packages/db/generated/prisma/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "prisma-client-03b178e8b877a1598bedb0c5599737211871b1d3d6ccc3ed144f5a7924b0deb0",
|
||||
"name": "prisma-client-5a1566e0d7b9ed84a3b9f5a3202c04d4a144585980b9909674457730d45add6e",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"browser": "default.js",
|
||||
|
||||
@@ -101,11 +101,24 @@ model Appointment {
|
||||
staff Staff? @relation(fields: [staffId], references: [id])
|
||||
procedures AppointmentProcedure[]
|
||||
claims Claim[]
|
||||
files AppointmentFile[]
|
||||
|
||||
@@index([patientId])
|
||||
@@index([date])
|
||||
}
|
||||
|
||||
model AppointmentFile {
|
||||
id Int @id @default(autoincrement())
|
||||
appointmentId Int
|
||||
filename String
|
||||
mimeType String?
|
||||
filePath String?
|
||||
|
||||
appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)
|
||||
|
||||
@@index([appointmentId])
|
||||
}
|
||||
|
||||
model Staff {
|
||||
id Int @id @default(autoincrement())
|
||||
userId Int
|
||||
|
||||
@@ -101,11 +101,24 @@ model Appointment {
|
||||
staff Staff? @relation(fields: [staffId], references: [id])
|
||||
procedures AppointmentProcedure[]
|
||||
claims Claim[]
|
||||
files AppointmentFile[]
|
||||
|
||||
@@index([patientId])
|
||||
@@index([date])
|
||||
}
|
||||
|
||||
model AppointmentFile {
|
||||
id Int @id @default(autoincrement())
|
||||
appointmentId Int
|
||||
filename String
|
||||
mimeType String?
|
||||
filePath String?
|
||||
|
||||
appointment Appointment @relation(fields: [appointmentId], references: [id], onDelete: Cascade)
|
||||
|
||||
@@index([appointmentId])
|
||||
}
|
||||
|
||||
model Staff {
|
||||
id Int @id @default(autoincrement())
|
||||
userId Int
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"generatorVersion": "1.0.0",
|
||||
"generatedAt": "2026-04-26T03:55:08.606Z",
|
||||
"generatedAt": "2026-04-29T04:19:07.524Z",
|
||||
"outputPath": "/home/ee/Desktop/DentalManagementMH04/packages/db/shared",
|
||||
"files": [
|
||||
"schemas/enums/TransactionIsolationLevel.schema.ts",
|
||||
"schemas/enums/UserScalarFieldEnum.schema.ts",
|
||||
"schemas/enums/PatientScalarFieldEnum.schema.ts",
|
||||
"schemas/enums/AppointmentScalarFieldEnum.schema.ts",
|
||||
"schemas/enums/AppointmentFileScalarFieldEnum.schema.ts",
|
||||
"schemas/enums/StaffScalarFieldEnum.schema.ts",
|
||||
"schemas/enums/NpiProviderScalarFieldEnum.schema.ts",
|
||||
"schemas/enums/AppointmentProcedureScalarFieldEnum.schema.ts",
|
||||
@@ -60,6 +61,11 @@
|
||||
"schemas/objects/AppointmentWhereUniqueInput.schema.ts",
|
||||
"schemas/objects/AppointmentOrderByWithAggregationInput.schema.ts",
|
||||
"schemas/objects/AppointmentScalarWhereWithAggregatesInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileWhereInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileOrderByWithRelationInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileWhereUniqueInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileOrderByWithAggregationInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileScalarWhereWithAggregatesInput.schema.ts",
|
||||
"schemas/objects/StaffWhereInput.schema.ts",
|
||||
"schemas/objects/StaffOrderByWithRelationInput.schema.ts",
|
||||
"schemas/objects/StaffWhereUniqueInput.schema.ts",
|
||||
@@ -181,6 +187,13 @@
|
||||
"schemas/objects/AppointmentCreateManyInput.schema.ts",
|
||||
"schemas/objects/AppointmentUpdateManyMutationInput.schema.ts",
|
||||
"schemas/objects/AppointmentUncheckedUpdateManyInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedCreateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpdateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedUpdateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateManyInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpdateManyMutationInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedUpdateManyInput.schema.ts",
|
||||
"schemas/objects/StaffCreateInput.schema.ts",
|
||||
"schemas/objects/StaffUncheckedCreateInput.schema.ts",
|
||||
"schemas/objects/StaffUpdateInput.schema.ts",
|
||||
@@ -381,11 +394,19 @@
|
||||
"schemas/objects/DateTimeWithAggregatesFilter.schema.ts",
|
||||
"schemas/objects/PatientScalarRelationFilter.schema.ts",
|
||||
"schemas/objects/StaffNullableScalarRelationFilter.schema.ts",
|
||||
"schemas/objects/AppointmentFileListRelationFilter.schema.ts",
|
||||
"schemas/objects/AppointmentFileOrderByRelationAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentCountOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentAvgOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentMaxOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentMinOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentSumOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentScalarRelationFilter.schema.ts",
|
||||
"schemas/objects/AppointmentFileCountOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileAvgOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileMaxOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileMinOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileSumOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/UserNullableScalarRelationFilter.schema.ts",
|
||||
"schemas/objects/StaffCountOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/StaffAvgOrderByAggregateInput.schema.ts",
|
||||
@@ -401,7 +422,6 @@
|
||||
"schemas/objects/IntNullableFilter.schema.ts",
|
||||
"schemas/objects/DecimalNullableFilter.schema.ts",
|
||||
"schemas/objects/EnumProcedureSourceFilter.schema.ts",
|
||||
"schemas/objects/AppointmentScalarRelationFilter.schema.ts",
|
||||
"schemas/objects/NpiProviderNullableScalarRelationFilter.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureCountOrderByAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureAvgOrderByAggregateInput.schema.ts",
|
||||
@@ -639,15 +659,21 @@
|
||||
"schemas/objects/StaffCreateNestedOneWithoutAppointmentsInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureCreateNestedManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimCreateNestedManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateNestedManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimUncheckedCreateNestedManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedCreateNestedManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/PatientUpdateOneRequiredWithoutAppointmentsNestedInput.schema.ts",
|
||||
"schemas/objects/UserUpdateOneRequiredWithoutAppointmentsNestedInput.schema.ts",
|
||||
"schemas/objects/StaffUpdateOneWithoutAppointmentsNestedInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureUpdateManyWithoutAppointmentNestedInput.schema.ts",
|
||||
"schemas/objects/ClaimUpdateManyWithoutAppointmentNestedInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpdateManyWithoutAppointmentNestedInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts",
|
||||
"schemas/objects/ClaimUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedUpdateManyWithoutAppointmentNestedInput.schema.ts",
|
||||
"schemas/objects/AppointmentCreateNestedOneWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentUpdateOneRequiredWithoutFilesNestedInput.schema.ts",
|
||||
"schemas/objects/UserCreateNestedOneWithoutStaffInput.schema.ts",
|
||||
"schemas/objects/AppointmentCreateNestedManyWithoutStaffInput.schema.ts",
|
||||
"schemas/objects/ClaimCreateNestedManyWithoutStaffInput.schema.ts",
|
||||
@@ -1013,6 +1039,10 @@
|
||||
"schemas/objects/ClaimUncheckedCreateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimCreateOrConnectWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimCreateManyAppointmentInputEnvelope.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedCreateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateOrConnectWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateManyAppointmentInputEnvelope.schema.ts",
|
||||
"schemas/objects/PatientUpsertWithoutAppointmentsInput.schema.ts",
|
||||
"schemas/objects/PatientUpdateToOneWithWhereWithoutAppointmentsInput.schema.ts",
|
||||
"schemas/objects/PatientUpdateWithoutAppointmentsInput.schema.ts",
|
||||
@@ -1031,6 +1061,17 @@
|
||||
"schemas/objects/ClaimUpsertWithWhereUniqueWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimUpdateWithWhereUniqueWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimUpdateManyWithWhereWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpsertWithWhereUniqueWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpdateWithWhereUniqueWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpdateManyWithWhereWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileScalarWhereInput.schema.ts",
|
||||
"schemas/objects/AppointmentCreateWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentUncheckedCreateWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentCreateOrConnectWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentUpsertWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentUpdateToOneWithWhereWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentUpdateWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/AppointmentUncheckedUpdateWithoutFilesInput.schema.ts",
|
||||
"schemas/objects/UserCreateWithoutStaffInput.schema.ts",
|
||||
"schemas/objects/UserUncheckedCreateWithoutStaffInput.schema.ts",
|
||||
"schemas/objects/UserCreateOrConnectWithoutStaffInput.schema.ts",
|
||||
@@ -1440,12 +1481,16 @@
|
||||
"schemas/objects/PatientDocumentUncheckedUpdateManyWithoutPatientInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureCreateManyAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimCreateManyAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCreateManyAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureUpdateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureUncheckedUpdateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureUncheckedUpdateManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimUpdateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimUncheckedUpdateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/ClaimUncheckedUpdateManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUpdateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedUpdateWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileUncheckedUpdateManyWithoutAppointmentInput.schema.ts",
|
||||
"schemas/objects/AppointmentCreateManyStaffInput.schema.ts",
|
||||
"schemas/objects/ClaimCreateManyStaffInput.schema.ts",
|
||||
"schemas/objects/AppointmentUpdateWithoutStaffInput.schema.ts",
|
||||
@@ -1513,6 +1558,11 @@
|
||||
"schemas/objects/AppointmentSumAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentMinAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentMaxAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileCountAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileAvgAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileSumAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileMinAggregateInput.schema.ts",
|
||||
"schemas/objects/AppointmentFileMaxAggregateInput.schema.ts",
|
||||
"schemas/objects/StaffCountAggregateInput.schema.ts",
|
||||
"schemas/objects/StaffAvgAggregateInput.schema.ts",
|
||||
"schemas/objects/StaffSumAggregateInput.schema.ts",
|
||||
@@ -1649,6 +1699,7 @@
|
||||
"schemas/objects/AppointmentCountOutputTypeArgs.schema.ts",
|
||||
"schemas/objects/AppointmentCountOutputTypeCountProceduresArgs.schema.ts",
|
||||
"schemas/objects/AppointmentCountOutputTypeCountClaimsArgs.schema.ts",
|
||||
"schemas/objects/AppointmentCountOutputTypeCountFilesArgs.schema.ts",
|
||||
"schemas/objects/StaffCountOutputTypeArgs.schema.ts",
|
||||
"schemas/objects/StaffCountOutputTypeCountAppointmentsArgs.schema.ts",
|
||||
"schemas/objects/StaffCountOutputTypeCountClaimsArgs.schema.ts",
|
||||
@@ -1673,6 +1724,7 @@
|
||||
"schemas/objects/UserSelect.schema.ts",
|
||||
"schemas/objects/PatientSelect.schema.ts",
|
||||
"schemas/objects/AppointmentSelect.schema.ts",
|
||||
"schemas/objects/AppointmentFileSelect.schema.ts",
|
||||
"schemas/objects/StaffSelect.schema.ts",
|
||||
"schemas/objects/NpiProviderSelect.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureSelect.schema.ts",
|
||||
@@ -1696,6 +1748,7 @@
|
||||
"schemas/objects/UserArgs.schema.ts",
|
||||
"schemas/objects/PatientArgs.schema.ts",
|
||||
"schemas/objects/AppointmentArgs.schema.ts",
|
||||
"schemas/objects/AppointmentFileArgs.schema.ts",
|
||||
"schemas/objects/StaffArgs.schema.ts",
|
||||
"schemas/objects/NpiProviderArgs.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureArgs.schema.ts",
|
||||
@@ -1719,6 +1772,7 @@
|
||||
"schemas/objects/UserInclude.schema.ts",
|
||||
"schemas/objects/PatientInclude.schema.ts",
|
||||
"schemas/objects/AppointmentInclude.schema.ts",
|
||||
"schemas/objects/AppointmentFileInclude.schema.ts",
|
||||
"schemas/objects/StaffInclude.schema.ts",
|
||||
"schemas/objects/NpiProviderInclude.schema.ts",
|
||||
"schemas/objects/AppointmentProcedureInclude.schema.ts",
|
||||
@@ -1789,6 +1843,23 @@
|
||||
"schemas/upsertOneAppointment.schema.ts",
|
||||
"schemas/aggregateAppointment.schema.ts",
|
||||
"schemas/groupByAppointment.schema.ts",
|
||||
"schemas/findUniqueAppointmentFile.schema.ts",
|
||||
"schemas/findUniqueOrThrowAppointmentFile.schema.ts",
|
||||
"schemas/findFirstAppointmentFile.schema.ts",
|
||||
"schemas/findFirstOrThrowAppointmentFile.schema.ts",
|
||||
"schemas/findManyAppointmentFile.schema.ts",
|
||||
"schemas/countAppointmentFile.schema.ts",
|
||||
"schemas/createOneAppointmentFile.schema.ts",
|
||||
"schemas/createManyAppointmentFile.schema.ts",
|
||||
"schemas/createManyAndReturnAppointmentFile.schema.ts",
|
||||
"schemas/deleteOneAppointmentFile.schema.ts",
|
||||
"schemas/deleteManyAppointmentFile.schema.ts",
|
||||
"schemas/updateOneAppointmentFile.schema.ts",
|
||||
"schemas/updateManyAppointmentFile.schema.ts",
|
||||
"schemas/updateManyAndReturnAppointmentFile.schema.ts",
|
||||
"schemas/upsertOneAppointmentFile.schema.ts",
|
||||
"schemas/aggregateAppointmentFile.schema.ts",
|
||||
"schemas/groupByAppointmentFile.schema.ts",
|
||||
"schemas/findUniqueStaff.schema.ts",
|
||||
"schemas/findUniqueOrThrowStaff.schema.ts",
|
||||
"schemas/findFirstStaff.schema.ts",
|
||||
@@ -2168,6 +2239,19 @@
|
||||
"schemas/results/AppointmentAggregateResult.schema.ts",
|
||||
"schemas/results/AppointmentGroupByResult.schema.ts",
|
||||
"schemas/results/AppointmentCountResult.schema.ts",
|
||||
"schemas/results/AppointmentFileFindUniqueResult.schema.ts",
|
||||
"schemas/results/AppointmentFileFindFirstResult.schema.ts",
|
||||
"schemas/results/AppointmentFileFindManyResult.schema.ts",
|
||||
"schemas/results/AppointmentFileCreateResult.schema.ts",
|
||||
"schemas/results/AppointmentFileCreateManyResult.schema.ts",
|
||||
"schemas/results/AppointmentFileUpdateResult.schema.ts",
|
||||
"schemas/results/AppointmentFileUpdateManyResult.schema.ts",
|
||||
"schemas/results/AppointmentFileUpsertResult.schema.ts",
|
||||
"schemas/results/AppointmentFileDeleteResult.schema.ts",
|
||||
"schemas/results/AppointmentFileDeleteManyResult.schema.ts",
|
||||
"schemas/results/AppointmentFileAggregateResult.schema.ts",
|
||||
"schemas/results/AppointmentFileGroupByResult.schema.ts",
|
||||
"schemas/results/AppointmentFileCountResult.schema.ts",
|
||||
"schemas/results/StaffFindUniqueResult.schema.ts",
|
||||
"schemas/results/StaffFindFirstResult.schema.ts",
|
||||
"schemas/results/StaffFindManyResult.schema.ts",
|
||||
@@ -2433,6 +2517,7 @@
|
||||
"schemas/variants/pure/User.pure.ts",
|
||||
"schemas/variants/pure/Patient.pure.ts",
|
||||
"schemas/variants/pure/Appointment.pure.ts",
|
||||
"schemas/variants/pure/AppointmentFile.pure.ts",
|
||||
"schemas/variants/pure/Staff.pure.ts",
|
||||
"schemas/variants/pure/NpiProvider.pure.ts",
|
||||
"schemas/variants/pure/AppointmentProcedure.pure.ts",
|
||||
@@ -2457,6 +2542,7 @@
|
||||
"schemas/variants/input/User.input.ts",
|
||||
"schemas/variants/input/Patient.input.ts",
|
||||
"schemas/variants/input/Appointment.input.ts",
|
||||
"schemas/variants/input/AppointmentFile.input.ts",
|
||||
"schemas/variants/input/Staff.input.ts",
|
||||
"schemas/variants/input/NpiProvider.input.ts",
|
||||
"schemas/variants/input/AppointmentProcedure.input.ts",
|
||||
@@ -2481,6 +2567,7 @@
|
||||
"schemas/variants/result/User.result.ts",
|
||||
"schemas/variants/result/Patient.result.ts",
|
||||
"schemas/variants/result/Appointment.result.ts",
|
||||
"schemas/variants/result/AppointmentFile.result.ts",
|
||||
"schemas/variants/result/Staff.result.ts",
|
||||
"schemas/variants/result/NpiProvider.result.ts",
|
||||
"schemas/variants/result/AppointmentProcedure.result.ts",
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
|
||||
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
|
||||
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
|
||||
import { AppointmentFileCountAggregateInputObjectSchema as AppointmentFileCountAggregateInputObjectSchema } from './objects/AppointmentFileCountAggregateInput.schema';
|
||||
import { AppointmentFileMinAggregateInputObjectSchema as AppointmentFileMinAggregateInputObjectSchema } from './objects/AppointmentFileMinAggregateInput.schema';
|
||||
import { AppointmentFileMaxAggregateInputObjectSchema as AppointmentFileMaxAggregateInputObjectSchema } from './objects/AppointmentFileMaxAggregateInput.schema';
|
||||
import { AppointmentFileAvgAggregateInputObjectSchema as AppointmentFileAvgAggregateInputObjectSchema } from './objects/AppointmentFileAvgAggregateInput.schema';
|
||||
import { AppointmentFileSumAggregateInputObjectSchema as AppointmentFileSumAggregateInputObjectSchema } from './objects/AppointmentFileSumAggregateInput.schema';
|
||||
|
||||
export const AppointmentFileAggregateSchema: z.ZodType<Prisma.AppointmentFileAggregateArgs> = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional(), _min: AppointmentFileMinAggregateInputObjectSchema.optional(), _max: AppointmentFileMaxAggregateInputObjectSchema.optional(), _avg: AppointmentFileAvgAggregateInputObjectSchema.optional(), _sum: AppointmentFileSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileAggregateArgs>;
|
||||
|
||||
export const AppointmentFileAggregateZodSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional(), _min: AppointmentFileMinAggregateInputObjectSchema.optional(), _max: AppointmentFileMaxAggregateInputObjectSchema.optional(), _avg: AppointmentFileAvgAggregateInputObjectSchema.optional(), _sum: AppointmentFileSumAggregateInputObjectSchema.optional() }).strict();
|
||||
10
packages/db/shared/schemas/countAppointmentFile.schema.ts
Normal file
10
packages/db/shared/schemas/countAppointmentFile.schema.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
|
||||
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
|
||||
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
|
||||
import { AppointmentFileCountAggregateInputObjectSchema as AppointmentFileCountAggregateInputObjectSchema } from './objects/AppointmentFileCountAggregateInput.schema';
|
||||
|
||||
export const AppointmentFileCountSchema: z.ZodType<Prisma.AppointmentFileCountArgs> = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCountArgs>;
|
||||
|
||||
export const AppointmentFileCountZodSchema = z.object({ orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AppointmentFileCountAggregateInputObjectSchema ]).optional() }).strict();
|
||||
@@ -0,0 +1,8 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileSelectObjectSchema as AppointmentFileSelectObjectSchema } from './objects/AppointmentFileSelect.schema';
|
||||
import { AppointmentFileCreateManyInputObjectSchema as AppointmentFileCreateManyInputObjectSchema } from './objects/AppointmentFileCreateManyInput.schema';
|
||||
|
||||
export const AppointmentFileCreateManyAndReturnSchema: z.ZodType<Prisma.AppointmentFileCreateManyAndReturnArgs> = z.object({ select: AppointmentFileSelectObjectSchema.optional(), data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCreateManyAndReturnArgs>;
|
||||
|
||||
export const AppointmentFileCreateManyAndReturnZodSchema = z.object({ select: AppointmentFileSelectObjectSchema.optional(), data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,7 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileCreateManyInputObjectSchema as AppointmentFileCreateManyInputObjectSchema } from './objects/AppointmentFileCreateManyInput.schema';
|
||||
|
||||
export const AppointmentFileCreateManySchema: z.ZodType<Prisma.AppointmentFileCreateManyArgs> = z.object({ data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCreateManyArgs>;
|
||||
|
||||
export const AppointmentFileCreateManyZodSchema = z.object({ data: z.union([ AppointmentFileCreateManyInputObjectSchema, z.array(AppointmentFileCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict();
|
||||
@@ -0,0 +1,10 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileSelectObjectSchema as AppointmentFileSelectObjectSchema } from './objects/AppointmentFileSelect.schema';
|
||||
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
|
||||
import { AppointmentFileCreateInputObjectSchema as AppointmentFileCreateInputObjectSchema } from './objects/AppointmentFileCreateInput.schema';
|
||||
import { AppointmentFileUncheckedCreateInputObjectSchema as AppointmentFileUncheckedCreateInputObjectSchema } from './objects/AppointmentFileUncheckedCreateInput.schema';
|
||||
|
||||
export const AppointmentFileCreateOneSchema: z.ZodType<Prisma.AppointmentFileCreateArgs> = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), data: z.union([AppointmentFileCreateInputObjectSchema, AppointmentFileUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType<Prisma.AppointmentFileCreateArgs>;
|
||||
|
||||
export const AppointmentFileCreateOneZodSchema = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), data: z.union([AppointmentFileCreateInputObjectSchema, AppointmentFileUncheckedCreateInputObjectSchema]) }).strict();
|
||||
@@ -0,0 +1,7 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
|
||||
|
||||
export const AppointmentFileDeleteManySchema: z.ZodType<Prisma.AppointmentFileDeleteManyArgs> = z.object({ where: AppointmentFileWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileDeleteManyArgs>;
|
||||
|
||||
export const AppointmentFileDeleteManyZodSchema = z.object({ where: AppointmentFileWhereInputObjectSchema.optional() }).strict();
|
||||
@@ -0,0 +1,9 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileSelectObjectSchema as AppointmentFileSelectObjectSchema } from './objects/AppointmentFileSelect.schema';
|
||||
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
|
||||
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
|
||||
|
||||
export const AppointmentFileDeleteOneSchema: z.ZodType<Prisma.AppointmentFileDeleteArgs> = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), where: AppointmentFileWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType<Prisma.AppointmentFileDeleteArgs>;
|
||||
|
||||
export const AppointmentFileDeleteOneZodSchema = z.object({ select: AppointmentFileSelectObjectSchema.optional(), include: AppointmentFileIncludeObjectSchema.optional(), where: AppointmentFileWhereUniqueInputObjectSchema }).strict();
|
||||
@@ -0,0 +1,5 @@
|
||||
import * as z from 'zod';
|
||||
|
||||
export const AppointmentFileScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'filename', 'mimeType', 'filePath'])
|
||||
|
||||
export type AppointmentFileScalarFieldEnum = z.infer<typeof AppointmentFileScalarFieldEnumSchema>;
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as z from 'zod';
|
||||
export declare const AppointmentProcedureScalarFieldEnumSchema: z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>;
|
||||
export declare const AppointmentProcedureScalarFieldEnumSchema: z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>;
|
||||
export type AppointmentProcedureScalarFieldEnum = z.infer<typeof AppointmentProcedureScalarFieldEnumSchema>;
|
||||
//# sourceMappingURL=AppointmentProcedureScalarFieldEnum.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"AppointmentProcedureScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["AppointmentProcedureScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,yCAAyC,2LAAyL,CAAA;AAE/O,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yCAAyC,CAAC,CAAC"}
|
||||
{"version":3,"file":"AppointmentProcedureScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["AppointmentProcedureScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,yCAAyC,4MAA0M,CAAA;AAEhQ,MAAM,MAAM,mCAAmC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yCAAyC,CAAC,CAAC"}
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.AppointmentProcedureScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.AppointmentProcedureScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'patientId', 'procedureCode', 'procedureLabel', 'fee', 'category', 'toothNumber', 'toothSurface', 'oralCavityArea', 'source', 'comboKey', 'createdAt']);
|
||||
exports.AppointmentProcedureScalarFieldEnumSchema = z.enum(['id', 'appointmentId', 'patientId', 'npiProviderId', 'procedureCode', 'procedureLabel', 'fee', 'category', 'toothNumber', 'toothSurface', 'oralCavityArea', 'source', 'comboKey', 'createdAt']);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as z from 'zod';
|
||||
export declare const ClaimFileScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "filename", "mimeType"]>;
|
||||
export declare const ClaimFileScalarFieldEnumSchema: z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>;
|
||||
export type ClaimFileScalarFieldEnum = z.infer<typeof ClaimFileScalarFieldEnumSchema>;
|
||||
//# sourceMappingURL=ClaimFileScalarFieldEnum.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"ClaimFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,sDAAoD,CAAA;AAE/F,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
||||
{"version":3,"file":"ClaimFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,kEAAgE,CAAA;AAE3G,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ClaimFileScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ClaimFileScalarFieldEnumSchema = z.enum(['id', 'claimId', 'filename', 'mimeType']);
|
||||
exports.ClaimFileScalarFieldEnumSchema = z.enum(['id', 'claimId', 'filename', 'mimeType', 'filePath']);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as z from 'zod';
|
||||
export declare const ClaimScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>;
|
||||
export declare const ClaimScalarFieldEnumSchema: z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>;
|
||||
export type ClaimScalarFieldEnum = z.infer<typeof ClaimScalarFieldEnumSchema>;
|
||||
//# sourceMappingURL=ClaimScalarFieldEnum.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"ClaimScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,0BAA0B,wPAAsP,CAAA;AAE7R,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
||||
{"version":3,"file":"ClaimScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["ClaimScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,0BAA0B,yQAAuQ,CAAA;AAE9S,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC"}
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ClaimScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.ClaimScalarFieldEnumSchema = z.enum(['id', 'patientId', 'appointmentId', 'userId', 'staffId', 'patientName', 'memberId', 'dateOfBirth', 'remarks', 'missingTeethStatus', 'missingTeeth', 'serviceDate', 'insuranceProvider', 'createdAt', 'updatedAt', 'status', 'claimNumber']);
|
||||
exports.ClaimScalarFieldEnumSchema = z.enum(['id', 'patientId', 'appointmentId', 'userId', 'staffId', 'patientName', 'memberId', 'dateOfBirth', 'remarks', 'missingTeethStatus', 'missingTeeth', 'serviceDate', 'insuranceProvider', 'createdAt', 'updatedAt', 'status', 'claimNumber', 'npiProviderId']);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as z from 'zod';
|
||||
export declare const CloudFileScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>;
|
||||
export declare const CloudFileScalarFieldEnumSchema: z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>;
|
||||
export type CloudFileScalarFieldEnum = z.infer<typeof CloudFileScalarFieldEnumSchema>;
|
||||
//# sourceMappingURL=CloudFileScalarFieldEnum.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"CloudFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["CloudFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,gIAA8H,CAAA;AAEzK,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
||||
{"version":3,"file":"CloudFileScalarFieldEnum.schema.d.ts","sourceRoot":"","sources":["CloudFileScalarFieldEnum.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,eAAO,MAAM,8BAA8B,4IAA0I,CAAA;AAErL,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
||||
@@ -35,4 +35,4 @@ var __importStar = (this && this.__importStar) || (function () {
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CloudFileScalarFieldEnumSchema = void 0;
|
||||
const z = __importStar(require("zod"));
|
||||
exports.CloudFileScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'mimeType', 'fileSize', 'folderId', 'isComplete', 'totalChunks', 'createdAt', 'updatedAt']);
|
||||
exports.CloudFileScalarFieldEnumSchema = z.enum(['id', 'userId', 'name', 'mimeType', 'fileSize', 'folderId', 'isComplete', 'totalChunks', 'diskPath', 'createdAt', 'updatedAt']);
|
||||
|
||||
@@ -25,12 +25,10 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type?: boolean | undefined;
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
date?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
startTime?: boolean | undefined;
|
||||
@@ -38,20 +36,20 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
notes?: boolean | undefined;
|
||||
procedureCodeNotes?: boolean | undefined;
|
||||
eligibilityStatus?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
type?: boolean | undefined;
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
date?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
startTime?: boolean | undefined;
|
||||
@@ -59,8 +57,10 @@ export declare const AppointmentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
notes?: boolean | undefined;
|
||||
procedureCodeNotes?: boolean | undefined;
|
||||
eligibilityStatus?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
@@ -83,7 +83,7 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
|
||||
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.AppointmentWhereInput | undefined;
|
||||
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -92,6 +92,6 @@ export declare const AppointmentFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
|
||||
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstAppointment.schema.d.ts.map
|
||||
@@ -29,6 +29,7 @@ export const AppointmentFindFirstSelectSchema: z.ZodType<Prisma.AppointmentSelec
|
||||
staff: z.boolean().optional(),
|
||||
procedures: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
files: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict() as unknown as z.ZodType<Prisma.AppointmentSelect>;
|
||||
|
||||
@@ -52,6 +53,7 @@ export const AppointmentFindFirstSelectZodSchema = z.object({
|
||||
staff: z.boolean().optional(),
|
||||
procedures: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
files: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
|
||||
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
|
||||
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
|
||||
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
|
||||
import { AppointmentFileScalarFieldEnumSchema } from './enums/AppointmentFileScalarFieldEnum.schema';
|
||||
|
||||
// Select schema needs to be in file to prevent circular imports
|
||||
//------------------------------------------------------
|
||||
|
||||
export const AppointmentFileFindFirstSelectSchema: z.ZodType<Prisma.AppointmentFileSelect> = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
appointment: z.boolean().optional()
|
||||
}).strict() as unknown as z.ZodType<Prisma.AppointmentFileSelect>;
|
||||
|
||||
export const AppointmentFileFindFirstSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
appointment: z.boolean().optional()
|
||||
}).strict();
|
||||
|
||||
export const AppointmentFileFindFirstSchema: z.ZodType<Prisma.AppointmentFileFindFirstArgs> = z.object({ select: AppointmentFileFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileFindFirstArgs>;
|
||||
|
||||
export const AppointmentFileFindFirstZodSchema = z.object({ select: AppointmentFileFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
@@ -5,6 +5,7 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
appointmentId: z.ZodOptional<z.ZodBoolean>;
|
||||
patientId: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviderId: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureCode: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureLabel: z.ZodOptional<z.ZodBoolean>;
|
||||
fee: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -17,11 +18,13 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
appointment: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
procedureLabel?: boolean | undefined;
|
||||
fee?: boolean | undefined;
|
||||
@@ -33,11 +36,13 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
|
||||
comboKey?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
procedureLabel?: boolean | undefined;
|
||||
fee?: boolean | undefined;
|
||||
@@ -49,6 +54,7 @@ export declare const AppointmentProcedureFindFirstSelectZodSchema: z.ZodObject<{
|
||||
comboKey?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
}>;
|
||||
export declare const AppointmentProcedureFindFirstSchema: z.ZodType<Prisma.AppointmentProcedureFindFirstArgs>;
|
||||
export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
|
||||
@@ -59,7 +65,7 @@ export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentProcedureWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.AppointmentProcedureWhereInput | undefined;
|
||||
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -68,7 +74,7 @@ export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.AppointmentProcedureWhereInput | undefined;
|
||||
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -77,6 +83,6 @@ export declare const AppointmentProcedureFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstAppointmentProcedure.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAgB3B,CAAC;AAEzE,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB5C,CAAC;AAEd,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,CAA0rB,CAAC;AAE/xB,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAunB,CAAC"}
|
||||
{"version":3,"file":"findFirstAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAkB3B,CAAC;AAEzE,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB5C,CAAC;AAEd,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,CAA0rB,CAAC;AAE/xB,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAunB,CAAC"}
|
||||
@@ -46,6 +46,7 @@ exports.AppointmentProcedureFindFirstSelectSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
patientId: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
procedureCode: z.boolean().optional(),
|
||||
procedureLabel: z.boolean().optional(),
|
||||
fee: z.boolean().optional(),
|
||||
@@ -57,12 +58,14 @@ exports.AppointmentProcedureFindFirstSelectSchema = z.object({
|
||||
comboKey: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
patient: z.boolean().optional()
|
||||
patient: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AppointmentProcedureFindFirstSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
patientId: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
procedureCode: z.boolean().optional(),
|
||||
procedureLabel: z.boolean().optional(),
|
||||
fee: z.boolean().optional(),
|
||||
@@ -74,7 +77,8 @@ exports.AppointmentProcedureFindFirstSelectZodSchema = z.object({
|
||||
comboKey: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
patient: z.boolean().optional()
|
||||
patient: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AppointmentProcedureFindFirstSchema = z.object({ select: exports.AppointmentProcedureFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
exports.AppointmentProcedureFindFirstZodSchema = z.object({ select: exports.AppointmentProcedureFindFirstSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
@@ -10,17 +10,17 @@ export declare const BackupDestinationFindFirstSelectZodSchema: z.ZodObject<{
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
path?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
isActive?: boolean | undefined;
|
||||
}, {
|
||||
path?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
isActive?: boolean | undefined;
|
||||
}>;
|
||||
export declare const BackupDestinationFindFirstSchema: z.ZodType<Prisma.BackupDestinationFindFirstArgs>;
|
||||
@@ -41,7 +41,7 @@ export declare const BackupDestinationFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
|
||||
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.BackupDestinationWhereInput | undefined;
|
||||
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +50,6 @@ export declare const BackupDestinationFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
|
||||
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstBackupDestination.schema.d.ts.map
|
||||
@@ -19,25 +19,29 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
status: z.ZodOptional<z.ZodBoolean>;
|
||||
claimNumber: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviderId: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
appointment: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
staff: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLines: z.ZodOptional<z.ZodBoolean>;
|
||||
claimFiles: z.ZodOptional<z.ZodBoolean>;
|
||||
payment: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
payment?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
@@ -55,15 +59,17 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
payment?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
@@ -89,7 +95,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.ClaimWhereInput | undefined;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -98,7 +104,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ClaimWhereInput | undefined;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -107,6 +113,6 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstClaim.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstClaim.schema.d.ts","sourceRoot":"","sources":["findFirstClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA0BZ,CAAC;AAE1D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0B7B,CAAC;AAEd,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAmjB,CAAC;AAE1nB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+f,CAAC"}
|
||||
{"version":3,"file":"findFirstClaim.schema.d.ts","sourceRoot":"","sources":["findFirstClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA4BZ,CAAC;AAE1D,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4B7B,CAAC;AAEd,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,kBAAkB,CAAmjB,CAAC;AAE1nB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+f,CAAC"}
|
||||
@@ -60,10 +60,12 @@ exports.ClaimFindFirstSelectSchema = z.object({
|
||||
updatedAt: z.boolean().optional(),
|
||||
status: z.boolean().optional(),
|
||||
claimNumber: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
patient: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
staff: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional(),
|
||||
serviceLines: z.boolean().optional(),
|
||||
claimFiles: z.boolean().optional(),
|
||||
payment: z.boolean().optional(),
|
||||
@@ -87,10 +89,12 @@ exports.ClaimFindFirstSelectZodSchema = z.object({
|
||||
updatedAt: z.boolean().optional(),
|
||||
status: z.boolean().optional(),
|
||||
claimNumber: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
patient: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
staff: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional(),
|
||||
serviceLines: z.boolean().optional(),
|
||||
claimFiles: z.boolean().optional(),
|
||||
payment: z.boolean().optional(),
|
||||
|
||||
@@ -6,17 +6,20 @@ export declare const ClaimFileFindFirstSelectZodSchema: z.ZodObject<{
|
||||
claimId: z.ZodOptional<z.ZodBoolean>;
|
||||
filename: z.ZodOptional<z.ZodBoolean>;
|
||||
mimeType: z.ZodOptional<z.ZodBoolean>;
|
||||
filePath: z.ZodOptional<z.ZodBoolean>;
|
||||
claim: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
}>;
|
||||
@@ -29,7 +32,7 @@ export declare const ClaimFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimFileWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimFileWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.ClaimFileWhereInput | undefined;
|
||||
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -38,7 +41,7 @@ export declare const ClaimFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
|
||||
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ClaimFileWhereInput | undefined;
|
||||
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -47,6 +50,6 @@ export declare const ClaimFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
|
||||
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstClaimFile.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAMhB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}
|
||||
{"version":3,"file":"findFirstClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAOhB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;EAOjC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}
|
||||
@@ -47,6 +47,7 @@ exports.ClaimFileFindFirstSelectSchema = z.object({
|
||||
claimId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
claim: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.ClaimFileFindFirstSelectZodSchema = z.object({
|
||||
@@ -54,6 +55,7 @@ exports.ClaimFileFindFirstSelectZodSchema = z.object({
|
||||
claimId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
claim: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.ClaimFileFindFirstSchema = z.object({ select: exports.ClaimFileFindFirstSelectSchema.optional(), include: z.lazy(() => ClaimFileInclude_schema_1.ClaimFileIncludeObjectSchema.optional()), orderBy: z.union([ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema, ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: ClaimFileWhereInput_schema_1.ClaimFileWhereInputObjectSchema.optional(), cursor: ClaimFileWhereUniqueInput_schema_1.ClaimFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema, ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
@@ -10,6 +10,7 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{
|
||||
folderId: z.ZodOptional<z.ZodBoolean>;
|
||||
isComplete: z.ZodOptional<z.ZodBoolean>;
|
||||
totalChunks: z.ZodOptional<z.ZodBoolean>;
|
||||
diskPath: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -17,31 +18,33 @@ export declare const CloudFileFindFirstSelectZodSchema: z.ZodObject<{
|
||||
chunks: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
isComplete?: boolean | undefined;
|
||||
totalChunks?: boolean | undefined;
|
||||
diskPath?: boolean | undefined;
|
||||
chunks?: boolean | undefined;
|
||||
folderId?: boolean | undefined;
|
||||
folder?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
isComplete?: boolean | undefined;
|
||||
totalChunks?: boolean | undefined;
|
||||
diskPath?: boolean | undefined;
|
||||
chunks?: boolean | undefined;
|
||||
folderId?: boolean | undefined;
|
||||
folder?: boolean | undefined;
|
||||
@@ -56,7 +59,7 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.CloudFileWhereInput | undefined;
|
||||
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -65,7 +68,7 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFileWhereInput | undefined;
|
||||
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -74,6 +77,6 @@ export declare const CloudFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstCloudFile.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAehB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAejC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}
|
||||
{"version":3,"file":"findFirstCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAgBhB,CAAC;AAE9D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBjC,CAAC;AAEd,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAulB,CAAC;AAEtqB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+hB,CAAC"}
|
||||
@@ -51,6 +51,7 @@ exports.CloudFileFindFirstSelectSchema = z.object({
|
||||
folderId: z.boolean().optional(),
|
||||
isComplete: z.boolean().optional(),
|
||||
totalChunks: z.boolean().optional(),
|
||||
diskPath: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
updatedAt: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
@@ -67,6 +68,7 @@ exports.CloudFileFindFirstSelectZodSchema = z.object({
|
||||
folderId: z.boolean().optional(),
|
||||
isComplete: z.boolean().optional(),
|
||||
totalChunks: z.boolean().optional(),
|
||||
diskPath: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
updatedAt: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
|
||||
@@ -9,16 +9,16 @@ export declare const CloudFileChunkFindFirstSelectZodSchema: z.ZodObject<{
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
file: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
data?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
seq?: boolean | undefined;
|
||||
fileId?: boolean | undefined;
|
||||
file?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
data?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
seq?: boolean | undefined;
|
||||
fileId?: boolean | undefined;
|
||||
file?: boolean | undefined;
|
||||
@@ -41,7 +41,7 @@ export declare const CloudFileChunkFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
|
||||
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFileChunkWhereInput | undefined;
|
||||
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +50,6 @@ export declare const CloudFileChunkFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
|
||||
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstCloudFileChunk.schema.d.ts.map
|
||||
@@ -14,10 +14,10 @@ export declare const CloudFolderFindFirstSelectZodSchema: z.ZodObject<{
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
children?: boolean | undefined;
|
||||
@@ -26,10 +26,10 @@ export declare const CloudFolderFindFirstSelectZodSchema: z.ZodObject<{
|
||||
parent?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
children?: boolean | undefined;
|
||||
@@ -56,7 +56,7 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFolderWhereInput | undefined;
|
||||
include?: Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -65,6 +65,6 @@ export declare const CloudFolderFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstCloudFolder.schema.d.ts.map
|
||||
@@ -16,12 +16,12 @@ export declare const CommunicationFindFirstSelectZodSchema: z.ZodObject<{
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
channel?: boolean | undefined;
|
||||
direction?: boolean | undefined;
|
||||
body?: boolean | undefined;
|
||||
@@ -29,12 +29,12 @@ export declare const CommunicationFindFirstSelectZodSchema: z.ZodObject<{
|
||||
twilioSid?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
channel?: boolean | undefined;
|
||||
direction?: boolean | undefined;
|
||||
body?: boolean | undefined;
|
||||
@@ -59,7 +59,7 @@ export declare const CommunicationFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CommunicationWhereInput | undefined;
|
||||
include?: Prisma.CommunicationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -68,6 +68,6 @@ export declare const CommunicationFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstCommunication.schema.d.ts.map
|
||||
@@ -7,15 +7,15 @@ export declare const DatabaseBackupFindFirstSelectZodSchema: z.ZodObject<{
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
}>;
|
||||
export declare const DatabaseBackupFindFirstSchema: z.ZodType<Prisma.DatabaseBackupFindFirstArgs>;
|
||||
export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{
|
||||
@@ -35,7 +35,7 @@ export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.DatabaseBackupWhereInput | undefined;
|
||||
include?: Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -44,6 +44,6 @@ export declare const DatabaseBackupFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstDatabaseBackup.schema.d.ts.map
|
||||
@@ -10,15 +10,15 @@ export declare const InsuranceCredentialFindFirstSelectZodSchema: z.ZodObject<{
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
siteKey?: boolean | undefined;
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
siteKey?: boolean | undefined;
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
|
||||
@@ -12,18 +12,18 @@ export declare const NotificationFindFirstSelectZodSchema: z.ZodObject<{
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
message?: boolean | undefined;
|
||||
type?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
read?: boolean | undefined;
|
||||
}, {
|
||||
message?: boolean | undefined;
|
||||
type?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
read?: boolean | undefined;
|
||||
}>;
|
||||
export declare const NotificationFindFirstSchema: z.ZodType<Prisma.NotificationFindFirstArgs>;
|
||||
@@ -44,7 +44,7 @@ export declare const NotificationFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
|
||||
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.NotificationWhereInput | undefined;
|
||||
include?: Prisma.NotificationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -53,6 +53,6 @@ export declare const NotificationFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
|
||||
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstNotification.schema.d.ts.map
|
||||
@@ -8,20 +8,29 @@ export declare const NpiProviderFindFirstSelectZodSchema: z.ZodObject<{
|
||||
providerName: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
claims: z.ZodOptional<z.ZodBoolean>;
|
||||
appointmentProcedures: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
npiNumber?: boolean | undefined;
|
||||
providerName?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
appointmentProcedures?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
npiNumber?: boolean | undefined;
|
||||
providerName?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
appointmentProcedures?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}>;
|
||||
export declare const NpiProviderFindFirstSchema: z.ZodType<Prisma.NpiProviderFindFirstArgs>;
|
||||
export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{
|
||||
@@ -41,7 +50,7 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.NpiProviderWhereInput | undefined;
|
||||
include?: Prisma.NpiProviderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +59,6 @@ export declare const NpiProviderFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstNpiProvider.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAOlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"}
|
||||
{"version":3,"file":"findFirstNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAUlB,CAAC;AAEhE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUnC,CAAC;AAEd,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAymB,CAAC;AAE5rB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+iB,CAAC"}
|
||||
@@ -48,7 +48,10 @@ exports.NpiProviderFindFirstSelectSchema = z.object({
|
||||
npiNumber: z.boolean().optional(),
|
||||
providerName: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
user: z.boolean().optional()
|
||||
user: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
appointmentProcedures: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.NpiProviderFindFirstSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
@@ -56,7 +59,10 @@ exports.NpiProviderFindFirstSelectZodSchema = z.object({
|
||||
npiNumber: z.boolean().optional(),
|
||||
providerName: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
user: z.boolean().optional()
|
||||
user: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
appointmentProcedures: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.NpiProviderFindFirstSchema = z.object({ select: exports.NpiProviderFindFirstSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
exports.NpiProviderFindFirstZodSchema = z.object({ select: exports.NpiProviderFindFirstSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
@@ -25,12 +25,10 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type?: boolean | undefined;
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
date?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
startTime?: boolean | undefined;
|
||||
@@ -38,20 +36,20 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
notes?: boolean | undefined;
|
||||
procedureCodeNotes?: boolean | undefined;
|
||||
eligibilityStatus?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
type?: boolean | undefined;
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
date?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
startTime?: boolean | undefined;
|
||||
@@ -59,8 +57,10 @@ export declare const AppointmentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
notes?: boolean | undefined;
|
||||
procedureCodeNotes?: boolean | undefined;
|
||||
eligibilityStatus?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
@@ -83,7 +83,7 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
|
||||
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.AppointmentWhereInput | undefined;
|
||||
include?: Prisma.AppointmentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -92,6 +92,6 @@ export declare const AppointmentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId" | ("type" | "status" | "createdAt" | "id" | "userId" | "date" | "title" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "staffId")[] | undefined;
|
||||
distinct?: "type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId" | ("type" | "status" | "id" | "date" | "title" | "createdAt" | "patientId" | "startTime" | "endTime" | "notes" | "procedureCodeNotes" | "eligibilityStatus" | "userId" | "staffId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowAppointment.schema.d.ts.map
|
||||
@@ -29,6 +29,7 @@ export const AppointmentFindFirstOrThrowSelectSchema: z.ZodType<Prisma.Appointme
|
||||
staff: z.boolean().optional(),
|
||||
procedures: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
files: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict() as unknown as z.ZodType<Prisma.AppointmentSelect>;
|
||||
|
||||
@@ -52,6 +53,7 @@ export const AppointmentFindFirstOrThrowSelectZodSchema = z.object({
|
||||
staff: z.boolean().optional(),
|
||||
procedures: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
files: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
import { AppointmentFileIncludeObjectSchema as AppointmentFileIncludeObjectSchema } from './objects/AppointmentFileInclude.schema';
|
||||
import { AppointmentFileOrderByWithRelationInputObjectSchema as AppointmentFileOrderByWithRelationInputObjectSchema } from './objects/AppointmentFileOrderByWithRelationInput.schema';
|
||||
import { AppointmentFileWhereInputObjectSchema as AppointmentFileWhereInputObjectSchema } from './objects/AppointmentFileWhereInput.schema';
|
||||
import { AppointmentFileWhereUniqueInputObjectSchema as AppointmentFileWhereUniqueInputObjectSchema } from './objects/AppointmentFileWhereUniqueInput.schema';
|
||||
import { AppointmentFileScalarFieldEnumSchema } from './enums/AppointmentFileScalarFieldEnum.schema';
|
||||
|
||||
// Select schema needs to be in file to prevent circular imports
|
||||
//------------------------------------------------------
|
||||
|
||||
export const AppointmentFileFindFirstOrThrowSelectSchema: z.ZodType<Prisma.AppointmentFileSelect> = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
appointment: z.boolean().optional()
|
||||
}).strict() as unknown as z.ZodType<Prisma.AppointmentFileSelect>;
|
||||
|
||||
export const AppointmentFileFindFirstOrThrowSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
appointment: z.boolean().optional()
|
||||
}).strict();
|
||||
|
||||
export const AppointmentFileFindFirstOrThrowSchema: z.ZodType<Prisma.AppointmentFileFindFirstOrThrowArgs> = z.object({ select: AppointmentFileFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType<Prisma.AppointmentFileFindFirstOrThrowArgs>;
|
||||
|
||||
export const AppointmentFileFindFirstOrThrowZodSchema = z.object({ select: AppointmentFileFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentFileIncludeObjectSchema.optional()), orderBy: z.union([AppointmentFileOrderByWithRelationInputObjectSchema, AppointmentFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentFileWhereInputObjectSchema.optional(), cursor: AppointmentFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentFileScalarFieldEnumSchema, AppointmentFileScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
@@ -5,6 +5,7 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
appointmentId: z.ZodOptional<z.ZodBoolean>;
|
||||
patientId: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviderId: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureCode: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureLabel: z.ZodOptional<z.ZodBoolean>;
|
||||
fee: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -17,11 +18,13 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
appointment: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
procedureLabel?: boolean | undefined;
|
||||
fee?: boolean | undefined;
|
||||
@@ -33,11 +36,13 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
|
||||
comboKey?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
procedureLabel?: boolean | undefined;
|
||||
fee?: boolean | undefined;
|
||||
@@ -49,6 +54,7 @@ export declare const AppointmentProcedureFindFirstOrThrowSelectZodSchema: z.ZodO
|
||||
comboKey?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
}>;
|
||||
export declare const AppointmentProcedureFindFirstOrThrowSchema: z.ZodType<Prisma.AppointmentProcedureFindFirstOrThrowArgs>;
|
||||
export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
@@ -59,7 +65,7 @@ export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentProcedureWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.AppointmentProcedureWhereInput | undefined;
|
||||
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -68,7 +74,7 @@ export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<
|
||||
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.AppointmentProcedureWhereInput | undefined;
|
||||
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -77,6 +83,6 @@ export declare const AppointmentProcedureFindFirstOrThrowZodSchema: z.ZodObject<
|
||||
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowAppointmentProcedure.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstOrThrowAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAgBlC,CAAC;AAEzE,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBnD,CAAC;AAEd,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,CAAwsB,CAAC;AAE3zB,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8nB,CAAC"}
|
||||
{"version":3,"file":"findFirstOrThrowAppointmentProcedure.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowAppointmentProcedure.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,gDAAgD,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAkBlC,CAAC;AAEzE,eAAO,MAAM,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBnD,CAAC;AAEd,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,CAAwsB,CAAC;AAE3zB,eAAO,MAAM,6CAA6C;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8nB,CAAC"}
|
||||
@@ -46,6 +46,7 @@ exports.AppointmentProcedureFindFirstOrThrowSelectSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
patientId: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
procedureCode: z.boolean().optional(),
|
||||
procedureLabel: z.boolean().optional(),
|
||||
fee: z.boolean().optional(),
|
||||
@@ -57,12 +58,14 @@ exports.AppointmentProcedureFindFirstOrThrowSelectSchema = z.object({
|
||||
comboKey: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
patient: z.boolean().optional()
|
||||
patient: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AppointmentProcedureFindFirstOrThrowSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
appointmentId: z.boolean().optional(),
|
||||
patientId: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
procedureCode: z.boolean().optional(),
|
||||
procedureLabel: z.boolean().optional(),
|
||||
fee: z.boolean().optional(),
|
||||
@@ -74,7 +77,8 @@ exports.AppointmentProcedureFindFirstOrThrowSelectZodSchema = z.object({
|
||||
comboKey: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
patient: z.boolean().optional()
|
||||
patient: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.AppointmentProcedureFindFirstOrThrowSchema = z.object({ select: exports.AppointmentProcedureFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
exports.AppointmentProcedureFindFirstOrThrowZodSchema = z.object({ select: exports.AppointmentProcedureFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => AppointmentProcedureInclude_schema_1.AppointmentProcedureIncludeObjectSchema.optional()), orderBy: z.union([AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema, AppointmentProcedureOrderByWithRelationInput_schema_1.AppointmentProcedureOrderByWithRelationInputObjectSchema.array()]).optional(), where: AppointmentProcedureWhereInput_schema_1.AppointmentProcedureWhereInputObjectSchema.optional(), cursor: AppointmentProcedureWhereUniqueInput_schema_1.AppointmentProcedureWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema, AppointmentProcedureScalarFieldEnum_schema_1.AppointmentProcedureScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
@@ -10,17 +10,17 @@ export declare const BackupDestinationFindFirstOrThrowSelectZodSchema: z.ZodObje
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
path?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
isActive?: boolean | undefined;
|
||||
}, {
|
||||
path?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
isActive?: boolean | undefined;
|
||||
}>;
|
||||
export declare const BackupDestinationFindFirstOrThrowSchema: z.ZodType<Prisma.BackupDestinationFindFirstOrThrowArgs>;
|
||||
@@ -41,7 +41,7 @@ export declare const BackupDestinationFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
|
||||
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.BackupDestinationWhereInput | undefined;
|
||||
include?: Prisma.BackupDestinationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +50,6 @@ export declare const BackupDestinationFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.BackupDestinationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "path" | "createdAt" | "id" | "userId" | "isActive" | ("path" | "createdAt" | "id" | "userId" | "isActive")[] | undefined;
|
||||
distinct?: "path" | "id" | "createdAt" | "userId" | "isActive" | ("path" | "id" | "createdAt" | "userId" | "isActive")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowBackupDestination.schema.d.ts.map
|
||||
@@ -19,25 +19,29 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
status: z.ZodOptional<z.ZodBoolean>;
|
||||
claimNumber: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviderId: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
appointment: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
staff: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLines: z.ZodOptional<z.ZodBoolean>;
|
||||
claimFiles: z.ZodOptional<z.ZodBoolean>;
|
||||
payment: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
payment?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
@@ -55,15 +59,17 @@ export declare const ClaimFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
payment?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
@@ -89,7 +95,7 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.ClaimWhereInput | undefined;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -98,7 +104,7 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ClaimWhereInput | undefined;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -107,6 +113,6 @@ export declare const ClaimFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowClaim.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstOrThrowClaim.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA0BnB,CAAC;AAE1D,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BpC,CAAC;AAEd,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAikB,CAAC;AAEtpB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsgB,CAAC"}
|
||||
{"version":3,"file":"findFirstOrThrowClaim.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaim.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,CA4BnB,CAAC;AAE1D,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4BpC,CAAC;AAEd,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,CAAikB,CAAC;AAEtpB,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsgB,CAAC"}
|
||||
@@ -60,10 +60,12 @@ exports.ClaimFindFirstOrThrowSelectSchema = z.object({
|
||||
updatedAt: z.boolean().optional(),
|
||||
status: z.boolean().optional(),
|
||||
claimNumber: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
patient: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
staff: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional(),
|
||||
serviceLines: z.boolean().optional(),
|
||||
claimFiles: z.boolean().optional(),
|
||||
payment: z.boolean().optional(),
|
||||
@@ -87,10 +89,12 @@ exports.ClaimFindFirstOrThrowSelectZodSchema = z.object({
|
||||
updatedAt: z.boolean().optional(),
|
||||
status: z.boolean().optional(),
|
||||
claimNumber: z.boolean().optional(),
|
||||
npiProviderId: z.boolean().optional(),
|
||||
patient: z.boolean().optional(),
|
||||
appointment: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
staff: z.boolean().optional(),
|
||||
npiProvider: z.boolean().optional(),
|
||||
serviceLines: z.boolean().optional(),
|
||||
claimFiles: z.boolean().optional(),
|
||||
payment: z.boolean().optional(),
|
||||
|
||||
@@ -6,17 +6,20 @@ export declare const ClaimFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
claimId: z.ZodOptional<z.ZodBoolean>;
|
||||
filename: z.ZodOptional<z.ZodBoolean>;
|
||||
mimeType: z.ZodOptional<z.ZodBoolean>;
|
||||
filePath: z.ZodOptional<z.ZodBoolean>;
|
||||
claim: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
}>;
|
||||
@@ -29,7 +32,7 @@ export declare const ClaimFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimFileWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimFileWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "filename", "mimeType", "filePath"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.ClaimFileWhereInput | undefined;
|
||||
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -38,7 +41,7 @@ export declare const ClaimFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
|
||||
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ClaimFileWhereInput | undefined;
|
||||
include?: Prisma.ClaimFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -47,6 +50,6 @@ export declare const ClaimFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "mimeType" | "claimId" | ("id" | "filename" | "mimeType" | "claimId")[] | undefined;
|
||||
distinct?: "filename" | "id" | "mimeType" | "filePath" | "claimId" | ("filename" | "id" | "mimeType" | "filePath" | "claimId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowClaimFile.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstOrThrowClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAMvB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;EAMxC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}
|
||||
{"version":3,"file":"findFirstOrThrowClaimFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowClaimFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAOvB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;EAOxC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}
|
||||
@@ -47,6 +47,7 @@ exports.ClaimFileFindFirstOrThrowSelectSchema = z.object({
|
||||
claimId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
claim: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.ClaimFileFindFirstOrThrowSelectZodSchema = z.object({
|
||||
@@ -54,6 +55,7 @@ exports.ClaimFileFindFirstOrThrowSelectZodSchema = z.object({
|
||||
claimId: z.boolean().optional(),
|
||||
filename: z.boolean().optional(),
|
||||
mimeType: z.boolean().optional(),
|
||||
filePath: z.boolean().optional(),
|
||||
claim: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.ClaimFileFindFirstOrThrowSchema = z.object({ select: exports.ClaimFileFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => ClaimFileInclude_schema_1.ClaimFileIncludeObjectSchema.optional()), orderBy: z.union([ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema, ClaimFileOrderByWithRelationInput_schema_1.ClaimFileOrderByWithRelationInputObjectSchema.array()]).optional(), where: ClaimFileWhereInput_schema_1.ClaimFileWhereInputObjectSchema.optional(), cursor: ClaimFileWhereUniqueInput_schema_1.ClaimFileWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema, ClaimFileScalarFieldEnum_schema_1.ClaimFileScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
@@ -10,6 +10,7 @@ export declare const CloudFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
folderId: z.ZodOptional<z.ZodBoolean>;
|
||||
isComplete: z.ZodOptional<z.ZodBoolean>;
|
||||
totalChunks: z.ZodOptional<z.ZodBoolean>;
|
||||
diskPath: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -17,31 +18,33 @@ export declare const CloudFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
chunks: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
isComplete?: boolean | undefined;
|
||||
totalChunks?: boolean | undefined;
|
||||
diskPath?: boolean | undefined;
|
||||
chunks?: boolean | undefined;
|
||||
folderId?: boolean | undefined;
|
||||
folder?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
isComplete?: boolean | undefined;
|
||||
totalChunks?: boolean | undefined;
|
||||
diskPath?: boolean | undefined;
|
||||
chunks?: boolean | undefined;
|
||||
folderId?: boolean | undefined;
|
||||
folder?: boolean | undefined;
|
||||
@@ -56,7 +59,7 @@ export declare const CloudFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.CloudFileWhereUniqueInput, z.ZodTypeDef, Prisma.CloudFileWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "userId", "name", "mimeType", "fileSize", "folderId", "isComplete", "totalChunks", "diskPath", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.CloudFileWhereInput | undefined;
|
||||
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -65,7 +68,7 @@ export declare const CloudFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFileWhereInput | undefined;
|
||||
include?: Prisma.CloudFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -74,6 +77,6 @@ export declare const CloudFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId" | ("createdAt" | "id" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "folderId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId" | ("id" | "createdAt" | "userId" | "name" | "mimeType" | "updatedAt" | "fileSize" | "isComplete" | "totalChunks" | "diskPath" | "folderId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowCloudFile.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstOrThrowCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAevB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAexC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}
|
||||
{"version":3,"file":"findFirstOrThrowCloudFile.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowCloudFile.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,eAAe,CAgBvB,CAAC;AAE9D,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBxC,CAAC;AAEd,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,CAAqmB,CAAC;AAElsB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsiB,CAAC"}
|
||||
@@ -51,6 +51,7 @@ exports.CloudFileFindFirstOrThrowSelectSchema = z.object({
|
||||
folderId: z.boolean().optional(),
|
||||
isComplete: z.boolean().optional(),
|
||||
totalChunks: z.boolean().optional(),
|
||||
diskPath: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
updatedAt: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
@@ -67,6 +68,7 @@ exports.CloudFileFindFirstOrThrowSelectZodSchema = z.object({
|
||||
folderId: z.boolean().optional(),
|
||||
isComplete: z.boolean().optional(),
|
||||
totalChunks: z.boolean().optional(),
|
||||
diskPath: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
updatedAt: z.boolean().optional(),
|
||||
user: z.boolean().optional(),
|
||||
|
||||
@@ -9,16 +9,16 @@ export declare const CloudFileChunkFindFirstOrThrowSelectZodSchema: z.ZodObject<
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
file: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
data?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
seq?: boolean | undefined;
|
||||
fileId?: boolean | undefined;
|
||||
file?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
data?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
seq?: boolean | undefined;
|
||||
fileId?: boolean | undefined;
|
||||
file?: boolean | undefined;
|
||||
@@ -41,7 +41,7 @@ export declare const CloudFileChunkFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
|
||||
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFileChunkWhereInput | undefined;
|
||||
include?: Prisma.CloudFileChunkInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +50,6 @@ export declare const CloudFileChunkFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFileChunkWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "data" | "seq" | "fileId" | ("createdAt" | "id" | "data" | "seq" | "fileId")[] | undefined;
|
||||
distinct?: "id" | "data" | "createdAt" | "seq" | "fileId" | ("id" | "data" | "createdAt" | "seq" | "fileId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowCloudFileChunk.schema.d.ts.map
|
||||
@@ -14,10 +14,10 @@ export declare const CloudFolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
children?: boolean | undefined;
|
||||
@@ -26,10 +26,10 @@ export declare const CloudFolderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
parent?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
children?: boolean | undefined;
|
||||
@@ -56,7 +56,7 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CloudFolderWhereInput | undefined;
|
||||
include?: Prisma.CloudFolderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -65,6 +65,6 @@ export declare const CloudFolderFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CloudFolderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId" | ("createdAt" | "id" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId" | ("id" | "createdAt" | "userId" | "name" | "updatedAt" | "parentId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowCloudFolder.schema.d.ts.map
|
||||
@@ -16,12 +16,12 @@ export declare const CommunicationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
channel?: boolean | undefined;
|
||||
direction?: boolean | undefined;
|
||||
body?: boolean | undefined;
|
||||
@@ -29,12 +29,12 @@ export declare const CommunicationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
twilioSid?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
channel?: boolean | undefined;
|
||||
direction?: boolean | undefined;
|
||||
body?: boolean | undefined;
|
||||
@@ -59,7 +59,7 @@ export declare const CommunicationFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.CommunicationWhereInput | undefined;
|
||||
include?: Prisma.CommunicationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -68,6 +68,6 @@ export declare const CommunicationFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.CommunicationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid" | ("status" | "id" | "createdAt" | "patientId" | "userId" | "channel" | "direction" | "body" | "callDuration" | "twilioSid")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowCommunication.schema.d.ts.map
|
||||
@@ -7,15 +7,15 @@ export declare const DatabaseBackupFindFirstOrThrowSelectZodSchema: z.ZodObject<
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
}>;
|
||||
export declare const DatabaseBackupFindFirstOrThrowSchema: z.ZodType<Prisma.DatabaseBackupFindFirstOrThrowArgs>;
|
||||
export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
@@ -35,7 +35,7 @@ export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.DatabaseBackupWhereInput | undefined;
|
||||
include?: Prisma.DatabaseBackupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -44,6 +44,6 @@ export declare const DatabaseBackupFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.DatabaseBackupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | ("createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | ("id" | "createdAt" | "userId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowDatabaseBackup.schema.d.ts.map
|
||||
@@ -10,15 +10,15 @@ export declare const InsuranceCredentialFindFirstOrThrowSelectZodSchema: z.ZodOb
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
siteKey?: boolean | undefined;
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
siteKey?: boolean | undefined;
|
||||
username?: boolean | undefined;
|
||||
password?: boolean | undefined;
|
||||
|
||||
@@ -12,18 +12,18 @@ export declare const NotificationFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
message?: boolean | undefined;
|
||||
type?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
read?: boolean | undefined;
|
||||
}, {
|
||||
message?: boolean | undefined;
|
||||
type?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
read?: boolean | undefined;
|
||||
}>;
|
||||
export declare const NotificationFindFirstOrThrowSchema: z.ZodType<Prisma.NotificationFindFirstOrThrowArgs>;
|
||||
@@ -44,7 +44,7 @@ export declare const NotificationFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
|
||||
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.NotificationWhereInput | undefined;
|
||||
include?: Prisma.NotificationInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -53,6 +53,6 @@ export declare const NotificationFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NotificationWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "message" | "type" | "createdAt" | "id" | "userId" | "read" | ("message" | "type" | "createdAt" | "id" | "userId" | "read")[] | undefined;
|
||||
distinct?: "message" | "type" | "id" | "createdAt" | "userId" | "read" | ("message" | "type" | "id" | "createdAt" | "userId" | "read")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowNotification.schema.d.ts.map
|
||||
@@ -8,20 +8,29 @@ export declare const NpiProviderFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
providerName: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
claims: z.ZodOptional<z.ZodBoolean>;
|
||||
appointmentProcedures: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
npiNumber?: boolean | undefined;
|
||||
providerName?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
appointmentProcedures?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
npiNumber?: boolean | undefined;
|
||||
providerName?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
appointmentProcedures?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}>;
|
||||
export declare const NpiProviderFindFirstOrThrowSchema: z.ZodType<Prisma.NpiProviderFindFirstOrThrowArgs>;
|
||||
export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
@@ -41,7 +50,7 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.NpiProviderWhereInput | undefined;
|
||||
include?: Prisma.NpiProviderInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +59,6 @@ export declare const NpiProviderFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.NpiProviderWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "npiNumber" | "providerName" | "createdAt" | "id" | "userId" | ("npiNumber" | "providerName" | "createdAt" | "id" | "userId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "npiNumber" | "providerName" | ("id" | "createdAt" | "userId" | "npiNumber" | "providerName")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowNpiProvider.schema.d.ts.map
|
||||
@@ -1 +1 @@
|
||||
{"version":3,"file":"findFirstOrThrowNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAOzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"}
|
||||
{"version":3,"file":"findFirstOrThrowNpiProvider.schema.d.ts","sourceRoot":"","sources":["findFirstOrThrowNpiProvider.schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAUzB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAUzB,CAAC;AAEhE,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU1C,CAAC;AAEd,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,CAAunB,CAAC;AAExtB,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsjB,CAAC"}
|
||||
@@ -48,7 +48,10 @@ exports.NpiProviderFindFirstOrThrowSelectSchema = z.object({
|
||||
npiNumber: z.boolean().optional(),
|
||||
providerName: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
user: z.boolean().optional()
|
||||
user: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
appointmentProcedures: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.NpiProviderFindFirstOrThrowSelectZodSchema = z.object({
|
||||
id: z.boolean().optional(),
|
||||
@@ -56,7 +59,10 @@ exports.NpiProviderFindFirstOrThrowSelectZodSchema = z.object({
|
||||
npiNumber: z.boolean().optional(),
|
||||
providerName: z.boolean().optional(),
|
||||
createdAt: z.boolean().optional(),
|
||||
user: z.boolean().optional()
|
||||
user: z.boolean().optional(),
|
||||
claims: z.boolean().optional(),
|
||||
appointmentProcedures: z.boolean().optional(),
|
||||
_count: z.boolean().optional()
|
||||
}).strict();
|
||||
exports.NpiProviderFindFirstOrThrowSchema = z.object({ select: exports.NpiProviderFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
exports.NpiProviderFindFirstOrThrowZodSchema = z.object({ select: exports.NpiProviderFindFirstOrThrowSelectSchema.optional(), include: z.lazy(() => NpiProviderInclude_schema_1.NpiProviderIncludeObjectSchema.optional()), orderBy: z.union([NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema, NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema.array()]).optional(), where: NpiProviderWhereInput_schema_1.NpiProviderWhereInputObjectSchema.optional(), cursor: NpiProviderWhereUniqueInput_schema_1.NpiProviderWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema, NpiProviderScalarFieldEnum_schema_1.NpiProviderScalarFieldEnumSchema.array()]).optional() }).strict();
|
||||
|
||||
@@ -32,11 +32,11 @@ export declare const PatientFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
email?: boolean | undefined;
|
||||
phone?: boolean | undefined;
|
||||
@@ -61,11 +61,11 @@ export declare const PatientFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
email?: boolean | undefined;
|
||||
phone?: boolean | undefined;
|
||||
@@ -107,7 +107,7 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PatientWhereInput | undefined;
|
||||
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -116,6 +116,6 @@ export declare const PatientFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowPatient.schema.d.ts.map
|
||||
@@ -13,27 +13,27 @@ export declare const PatientDocumentFindFirstOrThrowSelectZodSchema: z.ZodObject
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
originalName?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
originalName?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
}>;
|
||||
export declare const PatientDocumentFindFirstOrThrowSchema: z.ZodType<Prisma.PatientDocumentFindFirstOrThrowArgs>;
|
||||
export declare const PatientDocumentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
@@ -53,7 +53,7 @@ export declare const PatientDocumentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
|
||||
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PatientDocumentWhereInput | undefined;
|
||||
include?: Prisma.PatientDocumentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -62,6 +62,6 @@ export declare const PatientDocumentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
|
||||
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowPatientDocument.schema.d.ts.map
|
||||
@@ -24,12 +24,12 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
@@ -45,12 +45,12 @@ export declare const PaymentFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
@@ -83,7 +83,7 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PaymentWhereInput | undefined;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -92,6 +92,6 @@ export declare const PaymentFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowPayment.schema.d.ts.map
|
||||
@@ -9,17 +9,17 @@ export declare const PdfFileFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
groupId: z.ZodOptional<z.ZodBoolean>;
|
||||
group: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
pdfData?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
groupId?: boolean | undefined;
|
||||
group?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
pdfData?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
groupId?: boolean | undefined;
|
||||
group?: boolean | undefined;
|
||||
}>;
|
||||
@@ -41,7 +41,7 @@ export declare const PdfFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
|
||||
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PdfFileWhereInput | undefined;
|
||||
include?: Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +50,6 @@ export declare const PdfFileFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
|
||||
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowPdfFile.schema.d.ts.map
|
||||
@@ -11,19 +11,19 @@ export declare const PdfGroupFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
pdfs: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
titleKey?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
pdfs?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
titleKey?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
pdfs?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
@@ -47,7 +47,7 @@ export declare const PdfGroupFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
|
||||
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PdfGroupWhereInput | undefined;
|
||||
include?: Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -56,6 +56,6 @@ export declare const PdfGroupFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
|
||||
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowPdfGroup.schema.d.ts.map
|
||||
@@ -16,8 +16,8 @@ export declare const ServiceLineTransactionFindFirstOrThrowSelectZodSchema: z.Zo
|
||||
payment: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLine: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
transactionId?: boolean | undefined;
|
||||
@@ -30,8 +30,8 @@ export declare const ServiceLineTransactionFindFirstOrThrowSelectZodSchema: z.Zo
|
||||
payment?: boolean | undefined;
|
||||
serviceLine?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
transactionId?: boolean | undefined;
|
||||
@@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindFirstOrThrowZodSchema: z.ZodObjec
|
||||
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ServiceLineTransactionWhereInput | undefined;
|
||||
include?: Prisma.ServiceLineTransactionInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindFirstOrThrowZodSchema: z.ZodObjec
|
||||
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowServiceLineTransaction.schema.d.ts.map
|
||||
@@ -14,10 +14,10 @@ export declare const StaffFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
claims: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
email?: boolean | undefined;
|
||||
@@ -26,10 +26,10 @@ export declare const StaffFindFirstOrThrowSelectZodSchema: z.ZodObject<{
|
||||
appointments?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
name?: boolean | undefined;
|
||||
email?: boolean | undefined;
|
||||
@@ -56,7 +56,7 @@ export declare const StaffFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.StaffWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone" | ("createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone" | ("id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.StaffWhereInput | undefined;
|
||||
include?: Prisma.StaffInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -65,6 +65,6 @@ export declare const StaffFindFirstOrThrowZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.StaffWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone" | ("createdAt" | "id" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone" | ("id" | "createdAt" | "userId" | "name" | "email" | "role" | "phone")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstOrThrowStaff.schema.d.ts.map
|
||||
@@ -32,11 +32,11 @@ export declare const PatientFindFirstSelectZodSchema: z.ZodObject<{
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
email?: boolean | undefined;
|
||||
phone?: boolean | undefined;
|
||||
@@ -61,11 +61,11 @@ export declare const PatientFindFirstSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
procedures?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claims?: boolean | undefined;
|
||||
email?: boolean | undefined;
|
||||
phone?: boolean | undefined;
|
||||
@@ -107,7 +107,7 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PatientWhereInput | undefined;
|
||||
include?: Prisma.PatientInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -116,6 +116,6 @@ export declare const PatientFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "createdAt" | "id" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions" | ("status" | "id" | "createdAt" | "userId" | "email" | "phone" | "dateOfBirth" | "insuranceProvider" | "firstName" | "lastName" | "gender" | "address" | "city" | "zipCode" | "insuranceId" | "groupNumber" | "policyHolder" | "allergies" | "medicalConditions")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstPatient.schema.d.ts.map
|
||||
@@ -13,27 +13,27 @@ export declare const PatientDocumentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
originalName?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
mimeType?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
originalName?: boolean | undefined;
|
||||
fileSize?: boolean | undefined;
|
||||
filePath?: boolean | undefined;
|
||||
}>;
|
||||
export declare const PatientDocumentFindFirstSchema: z.ZodType<Prisma.PatientDocumentFindFirstArgs>;
|
||||
export declare const PatientDocumentFindFirstZodSchema: z.ZodObject<{
|
||||
@@ -53,7 +53,7 @@ export declare const PatientDocumentFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
|
||||
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PatientDocumentWhereInput | undefined;
|
||||
include?: Prisma.PatientDocumentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -62,6 +62,6 @@ export declare const PatientDocumentFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PatientDocumentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath" | ("id" | "filename" | "uploadedAt" | "patientId" | "mimeType" | "updatedAt" | "originalName" | "fileSize" | "filePath")[] | undefined;
|
||||
distinct?: "filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize" | ("filename" | "uploadedAt" | "id" | "patientId" | "mimeType" | "filePath" | "updatedAt" | "originalName" | "fileSize")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstPatientDocument.schema.d.ts.map
|
||||
@@ -24,12 +24,12 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
@@ -45,12 +45,12 @@ export declare const PaymentFindFirstSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
@@ -83,7 +83,7 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PaymentWhereInput | undefined;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -92,6 +92,6 @@ export declare const PaymentFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "id" | "createdAt" | "patientId" | "notes" | "userId" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstPayment.schema.d.ts.map
|
||||
@@ -9,17 +9,17 @@ export declare const PdfFileFindFirstSelectZodSchema: z.ZodObject<{
|
||||
groupId: z.ZodOptional<z.ZodBoolean>;
|
||||
group: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
pdfData?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
groupId?: boolean | undefined;
|
||||
group?: boolean | undefined;
|
||||
}, {
|
||||
id?: boolean | undefined;
|
||||
filename?: boolean | undefined;
|
||||
pdfData?: boolean | undefined;
|
||||
uploadedAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
groupId?: boolean | undefined;
|
||||
group?: boolean | undefined;
|
||||
}>;
|
||||
@@ -41,7 +41,7 @@ export declare const PdfFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
|
||||
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PdfFileWhereInput | undefined;
|
||||
include?: Prisma.PdfFileInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -50,6 +50,6 @@ export declare const PdfFileFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfFileWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "id" | "filename" | "pdfData" | "uploadedAt" | "groupId" | ("id" | "filename" | "pdfData" | "uploadedAt" | "groupId")[] | undefined;
|
||||
distinct?: "filename" | "pdfData" | "uploadedAt" | "id" | "groupId" | ("filename" | "pdfData" | "uploadedAt" | "id" | "groupId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstPdfFile.schema.d.ts.map
|
||||
@@ -11,19 +11,19 @@ export declare const PdfGroupFindFirstSelectZodSchema: z.ZodObject<{
|
||||
pdfs: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
titleKey?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
pdfs?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
title?: boolean | undefined;
|
||||
titleKey?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
pdfs?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
@@ -47,7 +47,7 @@ export declare const PdfGroupFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
|
||||
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PdfGroupWhereInput | undefined;
|
||||
include?: Prisma.PdfGroupInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -56,6 +56,6 @@ export declare const PdfGroupFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.PdfGroupWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "title" | "titleKey" | "patientId" | ("createdAt" | "id" | "title" | "titleKey" | "patientId")[] | undefined;
|
||||
distinct?: "id" | "title" | "titleKey" | "createdAt" | "patientId" | ("id" | "title" | "titleKey" | "createdAt" | "patientId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstPdfGroup.schema.d.ts.map
|
||||
@@ -16,8 +16,8 @@ export declare const ServiceLineTransactionFindFirstSelectZodSchema: z.ZodObject
|
||||
payment: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLine: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
transactionId?: boolean | undefined;
|
||||
@@ -30,8 +30,8 @@ export declare const ServiceLineTransactionFindFirstSelectZodSchema: z.ZodObject
|
||||
payment?: boolean | undefined;
|
||||
serviceLine?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
transactionId?: boolean | undefined;
|
||||
@@ -62,7 +62,7 @@ export declare const ServiceLineTransactionFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ServiceLineTransactionWhereInput | undefined;
|
||||
include?: Prisma.ServiceLineTransactionInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -71,6 +71,6 @@ export declare const ServiceLineTransactionFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ServiceLineTransactionWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("createdAt" | "id" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId" | ("id" | "createdAt" | "notes" | "paymentId" | "transactionId" | "paidAmount" | "adjustedAmount" | "method" | "receivedDate" | "payerName" | "serviceLineId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstServiceLineTransaction.schema.d.ts.map
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user