@a_team/prisma 3.22.1-win → 3.22.2-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 +6 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +28 -1
- package/dist/client/index.js +8 -7
- 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 +14 -13
- package/dist/client/wasm.js +2 -1
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1506,19 +1506,20 @@ type CallParticipant {
|
|
|
1506
1506
|
}
|
|
1507
1507
|
|
|
1508
1508
|
model RecordedCall {
|
|
1509
|
-
id
|
|
1510
|
-
callMeetingTitle
|
|
1511
|
-
callUrl
|
|
1512
|
-
startTime
|
|
1513
|
-
endTime
|
|
1514
|
-
s3TranscriptKey
|
|
1515
|
-
participants
|
|
1516
|
-
recordedByName
|
|
1517
|
-
recordedByEmail
|
|
1518
|
-
platformRecordedOn
|
|
1519
|
-
callCreatedAtTimestamp
|
|
1520
|
-
createdAt
|
|
1521
|
-
updatedAt
|
|
1509
|
+
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1510
|
+
callMeetingTitle String
|
|
1511
|
+
callUrl String
|
|
1512
|
+
startTime DateTime @db.Date
|
|
1513
|
+
endTime DateTime @db.Date
|
|
1514
|
+
s3TranscriptKey String
|
|
1515
|
+
participants CallParticipant[]
|
|
1516
|
+
recordedByName String
|
|
1517
|
+
recordedByEmail String
|
|
1518
|
+
platformRecordedOn PlatformRecordedOn
|
|
1519
|
+
callCreatedAtTimestamp DateTime @db.Date
|
|
1520
|
+
createdAt DateTime @default(now()) @db.Date
|
|
1521
|
+
updatedAt DateTime @updatedAt @db.Date
|
|
1522
|
+
calendarEventVideoCallDataId String?
|
|
1522
1523
|
|
|
1523
1524
|
@@map("recordedCalls")
|
|
1524
1525
|
}
|
package/dist/client/wasm.js
CHANGED
|
@@ -503,7 +503,8 @@ exports.Prisma.RecordedCallScalarFieldEnum = {
|
|
|
503
503
|
platformRecordedOn: 'platformRecordedOn',
|
|
504
504
|
callCreatedAtTimestamp: 'callCreatedAtTimestamp',
|
|
505
505
|
createdAt: 'createdAt',
|
|
506
|
-
updatedAt: 'updatedAt'
|
|
506
|
+
updatedAt: 'updatedAt',
|
|
507
|
+
calendarEventVideoCallDataId: 'calendarEventVideoCallDataId'
|
|
507
508
|
};
|
|
508
509
|
|
|
509
510
|
exports.Prisma.RoleCategoryScalarFieldEnum = {
|