fix: fix remote browser socket connection and related updates

This commit is contained in:
Gitead
2026-04-30 11:52:58 -04:00
parent 441cfcc8e3
commit d8f852741a
959 changed files with 13338 additions and 2208 deletions

File diff suppressed because one or more lines are too long

View File

@@ -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',

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -1,5 +1,5 @@
{
"name": "prisma-client-03b178e8b877a1598bedb0c5599737211871b1d3d6ccc3ed144f5a7924b0deb0",
"name": "prisma-client-5a1566e0d7b9ed84a3b9f5a3202c04d4a144585980b9909674457730d45add6e",
"main": "index.js",
"types": "index.d.ts",
"browser": "default.js",

View File

@@ -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