efiber-prisma-schema 1.2.5 → 1.2.7

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.2.5",
3
+ "version": "1.2.7",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1173,9 +1173,11 @@ model PboFatTemplate {
1173
1173
 
1174
1174
  status String @default("active")
1175
1175
  terminalAccess Boolean @default(false)
1176
+ name String?
1176
1177
  photos Json? //Upload files for photos
1177
- zone String? //Color code for zone
1178
- geometry String? //Icon for the PBO FAT
1178
+ zone Json? //Color code for zone
1179
+ geometry Json? //Icon for the PBO FAT
1180
+ attributes Json? //Attributes for the PBO FAT
1179
1181
 
1180
1182
  createdAt DateTime @default(now())
1181
1183
  updatedAt DateTime @updatedAt
@@ -1202,8 +1204,8 @@ model PboFat {
1202
1204
  status String @default("active")
1203
1205
  terminalAccess Boolean @default(false)
1204
1206
  photos Json? //Upload files for photos
1205
- zone String? //Color code for zone
1206
- geometry String? //Icon for the PBO FAT
1207
+ zone Json? //Color code for zone
1208
+ geometry Json? //Icon for the PBO FAT
1207
1209
 
1208
1210
  createdAt DateTime @default(now())
1209
1211
  updatedAt DateTime @updatedAt