@a_team/prisma 3.4.3-macos-docker-linux → 3.4.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-52cfd393312a7c7de79f100251a30d8742fbf5843c808f10363c097003231ef5",
2
+ "name": "prisma-client-0db346c2a1334b62c64afa7e6c6d2a63eecf7cd00d20de9eb5e749a1466f9eba",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -266,6 +266,12 @@ type MissionRoleWorkingHours {
266
266
  utcStandardHours LocalHourRange[]
267
267
  }
268
268
 
269
+ type MissionRoleRemovalRequest {
270
+ reason MissionRoleRemovalReason
271
+ comment String?
272
+ createdAt DateTime @default(now()) @db.Date
273
+ }
274
+
269
275
  type MissionRole {
270
276
  id String @map("_id") @db.ObjectId
271
277
  availability MissionRoleAvailability?
@@ -301,6 +307,7 @@ type MissionRole {
301
307
  builderMonthlyRateMax Float?
302
308
  collectMonthlyRate Boolean?
303
309
  isFullTimeRetainer Boolean?
310
+ removalRequest MissionRoleRemovalRequest?
304
311
  }
305
312
 
306
313
  type MissionsManager {
@@ -421,6 +428,13 @@ enum MissionRoleStatus {
421
428
  Ended
422
429
  }
423
430
 
431
+ enum MissionRoleRemovalReason {
432
+ ProjectScopeChange
433
+ BudgetConstraints
434
+ FoundTalentInternally
435
+ Other
436
+ }
437
+
424
438
  model MissionPrefill {
425
439
  id String @id @default(auto()) @map("_id") @db.ObjectId
426
440
  userId String @unique @db.ObjectId
@@ -435,6 +435,13 @@ exports.HiringTimeline = exports.$Enums.HiringTimeline = {
435
435
  exploring: 'exploring'
436
436
  };
437
437
 
438
+ exports.MissionRoleRemovalReason = exports.$Enums.MissionRoleRemovalReason = {
439
+ ProjectScopeChange: 'ProjectScopeChange',
440
+ BudgetConstraints: 'BudgetConstraints',
441
+ FoundTalentInternally: 'FoundTalentInternally',
442
+ Other: 'Other'
443
+ };
444
+
438
445
  exports.Prisma.ModelName = {
439
446
  Account: 'Account',
440
447
  ClientCompany: 'ClientCompany',
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.4.3-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.4.4-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "scripts": {