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 +1 -1
- package/prisma/schema.prisma +2 -2
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -42,7 +42,7 @@ enum AggregationOperation {
|
|
|
42
42
|
AVERAGE
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
enum
|
|
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
|
|
2459
|
+
operations ArithmeticOperation[] //e.g {"operation1": "sum", "operation2": "average"}
|
|
2460
2460
|
resultFormat ValueFormat @default(NUMBER)
|
|
2461
2461
|
}
|
|
2462
2462
|
|