@a_team/prisma 3.4.4-win → 3.4.5-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.
- package/dist/client/edge.js +4 -11
- package/dist/client/index-browser.js +0 -7
- package/dist/client/index.d.ts +6 -52
- package/dist/client/index.js +6 -13
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +2 -9
- package/dist/client/wasm.js +0 -7
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -267,9 +267,9 @@ type MissionRoleWorkingHours {
|
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
type MissionRoleRemovalRequest {
|
|
270
|
-
reason
|
|
270
|
+
reason String
|
|
271
271
|
comment String?
|
|
272
|
-
createdAt DateTime
|
|
272
|
+
createdAt DateTime @default(now()) @db.Date
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
type MissionRole {
|
|
@@ -428,13 +428,6 @@ enum MissionRoleStatus {
|
|
|
428
428
|
Ended
|
|
429
429
|
}
|
|
430
430
|
|
|
431
|
-
enum MissionRoleRemovalReason {
|
|
432
|
-
ProjectScopeChange
|
|
433
|
-
BudgetConstraints
|
|
434
|
-
FoundTalentInternally
|
|
435
|
-
Other
|
|
436
|
-
}
|
|
437
|
-
|
|
438
431
|
model MissionPrefill {
|
|
439
432
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
440
433
|
userId String @unique @db.ObjectId
|
package/dist/client/wasm.js
CHANGED
|
@@ -435,13 +435,6 @@ 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
|
-
|
|
445
438
|
exports.Prisma.ModelName = {
|
|
446
439
|
Account: 'Account',
|
|
447
440
|
ClientCompany: 'ClientCompany',
|