@a_team/prisma 3.16.2-macos-docker-linux → 3.16.3-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +149 -137
- package/dist/client/index.js +6 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +6 -2
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -286,8 +286,11 @@ model ClientInterview {
|
|
|
286
286
|
builderId String @db.ObjectId
|
|
287
287
|
builder User @relation("builderInterviews", fields: [builderId], references: [id])
|
|
288
288
|
interviewRoleDescription String?
|
|
289
|
-
|
|
290
|
-
|
|
289
|
+
/// @deprecated Use `calendarEventId` moving forward
|
|
290
|
+
calComBookingId Int?
|
|
291
|
+
/// @deprecated Use `calendarEventId` moving forward
|
|
292
|
+
calComBookingUid String?
|
|
293
|
+
/// @deprecated Use `calendarEventId` moving forward
|
|
291
294
|
calComDailyMeetingId String?
|
|
292
295
|
startDate DateTime
|
|
293
296
|
endDate DateTime
|
|
@@ -307,6 +310,7 @@ model ClientInterview {
|
|
|
307
310
|
proposal Proposal? @relation(fields: [proposalId], references: [id])
|
|
308
311
|
feedback ClientInterviewFeedback?
|
|
309
312
|
rescheduledBy ClientInterviewRescheduledByData?
|
|
313
|
+
/// Make this required once Interview Scheduler is GA
|
|
310
314
|
calendarEventId String? @unique @db.ObjectId
|
|
311
315
|
calendarEvent CalendarEvent? @relation(fields: [calendarEventId], references: [id])
|
|
312
316
|
|