@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +9 -2
  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
- formula: string;
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
- type: ESimpleDataType;
1187
+ types: Map<string, ESimpleDataType>;
1181
1188
  }
1182
1189
  interface ITypeCalculator extends ICalculator<ITypeCalculatorInput, ITypeCalculatorOutput> {
1183
1190
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "3.30.0",
3
+ "version": "3.31.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",