@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-874be1e2e1af73fa5800f45b03133efc51e5d04f69f87d199d6dac840416fc7b",
2
+ "name": "prisma-client-ce639294be7c246f52acde8a205db5d566b40492007d0e0d7c3df104ae9e6482",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
- calComBookingId Int
290
- calComBookingUid String
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
 
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.16.2-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.16.3-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {