efiber-prisma-schema 1.11.2 → 1.11.3

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.11.2",
3
+ "version": "1.11.3",
4
4
  "description": "Database schema for eFiber",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -42,7 +42,7 @@ enum AggregationOperation {
42
42
  AVERAGE
43
43
  }
44
44
 
45
- enum ArithMeticOperation {
45
+ enum ArithmeticOperation {
46
46
  ADD
47
47
  SUBTRACT
48
48
  MULTIPLY
@@ -2456,7 +2456,7 @@ model ReportFormulaConfig {
2456
2456
  resultName String //Name of the result to be reported
2457
2457
  numberOfVariables Int //Number of variables in the formula
2458
2458
  variableAttributes Json //e.g {"variable1": "Client Name", "variable2": "Fat Available Capacity"}
2459
- operations ArithMeticOperation //e.g {"operation1": "sum", "operation2": "average"}
2459
+ operations ArithmeticOperation[] //e.g {"operation1": "sum", "operation2": "average"}
2460
2460
  resultFormat ValueFormat @default(NUMBER)
2461
2461
  }
2462
2462