@a_team/prisma 3.10.1-win → 3.11.0-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.
@@ -133,6 +133,59 @@ exports.Prisma.BillingAccountScalarFieldEnum = {
133
133
  updatedAt: 'updatedAt'
134
134
  };
135
135
 
136
+ exports.Prisma.CalendarScalarFieldEnum = {
137
+ id: 'id',
138
+ calendarId: 'calendarId',
139
+ provider: 'provider',
140
+ userId: 'userId',
141
+ createdAt: 'createdAt',
142
+ updatedAt: 'updatedAt'
143
+ };
144
+
145
+ exports.Prisma.CalendarAvailabilityScalarFieldEnum = {
146
+ id: 'id',
147
+ userId: 'userId',
148
+ days: 'days',
149
+ date: 'date',
150
+ startTime: 'startTime',
151
+ endTime: 'endTime',
152
+ eventTypeId: 'eventTypeId',
153
+ createdAt: 'createdAt',
154
+ updatedAt: 'updatedAt'
155
+ };
156
+
157
+ exports.Prisma.CalendarEventScalarFieldEnum = {
158
+ id: 'id',
159
+ calendarEventId: 'calendarEventId',
160
+ userId: 'userId',
161
+ calendarId: 'calendarId',
162
+ eventTypeId: 'eventTypeId',
163
+ rescheduledBy: 'rescheduledBy',
164
+ status: 'status',
165
+ startTime: 'startTime',
166
+ endTime: 'endTime',
167
+ callUrl: 'callUrl',
168
+ callId: 'callId',
169
+ clientRecordingOptOut: 'clientRecordingOptOut',
170
+ cancellationReason: 'cancellationReason',
171
+ createdAt: 'createdAt',
172
+ updatedAt: 'updatedAt'
173
+ };
174
+
175
+ exports.Prisma.CalendarEventTypeScalarFieldEnum = {
176
+ id: 'id',
177
+ type: 'type',
178
+ minimumBookingNotice: 'minimumBookingNotice',
179
+ bookingTime: 'bookingTime',
180
+ reminders: 'reminders',
181
+ beforeEventBuffer: 'beforeEventBuffer',
182
+ afterEventBuffer: 'afterEventBuffer',
183
+ bookingWindow: 'bookingWindow',
184
+ autoConfirm: 'autoConfirm',
185
+ createdAt: 'createdAt',
186
+ updatedAt: 'updatedAt'
187
+ };
188
+
136
189
  exports.Prisma.ClientCompanyScalarFieldEnum = {
137
190
  id: 'id',
138
191
  createdAt: 'createdAt',
@@ -386,6 +439,13 @@ exports.Prisma.UserScalarFieldEnum = {
386
439
  websites: 'websites'
387
440
  };
388
441
 
442
+ exports.Prisma.UserPreferenceScalarFieldEnum = {
443
+ id: 'id',
444
+ userId: 'userId',
445
+ createdAt: 'createdAt',
446
+ updatedAt: 'updatedAt'
447
+ };
448
+
389
449
  exports.Prisma.UserReviewScalarFieldEnum = {
390
450
  id: 'id',
391
451
  status: 'status',
@@ -415,6 +475,27 @@ exports.Prisma.QueryMode = {
415
475
  default: 'default',
416
476
  insensitive: 'insensitive'
417
477
  };
478
+ exports.CalendarProvider = exports.$Enums.CalendarProvider = {
479
+ google: 'google',
480
+ apple: 'apple',
481
+ office365: 'office365'
482
+ };
483
+
484
+ exports.EventStatus = exports.$Enums.EventStatus = {
485
+ requested: 'requested',
486
+ created: 'created',
487
+ accepted: 'accepted',
488
+ rejected: 'rejected',
489
+ rescheduled: 'rescheduled',
490
+ deleted: 'deleted'
491
+ };
492
+
493
+ exports.EventType = exports.$Enums.EventType = {
494
+ discover_interview: 'discover_interview',
495
+ proposal_interview: 'proposal_interview',
496
+ evaluation: 'evaluation'
497
+ };
498
+
418
499
  exports.ContractStatus = exports.$Enums.ContractStatus = {
419
500
  Created: 'Created',
420
501
  Completed: 'Completed'
@@ -633,6 +714,10 @@ exports.MissionRoleVisibilityStatus = exports.$Enums.MissionRoleVisibilityStatus
633
714
  exports.Prisma.ModelName = {
634
715
  Account: 'Account',
635
716
  BillingAccount: 'BillingAccount',
717
+ Calendar: 'Calendar',
718
+ CalendarAvailability: 'CalendarAvailability',
719
+ CalendarEvent: 'CalendarEvent',
720
+ CalendarEventType: 'CalendarEventType',
636
721
  ClientCompany: 'ClientCompany',
637
722
  Company: 'Company',
638
723
  Contract: 'Contract',
@@ -648,6 +733,7 @@ exports.Prisma.ModelName = {
648
733
  TalentCategory: 'TalentCategory',
649
734
  TalentIndustry: 'TalentIndustry',
650
735
  User: 'User',
736
+ UserPreference: 'UserPreference',
651
737
  UserReview: 'UserReview'
652
738
  };
653
739