@infomaximum/widget-sdk 3.30.0 → 3.31.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/dist/index.d.ts +9 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1173,11 +1173,18 @@ interface ITwoLimitsCalculator extends ICalculator<ITwoLimitsCalculatorInput, IT
|
|
|
1173
1173
|
}
|
|
1174
1174
|
|
|
1175
1175
|
interface ITypeCalculatorInput {
|
|
1176
|
-
|
|
1176
|
+
dimensions: {
|
|
1177
|
+
alias: string;
|
|
1178
|
+
formula: string;
|
|
1179
|
+
}[];
|
|
1180
|
+
measures: {
|
|
1181
|
+
alias: string;
|
|
1182
|
+
formula: string;
|
|
1183
|
+
}[];
|
|
1177
1184
|
variablesValues: ICalculatorVariablesValues;
|
|
1178
1185
|
}
|
|
1179
1186
|
interface ITypeCalculatorOutput {
|
|
1180
|
-
|
|
1187
|
+
types: Map<string, ESimpleDataType>;
|
|
1181
1188
|
}
|
|
1182
1189
|
interface ITypeCalculator extends ICalculator<ITypeCalculatorInput, ITypeCalculatorOutput> {
|
|
1183
1190
|
}
|