@a_team/prisma 3.2.11-win → 3.3.0-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 -4
- package/dist/client/index.d.ts +78 -45
- package/dist/client/index.js +6 -6
- 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 +8 -6
- package/package.json +2 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -15,8 +15,8 @@ model Account {
|
|
|
15
15
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
16
16
|
clientCompany String? @db.ObjectId
|
|
17
17
|
clientCompanyModel ClientCompany? @relation(fields: [clientCompany], references: [id])
|
|
18
|
-
companyId String
|
|
19
|
-
company Company
|
|
18
|
+
companyId String? @map("company") @db.ObjectId
|
|
19
|
+
company Company? @relation(fields: [companyId], references: [id])
|
|
20
20
|
members AccountsMember[]
|
|
21
21
|
workspace AccountsWorkspace?
|
|
22
22
|
billingAccount String? @db.ObjectId
|
|
@@ -280,6 +280,7 @@ type MissionRole {
|
|
|
280
280
|
headline String?
|
|
281
281
|
hourlyRate Float?
|
|
282
282
|
monthlyRate Float?
|
|
283
|
+
marginVAT Float?
|
|
283
284
|
isBadPerformance Boolean?
|
|
284
285
|
isLead Boolean?
|
|
285
286
|
locations String[]
|
|
@@ -303,10 +304,11 @@ type MissionRole {
|
|
|
303
304
|
}
|
|
304
305
|
|
|
305
306
|
type MissionsManager {
|
|
306
|
-
id
|
|
307
|
-
accessMode
|
|
308
|
-
excludeFromInvoiceEmails
|
|
309
|
-
excludeFromTeamPulseEmails
|
|
307
|
+
id String @map("_id") @db.ObjectId
|
|
308
|
+
accessMode String
|
|
309
|
+
excludeFromInvoiceEmails Boolean?
|
|
310
|
+
excludeFromTeamPulseEmails Boolean?
|
|
311
|
+
excludeFromMissionUpdatesEmails Boolean?
|
|
310
312
|
}
|
|
311
313
|
|
|
312
314
|
type MissionsAttachedLink {
|