@a_team/prisma 3.6.2-win → 3.6.3-linux-debian

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.
@@ -285,6 +285,29 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
285
285
  workingHoursNumberOfMinutesOverlap: 'workingHoursNumberOfMinutesOverlap'
286
286
  };
287
287
 
288
+ exports.Prisma.ProposalScalarFieldEnum = {
289
+ id: 'id',
290
+ createdById: 'createdById',
291
+ missionId: 'missionId',
292
+ createdAt: 'createdAt',
293
+ updatedAt: 'updatedAt',
294
+ expiresAt: 'expiresAt',
295
+ clientName: 'clientName',
296
+ projectName: 'projectName',
297
+ webflowId: 'webflowId',
298
+ publicURL: 'publicURL',
299
+ isShared: 'isShared',
300
+ sharedById: 'sharedById',
301
+ sharedAt: 'sharedAt',
302
+ archivedURL: 'archivedURL',
303
+ schemaVersion: 'schemaVersion',
304
+ template: 'template',
305
+ version: 'version',
306
+ publicUntil: 'publicUntil',
307
+ missionSpecId: 'missionSpecId',
308
+ applications: 'applications'
309
+ };
310
+
288
311
  exports.Prisma.RoleCategoryScalarFieldEnum = {
289
312
  id: 'id',
290
313
  anchors: 'anchors',
@@ -398,6 +421,16 @@ exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
398
421
  published: 'published'
399
422
  };
400
423
 
424
+ exports.ProposalSchemaVersion = exports.$Enums.ProposalSchemaVersion = {
425
+ v1: 'v1',
426
+ v2: 'v2'
427
+ };
428
+
429
+ exports.ProposalTemplate = exports.$Enums.ProposalTemplate = {
430
+ sampleV2: 'sampleV2',
431
+ sampleV3: 'sampleV3'
432
+ };
433
+
401
434
  exports.PresetID = exports.$Enums.PresetID = {
402
435
  custom_team: 'custom_team',
403
436
  web_platform: 'web_platform',
@@ -489,6 +522,18 @@ exports.AutomatedStatusChangeReason = exports.$Enums.AutomatedStatusChangeReason
489
522
  NOT_INCLUDED_IN_PROPOSAL: 'NOT_INCLUDED_IN_PROPOSAL'
490
523
  };
491
524
 
525
+ exports.ProposalReviewStatus = exports.$Enums.ProposalReviewStatus = {
526
+ NotifiedForInterview: 'NotifiedForInterview',
527
+ pending: 'pending',
528
+ approved: 'approved',
529
+ rejected: 'rejected'
530
+ };
531
+
532
+ exports.ProposalCandidateRecommendation = exports.$Enums.ProposalCandidateRecommendation = {
533
+ Recommended: 'Recommended',
534
+ Alternative: 'Alternative'
535
+ };
536
+
492
537
  exports.RegisterRequestType = exports.$Enums.RegisterRequestType = {
493
538
  SUPERCHARGE: 'SUPERCHARGE',
494
539
  BUILD_PRODUCT: 'BUILD_PRODUCT'
@@ -516,6 +561,7 @@ exports.Prisma.ModelName = {
516
561
  MissionApplication: 'MissionApplication',
517
562
  MissionPrefill: 'MissionPrefill',
518
563
  MissionSpec: 'MissionSpec',
564
+ Proposal: 'Proposal',
519
565
  RoleCategory: 'RoleCategory',
520
566
  Solution: 'Solution',
521
567
  TalentCategory: 'TalentCategory',