@a_team/prisma 2.1.4 → 2.1.6
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 +24 -6
- package/dist/client/index-browser.js +19 -1
- package/dist/client/index.d.ts +2011 -143
- package/dist/client/index.js +24 -6
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +29 -9
- package/dist/client/wasm.js +19 -1
- package/package.json +1 -1
|
@@ -197,7 +197,10 @@ exports.Prisma.MissionScalarFieldEnum = {
|
|
|
197
197
|
title: 'title',
|
|
198
198
|
updatedAt: 'updatedAt',
|
|
199
199
|
videoURL: 'videoURL',
|
|
200
|
-
website: 'website'
|
|
200
|
+
website: 'website',
|
|
201
|
+
startDate: 'startDate',
|
|
202
|
+
overlapMinutes: 'overlapMinutes',
|
|
203
|
+
timezone: 'timezone'
|
|
201
204
|
};
|
|
202
205
|
|
|
203
206
|
exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
@@ -224,6 +227,20 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
|
224
227
|
workingHoursNumberOfMinutesOverlap: 'workingHoursNumberOfMinutesOverlap'
|
|
225
228
|
};
|
|
226
229
|
|
|
230
|
+
exports.Prisma.MissionSpecPreFillScalarFieldEnum = {
|
|
231
|
+
id: 'id',
|
|
232
|
+
userId: 'userId',
|
|
233
|
+
missionName: 'missionName',
|
|
234
|
+
plannedStart: 'plannedStart',
|
|
235
|
+
companyDescription: 'companyDescription',
|
|
236
|
+
missionDescription: 'missionDescription',
|
|
237
|
+
timezone: 'timezone',
|
|
238
|
+
openRoles: 'openRoles',
|
|
239
|
+
status: 'status',
|
|
240
|
+
createdAt: 'createdAt',
|
|
241
|
+
updatedAt: 'updatedAt'
|
|
242
|
+
};
|
|
243
|
+
|
|
227
244
|
exports.Prisma.RoleCategoryScalarFieldEnum = {
|
|
228
245
|
id: 'id',
|
|
229
246
|
anchors: 'anchors',
|
|
@@ -314,6 +331,7 @@ exports.Prisma.ModelName = {
|
|
|
314
331
|
Contract: 'Contract',
|
|
315
332
|
Mission: 'Mission',
|
|
316
333
|
MissionSpec: 'MissionSpec',
|
|
334
|
+
MissionSpecPreFill: 'MissionSpecPreFill',
|
|
317
335
|
RoleCategory: 'RoleCategory',
|
|
318
336
|
TalentCategory: 'TalentCategory',
|
|
319
337
|
TalentIndustry: 'TalentIndustry',
|