@a_team/prisma 3.31.3-macos-docker-linux → 3.31.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-48778c59c652d4f62b9c4584a063a6b9f85d2f19922920bbf55b91fa319c97e3",
2
+ "name": "prisma-client-eabd1a660432e4982fa8fbc6e069c40da746cac437c50f1920cef79a8ab817af",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -111,6 +111,20 @@ model BuilderWebsitesData {
111
111
  @@map("builderWebsitesData")
112
112
  }
113
113
 
114
+ model CalcomEvaluationConfig {
115
+ id String @id @default(auto()) @map("_id") @db.ObjectId
116
+ talentCategoryIds String[] @db.ObjectId
117
+ applyToAllRoleCategories Boolean @default(false)
118
+ roleCategoryIds String[] @db.ObjectId
119
+ eventTypeUrl String
120
+ isDefault Boolean @default(false)
121
+ createdAt DateTime @default(now())
122
+ updatedAt DateTime @updatedAt
123
+
124
+ @@index([isDefault])
125
+ @@map("calcomEvaluationConfig")
126
+ }
127
+
114
128
  type CalendarCredentials {
115
129
  scope String?
116
130
  id_token String?
@@ -145,6 +145,17 @@ exports.Prisma.BuilderWebsitesDataScalarFieldEnum = {
145
145
  updatedAt: 'updatedAt'
146
146
  };
147
147
 
148
+ exports.Prisma.CalcomEvaluationConfigScalarFieldEnum = {
149
+ id: 'id',
150
+ talentCategoryIds: 'talentCategoryIds',
151
+ applyToAllRoleCategories: 'applyToAllRoleCategories',
152
+ roleCategoryIds: 'roleCategoryIds',
153
+ eventTypeUrl: 'eventTypeUrl',
154
+ isDefault: 'isDefault',
155
+ createdAt: 'createdAt',
156
+ updatedAt: 'updatedAt'
157
+ };
158
+
148
159
  exports.Prisma.CalendarScalarFieldEnum = {
149
160
  id: 'id',
150
161
  calendarId: 'calendarId',
@@ -1184,6 +1195,7 @@ exports.Prisma.ModelName = {
1184
1195
  Account: 'Account',
1185
1196
  BillingAccount: 'BillingAccount',
1186
1197
  BuilderWebsitesData: 'BuilderWebsitesData',
1198
+ CalcomEvaluationConfig: 'CalcomEvaluationConfig',
1187
1199
  Calendar: 'Calendar',
1188
1200
  CalendarAvailability: 'CalendarAvailability',
1189
1201
  CalendarEvent: 'CalendarEvent',
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.31.3-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.31.4-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {