@a_team/prisma 2.1.10 → 2.1.11

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-f707efccaa05155487464f1904e3137fe85d1bded8943ed57604c20a860cd644",
2
+ "name": "prisma-client-d410f4d7add0d9cb07bff9cd8319bef15df2db4a7ae75915cffa0dc6f5ce7ad0",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -316,7 +316,7 @@ model Mission {
316
316
  updatedAt DateTime? @db.Date
317
317
  videoURL String?
318
318
  website String?
319
- plannedStart String?
319
+ plannedStart MissionPlannedStart?
320
320
  overlapMinutes Int?
321
321
  timezone String?
322
322
  contracts Contract[]
@@ -345,6 +345,13 @@ enum MissionRoleStatus {
345
345
  Ended
346
346
  }
347
347
 
348
+ enum MissionPlannedStart {
349
+ Immediately
350
+ NextMonth
351
+ WithinThreeMonths
352
+ Exploring
353
+ }
354
+
348
355
  model MissionSpec {
349
356
  id String @id @default(auto()) @map("_id") @db.ObjectId
350
357
  account Account? @relation(fields: [accountId], references: [id])
@@ -322,6 +322,13 @@ exports.MissionStatus = exports.$Enums.MissionStatus = {
322
322
  Archived: 'Archived'
323
323
  };
324
324
 
325
+ exports.MissionPlannedStart = exports.$Enums.MissionPlannedStart = {
326
+ Immediately: 'Immediately',
327
+ NextMonth: 'NextMonth',
328
+ WithinThreeMonths: 'WithinThreeMonths',
329
+ Exploring: 'Exploring'
330
+ };
331
+
325
332
  exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
326
333
  spec: 'spec',
327
334
  formation: 'formation',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
4
4
  "keywords": [],
5
5
  "scripts": {
6
6
  "build": "rm -rf ./dist & npm run generate & tsc",