@a_team/prisma 3.2.6-macos → 3.2.7-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-f68673ee7a9ca9c9c973a9159be25103c522f2b2a280de9a6f65d1bfdbfe1df3",
2
+ "name": "prisma-client-69eeb8a643cb974e5aa9062c036caa07f3920b4cc06315d5cef863e6dd5848a6",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -135,6 +135,7 @@ enum ContractType {
135
135
  ClientContract
136
136
  ServiceOrder
137
137
  ScopeOfWork
138
+ MasterServicesAgreement
138
139
  }
139
140
 
140
141
  type ContractParty {
@@ -596,6 +597,7 @@ model User {
596
597
  createdAt DateTime @default(now()) @db.Date
597
598
  titles String[]
598
599
  scrubbed String?
600
+ tokenVersion Int
599
601
  clientRegistration ClientRegistration?
600
602
  authoredMissionSpecs MissionSpec[] @relation("author")
601
603
  modifiedMissionSpecs MissionSpec[] @relation("lastModifier")
@@ -288,7 +288,8 @@ exports.Prisma.UserScalarFieldEnum = {
288
288
  status: 'status',
289
289
  createdAt: 'createdAt',
290
290
  titles: 'titles',
291
- scrubbed: 'scrubbed'
291
+ scrubbed: 'scrubbed',
292
+ tokenVersion: 'tokenVersion'
292
293
  };
293
294
 
294
295
  exports.Prisma.SortOrder = {
@@ -310,7 +311,8 @@ exports.ContractType = exports.$Enums.ContractType = {
310
311
  MissionAgreement: 'MissionAgreement',
311
312
  ClientContract: 'ClientContract',
312
313
  ServiceOrder: 'ServiceOrder',
313
- ScopeOfWork: 'ScopeOfWork'
314
+ ScopeOfWork: 'ScopeOfWork',
315
+ MasterServicesAgreement: 'MasterServicesAgreement'
314
316
  };
315
317
 
316
318
  exports.ContractSource = exports.$Enums.ContractSource = {
package/package.json CHANGED
@@ -1,12 +1,10 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.2.6-macos",
3
+ "version": "3.2.7-linux",
4
4
  "os": [
5
- "darwin"
6
- ],
7
- "cpu": [
8
- "arm64"
5
+ "linux"
9
6
  ],
7
+ "cpu": [],
10
8
  "keywords": [],
11
9
  "scripts": {
12
10
  "build": "rm -rf ./dist && yarn run generate",