@a_team/prisma 3.13.0-macos-docker-linux → 3.13.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.
@@ -157,19 +157,19 @@ exports.Prisma.CalendarAvailabilityScalarFieldEnum = {
157
157
  exports.Prisma.CalendarEventScalarFieldEnum = {
158
158
  id: 'id',
159
159
  calendarEventId: 'calendarEventId',
160
- userId: 'userId',
161
- calendarId: 'calendarId',
162
160
  eventTypeId: 'eventTypeId',
163
- rescheduledBy: 'rescheduledBy',
164
- status: 'status',
161
+ eventOwnerId: 'eventOwnerId',
162
+ calendarId: 'calendarId',
163
+ title: 'title',
164
+ description: 'description',
165
165
  startTime: 'startTime',
166
166
  endTime: 'endTime',
167
- summary: 'summary',
168
- description: 'description',
169
- callUrl: 'callUrl',
170
- callId: 'callId',
171
- clientRecordingOptOut: 'clientRecordingOptOut',
167
+ status: 'status',
172
168
  cancellationReason: 'cancellationReason',
169
+ rescheduledBy: 'rescheduledBy',
170
+ rescheduleReason: 'rescheduleReason',
171
+ rescheduleStartTime: 'rescheduleStartTime',
172
+ rescheduleEndTime: 'rescheduleEndTime',
173
173
  createdAt: 'createdAt',
174
174
  updatedAt: 'updatedAt'
175
175
  };
@@ -177,6 +177,7 @@ exports.Prisma.CalendarEventScalarFieldEnum = {
177
177
  exports.Prisma.CalendarEventTypeScalarFieldEnum = {
178
178
  id: 'id',
179
179
  type: 'type',
180
+ title: 'title',
180
181
  minimumBookingNotice: 'minimumBookingNotice',
181
182
  bookingTime: 'bookingTime',
182
183
  reminders: 'reminders',
@@ -520,8 +521,6 @@ exports.EventStatus = exports.$Enums.EventStatus = {
520
521
  created: 'created',
521
522
  accepted: 'accepted',
522
523
  rejected: 'rejected',
523
- rescheduled: 'rescheduled',
524
- deleted: 'deleted',
525
524
  canceled: 'canceled'
526
525
  };
527
526