@a_team/prisma 2.1.4 → 2.1.5

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-201301e3ab4bef17bb2c44906dbb421ddd1eeb6f7e01e5062ac0932c2a7abe61",
2
+ "name": "prisma-client-47ce95c11de5b47b0b51cd44dd7b6757e4825965c104c37c0eedb6d9a6d48789",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -316,6 +316,9 @@ model Mission {
316
316
  updatedAt DateTime? @db.Date
317
317
  videoURL String?
318
318
  website String?
319
+ startDate DateTime? @db.Date
320
+ overlapMinutes Int?
321
+ timezone String?
319
322
  contracts Contract[]
320
323
 
321
324
  @@unique([roles.id], map: "roles._id_1")
@@ -197,7 +197,10 @@ exports.Prisma.MissionScalarFieldEnum = {
197
197
  title: 'title',
198
198
  updatedAt: 'updatedAt',
199
199
  videoURL: 'videoURL',
200
- website: 'website'
200
+ website: 'website',
201
+ startDate: 'startDate',
202
+ overlapMinutes: 'overlapMinutes',
203
+ timezone: 'timezone'
201
204
  };
202
205
 
203
206
  exports.Prisma.MissionSpecScalarFieldEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "keywords": [],
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist & npm run generate & tsc",