@a_team/prisma 2.1.11 → 2.1.12
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 +3 -10
- package/dist/client/index-browser.js +0 -7
- package/dist/client/index.d.ts +42 -113
- package/dist/client/index.js +3 -10
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +1 -8
- package/dist/client/wasm.js +0 -7
- 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 String?
|
|
320
320
|
overlapMinutes Int?
|
|
321
321
|
timezone String?
|
|
322
322
|
contracts Contract[]
|
|
@@ -345,13 +345,6 @@ enum MissionRoleStatus {
|
|
|
345
345
|
Ended
|
|
346
346
|
}
|
|
347
347
|
|
|
348
|
-
enum MissionPlannedStart {
|
|
349
|
-
Immediately
|
|
350
|
-
NextMonth
|
|
351
|
-
WithinThreeMonths
|
|
352
|
-
Exploring
|
|
353
|
-
}
|
|
354
|
-
|
|
355
348
|
model MissionSpec {
|
|
356
349
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
357
350
|
account Account? @relation(fields: [accountId], references: [id])
|
package/dist/client/wasm.js
CHANGED
|
@@ -322,13 +322,6 @@ 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
|
-
|
|
332
325
|
exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
|
|
333
326
|
spec: 'spec',
|
|
334
327
|
formation: 'formation',
|