@a_team/prisma 3.2.11-macos → 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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-8086830ffd7b099fa5664e31b8e9ad0a671cebf2f7f43bca3ff737014d3dab37",
2
+ "name": "prisma-client-52cfd393312a7c7de79f100251a30d8742fbf5843c808f10363c097003231ef5",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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 @map("company") @db.ObjectId
19
- company Company @relation(fields: [companyId], references: [id])
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 String @map("_id") @db.ObjectId
307
- accessMode String
308
- excludeFromInvoiceEmails Boolean?
309
- excludeFromTeamPulseEmails Boolean?
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 {
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.2.11-macos",
4
- "os": [],
3
+ "version": "3.3.0-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "scripts": {