@a_team/prisma 3.31.0-win → 3.31.1-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 +5 -4
- package/dist/client/index-browser.js +1 -0
- package/dist/client/index.d.ts +68 -0
- package/dist/client/index.js +7 -6
- package/dist/client/{query_engine-windows.dll.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 +13 -11
- package/dist/client/wasm.js +1 -0
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -2367,23 +2367,25 @@ model VettingProcess {
|
|
|
2367
2367
|
isNewEvaluationProcess Boolean?
|
|
2368
2368
|
|
|
2369
2369
|
/// The CalCom meeting id (Daily room name) - used to link transcripts
|
|
2370
|
-
calComDailyMeetingId
|
|
2370
|
+
calComDailyMeetingId String?
|
|
2371
2371
|
/// Transcript job IDs from core-platform transcripts service
|
|
2372
|
-
transcriptJobIds
|
|
2372
|
+
transcriptJobIds String[]
|
|
2373
2373
|
/// Interview date
|
|
2374
|
-
interviewDate
|
|
2374
|
+
interviewDate DateTime? @db.Date
|
|
2375
2375
|
/// CalCom booking UID
|
|
2376
|
-
calComBookingUid
|
|
2376
|
+
calComBookingUid String?
|
|
2377
2377
|
/// CalCom booking ID
|
|
2378
|
-
calComBookingId
|
|
2378
|
+
calComBookingId Int?
|
|
2379
|
+
/// CalCom booking IDs history - used to keep all booking ids for the vetting process
|
|
2380
|
+
calComBookingUidsHistory String[]
|
|
2379
2381
|
/// Interview scheduler calendar event ID
|
|
2380
|
-
calendarEventId
|
|
2382
|
+
calendarEventId String? @db.ObjectId
|
|
2381
2383
|
/// Internal field for tracking data migrations applied to this record
|
|
2382
|
-
migrations
|
|
2383
|
-
createdAt
|
|
2384
|
-
updatedAt
|
|
2385
|
-
cancellationHistory
|
|
2386
|
-
noShowHistory
|
|
2384
|
+
migrations String[]
|
|
2385
|
+
createdAt DateTime? @default(now()) @db.Date
|
|
2386
|
+
updatedAt DateTime? @updatedAt @db.Date
|
|
2387
|
+
cancellationHistory VettingProcessCancellationHistory[]
|
|
2388
|
+
noShowHistory VettingProcessNoShowHistory[]
|
|
2387
2389
|
|
|
2388
2390
|
audits VettingProcessAudit[] @relation("vettingProcessAudits")
|
|
2389
2391
|
|
package/dist/client/wasm.js
CHANGED
|
@@ -718,6 +718,7 @@ exports.Prisma.VettingProcessScalarFieldEnum = {
|
|
|
718
718
|
interviewDate: 'interviewDate',
|
|
719
719
|
calComBookingUid: 'calComBookingUid',
|
|
720
720
|
calComBookingId: 'calComBookingId',
|
|
721
|
+
calComBookingUidsHistory: 'calComBookingUidsHistory',
|
|
721
722
|
calendarEventId: 'calendarEventId',
|
|
722
723
|
migrations: 'migrations',
|
|
723
724
|
createdAt: 'createdAt',
|