@a_team/prisma 3.12.9-win → 3.13.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-717937946930a34f598be78ab6a8cec9f7ae7492d4eefb8f047aa1c7105fb641",
2
+ "name": "prisma-client-2ded482b7a54b384d2f71d7dc12df87d5c8186c4a24150f7108cf2c00d0c605f",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -143,7 +143,7 @@ enum EventStatus {
143
143
  type Attendee {
144
144
  email String
145
145
  name String?
146
- timeZone String?
146
+ timezone String?
147
147
  }
148
148
 
149
149
  model CalendarEvent {
@@ -159,8 +159,8 @@ model CalendarEvent {
159
159
  rescheduledBy String? @db.ObjectId
160
160
  reschedulingUser User? @relation(fields: [rescheduledBy], references: [id], name: "reschedulingUser")
161
161
  status EventStatus
162
- startTime DateTime
163
- endTime DateTime
162
+ startTime String
163
+ endTime String
164
164
  summary String?
165
165
  description String?
166
166
  callUrl String? // URL of the daily.co or any video call provider
@@ -202,6 +202,7 @@ model CalendarEventType {
202
202
  createdAt DateTime
203
203
  updatedAt DateTime
204
204
  availabilities CalendarAvailability[] @relation("eventTypeAvailability")
205
+ description String?
205
206
 
206
207
  @@unique([type])
207
208
  @@index([autoConfirm])
@@ -185,7 +185,8 @@ exports.Prisma.CalendarEventTypeScalarFieldEnum = {
185
185
  bookingWindow: 'bookingWindow',
186
186
  autoConfirm: 'autoConfirm',
187
187
  createdAt: 'createdAt',
188
- updatedAt: 'updatedAt'
188
+ updatedAt: 'updatedAt',
189
+ description: 'description'
189
190
  };
190
191
 
191
192
  exports.Prisma.ClientCompanyScalarFieldEnum = {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.12.9-win",
3
+ "version": "3.13.0-linux",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],