efiber-prisma-schema 1.7.1 → 1.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "efiber-prisma-schema",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -461,7 +461,8 @@ model Project {
461
461
  FDTSROTemplate FDTSROTemplate[]
462
462
  SFUTemplate SFUTemplate[]
463
463
  BuildingTemplate BuildingTemplate[]
464
- integrationProjectUserStatus integrationProjectUserStatus[]
464
+ usersOnline integrationProjectUserStatus[]
465
+
465
466
  }
466
467
 
467
468
  model integrationProjectUserStatus {
@@ -2043,6 +2044,7 @@ model NetworkElementInstallation {
2043
2044
  createdAt DateTime @default(now())
2044
2045
  updatedAt DateTime @updatedAt
2045
2046
 
2047
+ networkElementId String?
2046
2048
  previousType String?
2047
2049
  previousName String?
2048
2050
  previousId String?
@@ -2081,6 +2083,8 @@ model Cluster {
2081
2083
  id String @id @unique @default(uuid())
2082
2084
  no Int @default(autoincrement())
2083
2085
  name String @unique
2086
+ coordinates Json?
2087
+ color String?
2084
2088
 
2085
2089
  createdAt DateTime @default(now())
2086
2090
  updatedAt DateTime @updatedAt