efiber-prisma-schema 2.1.2 → 2.3.0

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-43808c6dbd59eabd1a51b960fafd151ed63cc2606158c26a92a6d6d5c6b7fe34",
2
+ "name": "prisma-client-751d095da1eef134c6bc654b24e4f580f923c89f2573c3bb4ae60e0bbd7ea4fa",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "default.js",
@@ -531,6 +531,7 @@ model User {
531
531
  Conduit Conduit[]
532
532
  ConduitTemplate ConduitTemplate[]
533
533
  WorkOrderComments WorkOrderComments[]
534
+ appVersions AppVersion[]
534
535
  }
535
536
 
536
537
  model MainProject {
@@ -607,8 +608,7 @@ model Project {
607
608
  usersOnline integrationProjectUserStatus[]
608
609
  MapElementTemplate MapElementTemplate[]
609
610
  MapElement MapElement[]
610
- ConduitTemplate ConduitTemplate? @relation(fields: [conduitTemplateId], references: [id])
611
- conduitTemplateId String?
611
+ ConduitTemplate ConduitTemplate[]
612
612
  }
613
613
 
614
614
  model integrationProjectUserStatus {
@@ -3349,3 +3349,21 @@ model ReportTable {
3349
3349
  includeHeader Boolean @default(true)
3350
3350
  sortBy Json? //e.g {"column": "Client Name", "order": "asc"} for sorting the table by a specific column
3351
3351
  }
3352
+
3353
+ model AppVersion {
3354
+ id String @id @unique @default(uuid())
3355
+ no Int @default(autoincrement())
3356
+
3357
+ versionCode Int
3358
+ versionName String
3359
+ releaseNotes String?
3360
+
3361
+ createdAt DateTime @default(now())
3362
+ updatedAt DateTime @updatedAt
3363
+ deletedAt DateTime?
3364
+
3365
+ createdBy User @relation(fields: [createdById], references: [id])
3366
+ createdById String
3367
+
3368
+ apkUrl String? //URL to the APK file for Android
3369
+ }