@a_team/prisma 3.4.7-win → 3.4.8-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.
- package/dist/client/edge.js +4 -6
- package/dist/client/index-browser.js +0 -2
- package/dist/client/index.d.ts +206 -104
- package/dist/client/index.js +6 -8
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +14 -6
- package/dist/client/wasm.js +0 -2
- package/package.json +2 -2
package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node}
RENAMED
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
|
433
|
-
userId String
|
|
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
|
|
440
|
-
|
|
441
|
-
|
|
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
|
|
package/dist/client/wasm.js
CHANGED
|
@@ -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
|
};
|