@a_team/prisma 3.31.3-win → 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.
- package/dist/client/edge.js +16 -4
- package/dist/client/index-browser.js +12 -0
- package/dist/client/index.d.ts +1494 -292
- package/dist/client/index.js +18 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +14 -0
- package/dist/client/wasm.js +12 -0
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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?
|
package/dist/client/wasm.js
CHANGED
|
@@ -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',
|