@a_team/prisma 3.4.3-win → 3.4.4-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/README.md +7 -0
- package/dist/client/edge.js +11 -4
- package/dist/client/index-browser.js +7 -0
- package/dist/client/index.d.ts +167 -0
- package/dist/client/index.js +13 -6
- 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 -0
- package/dist/client/wasm.js +7 -0
- 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
|
@@ -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
|
package/dist/client/wasm.js
CHANGED
|
@@ -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',
|