@a_team/prisma 3.13.3-macos-docker-linux → 3.13.4-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-1918b3f9e53d4900ed85059bda9687b6cbd146a777e4f866942cf63ad515d77e",
2
+ "name": "prisma-client-4948d9a6edd1e3adeca8ba362c2709edd93949a37df753f99186070326ec7d97",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -164,31 +164,31 @@ type VideoCallData {
164
164
  }
165
165
 
166
166
  model CalendarEvent {
167
- id String @id @default(auto()) @map("_id") @db.ObjectId
168
- calendarEventId String? // events with no auto confirmation won't initially have the event id.
169
- eventTypeId String @db.ObjectId
170
- eventType CalendarEventType @relation(fields: [eventTypeId], references: [id], name: "eventType")
171
- eventOwnerId String @db.ObjectId
172
- eventOwner User @relation(fields: [eventOwnerId], references: [id], name: "eventOwner")
173
- calendarId String @db.ObjectId
174
- calendar Calendar @relation(fields: [calendarId], references: [id], name: "calendar")
175
- title String?
176
- description String?
177
- startTime String
178
- endTime String
179
- status EventStatus
180
- attendees Attendee[]
181
- metadata EventMetadata?
182
- videoCallData VideoCallData?
183
- cancellationReason String?
184
- rescheduledByEmail String?
185
- reschedulingUser User? @relation(fields: [rescheduledByEmail], references: [email], name: "reschedulingUser")
186
- rescheduleReason String?
187
- rescheduleStartTime String?
188
- rescheduleEndTime String?
189
- createdAt DateTime
190
- updatedAt DateTime
191
- clientInterview ClientInterview?
167
+ id String @id @default(auto()) @map("_id") @db.ObjectId
168
+ calendarEventId String? // events with no auto confirmation won't initially have the event id.
169
+ eventTypeId String @db.ObjectId
170
+ eventType CalendarEventType @relation(fields: [eventTypeId], references: [id], name: "eventType")
171
+ eventOwnerId String @db.ObjectId
172
+ eventOwner User @relation(fields: [eventOwnerId], references: [id], name: "eventOwner")
173
+ calendarId String @db.ObjectId
174
+ calendar Calendar @relation(fields: [calendarId], references: [id], name: "calendar")
175
+ title String?
176
+ description String?
177
+ startTime String
178
+ endTime String
179
+ status EventStatus
180
+ attendees Attendee[]
181
+ metadata EventMetadata?
182
+ videoCallData VideoCallData?
183
+ cancellationReason String?
184
+ rescheduledByEmail String?
185
+ reschedulingUser User? @relation(fields: [rescheduledByEmail], references: [email], name: "reschedulingUser")
186
+ rescheduleReason String?
187
+ originalStartTime String?
188
+ originalEndTime String?
189
+ createdAt DateTime
190
+ updatedAt DateTime
191
+ clientInterview ClientInterview?
192
192
 
193
193
  @@index([eventOwnerId])
194
194
  @@index([calendarId])
@@ -168,8 +168,8 @@ exports.Prisma.CalendarEventScalarFieldEnum = {
168
168
  cancellationReason: 'cancellationReason',
169
169
  rescheduledByEmail: 'rescheduledByEmail',
170
170
  rescheduleReason: 'rescheduleReason',
171
- rescheduleStartTime: 'rescheduleStartTime',
172
- rescheduleEndTime: 'rescheduleEndTime',
171
+ originalStartTime: 'originalStartTime',
172
+ originalEndTime: 'originalEndTime',
173
173
  createdAt: 'createdAt',
174
174
  updatedAt: 'updatedAt'
175
175
  };
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.13.3-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.13.4-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {