@a_team/prisma 3.12.5-macos-docker-linux → 3.12.6-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 +36 -36
- 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 +1 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -147,7 +147,7 @@ type Attendee {
|
|
|
147
147
|
|
|
148
148
|
model CalendarEvent {
|
|
149
149
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
150
|
-
calendarEventId String
|
|
150
|
+
calendarEventId String? // events with no auto confirmation won't initially have the event id.
|
|
151
151
|
userId String @db.ObjectId
|
|
152
152
|
eventOwner User @relation(fields: [userId], references: [id], name: "eventOwner")
|
|
153
153
|
calendarId String @db.ObjectId
|