@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.
- package/dist/client/edge.js +10 -3
- package/dist/client/index-browser.js +7 -0
- package/dist/client/index.d.ts +113 -42
- package/dist/client/index.js +10 -3
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +8 -1
- package/dist/client/wasm.js +7 -0
- package/package.json +1 -1
package/dist/client/package.json
CHANGED
|
@@ -316,7 +316,7 @@ model Mission {
|
|
|
316
316
|
updatedAt DateTime? @db.Date
|
|
317
317
|
videoURL String?
|
|
318
318
|
website String?
|
|
319
|
-
plannedStart
|
|
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])
|
package/dist/client/wasm.js
CHANGED
|
@@ -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',
|