fix: fix remote browser socket connection and related updates
This commit is contained in:
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
|
||||
|
||||
Reference in New Issue
Block a user