@a_team/prisma 3.4.7-win → 3.4.8-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-4ff02823678342f4a5ed972b8d39d5cd7f60650d6d0b7ea768370ac2690ef7cb",
2
+ "name": "prisma-client-c4185949b604597f5d4c17c894fadce802ae98b9725e75d51e0981333401810a",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -428,18 +428,26 @@ enum MissionRoleStatus {
428
428
  Ended
429
429
  }
430
430
 
431
+ type MissionPrefillRole {
432
+ categoryId String @db.ObjectId
433
+ headline String?
434
+ requiredSkills String[] @db.ObjectId
435
+ preferredSkills String[] @db.ObjectId
436
+ timeCommitemnt String?
437
+ screeningQuestion String?
438
+ }
439
+
431
440
  model MissionPrefill {
432
- id String @id @default(auto()) @map("_id") @db.ObjectId
433
- userId String @unique @db.ObjectId
441
+ id String @id @default(auto()) @map("_id") @db.ObjectId
442
+ userId String @unique @db.ObjectId
434
443
  missionName String?
435
444
  plannedStart String?
436
445
  companyDescription String?
437
446
  missionDescription String?
438
447
  timezone String?
439
- openRoles Json?
440
- status String @default("pending") // "pending", "completed", or "failed"
441
- createdAt DateTime @default(now())
442
- updatedAt DateTime @updatedAt
448
+ openRoles MissionPrefillRole[]
449
+ createdAt DateTime @default(now())
450
+ updatedAt DateTime @updatedAt
443
451
 
444
452
  user User @relation(fields: [userId], references: [id], name: "user")
445
453
 
@@ -237,8 +237,6 @@ exports.Prisma.MissionPrefillScalarFieldEnum = {
237
237
  companyDescription: 'companyDescription',
238
238
  missionDescription: 'missionDescription',
239
239
  timezone: 'timezone',
240
- openRoles: 'openRoles',
241
- status: 'status',
242
240
  createdAt: 'createdAt',
243
241
  updatedAt: 'updatedAt'
244
242
  };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.4.7-win",
3
+ "version": "3.4.8-linux",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],