@infomaximum/widget-sdk 4.0.0-beta18 → 4.0.0-beta19

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
@@ -1218,11 +1218,18 @@ interface ITwoLimitsCalculator extends ICalculator<ITwoLimitsCalculatorInput, IT
1218
1218
  }
1219
1219
 
1220
1220
  interface ITypeCalculatorInput {
1221
- formula: string;
1221
+ dimensions: {
1222
+ alias: string;
1223
+ formula: string;
1224
+ }[];
1225
+ measures: {
1226
+ alias: string;
1227
+ formula: string;
1228
+ }[];
1222
1229
  variablesValues: ICalculatorVariablesValues;
1223
1230
  }
1224
1231
  interface ITypeCalculatorOutput {
1225
- type: ESimpleDataType;
1232
+ types: Map<string, ESimpleDataType>;
1226
1233
  }
1227
1234
  interface ITypeCalculator extends ICalculator<ITypeCalculatorInput, ITypeCalculatorOutput> {
1228
1235
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "4.0.0-beta18",
3
+ "version": "4.0.0-beta19",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",