@a_team/prisma 2.1.5 → 2.1.7
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 +30 -3
- package/dist/client/index-browser.js +27 -0
- package/dist/client/index.d.ts +2014 -226
- package/dist/client/index.js +30 -3
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +43 -12
- package/dist/client/wasm.js +27 -0
- package/package.json +1 -1
|
@@ -227,6 +227,20 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
|
227
227
|
workingHoursNumberOfMinutesOverlap: 'workingHoursNumberOfMinutesOverlap'
|
|
228
228
|
};
|
|
229
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
|
+
|
|
230
244
|
exports.Prisma.RoleCategoryScalarFieldEnum = {
|
|
231
245
|
id: 'id',
|
|
232
246
|
anchors: 'anchors',
|
|
@@ -296,6 +310,18 @@ exports.ContractSource = exports.$Enums.ContractSource = {
|
|
|
296
310
|
ATeamGenerated: 'ATeamGenerated'
|
|
297
311
|
};
|
|
298
312
|
|
|
313
|
+
exports.MissionStatus = exports.$Enums.MissionStatus = {
|
|
314
|
+
Spec: 'Spec',
|
|
315
|
+
Formation: 'Formation',
|
|
316
|
+
Created: 'Created',
|
|
317
|
+
Published: 'Published',
|
|
318
|
+
Pending: 'Pending',
|
|
319
|
+
Running: 'Running',
|
|
320
|
+
ScheduledToEnd: 'ScheduledToEnd',
|
|
321
|
+
Ended: 'Ended',
|
|
322
|
+
Archived: 'Archived'
|
|
323
|
+
};
|
|
324
|
+
|
|
299
325
|
exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
|
|
300
326
|
spec: 'spec',
|
|
301
327
|
formation: 'formation',
|
|
@@ -317,6 +343,7 @@ exports.Prisma.ModelName = {
|
|
|
317
343
|
Contract: 'Contract',
|
|
318
344
|
Mission: 'Mission',
|
|
319
345
|
MissionSpec: 'MissionSpec',
|
|
346
|
+
MissionSpecPreFill: 'MissionSpecPreFill',
|
|
320
347
|
RoleCategory: 'RoleCategory',
|
|
321
348
|
TalentCategory: 'TalentCategory',
|
|
322
349
|
TalentIndustry: 'TalentIndustry',
|