@3e/sqa-common 6.14.0-9 → 6.15.0-2
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/index.d.ts +8 -0
- package/package.json +1 -1
- package/sqa_common.js +1417 -1414
package/index.d.ts
CHANGED
|
@@ -1341,9 +1341,17 @@ declare module '@3e/sqa-common' {
|
|
|
1341
1341
|
* Returns measurable levels contained in a dashboard level
|
|
1342
1342
|
* @param dashboardLevel - dashboard level. See type for possible values
|
|
1343
1343
|
* @throws Error - If input is not contained in the possible dashboard levels
|
|
1344
|
+
* @deprecated Use getMeasurableSubLevelsByLdType instead
|
|
1344
1345
|
*/
|
|
1345
1346
|
getMeasurableSubLevels(dashboardLevel: DashboardLevel): Level[]
|
|
1346
1347
|
|
|
1348
|
+
/**
|
|
1349
|
+
* Returns measurable levels contained in a dashboard level for a given ldType
|
|
1350
|
+
* @param ldType - ldType of the dashboard level
|
|
1351
|
+
* @throws Error - If input is not contained in the possible dashboard levels
|
|
1352
|
+
*/
|
|
1353
|
+
getMeasurableSubLevelsByLDType(ldType: string): Level[]
|
|
1354
|
+
|
|
1347
1355
|
/**
|
|
1348
1356
|
* Returns the granularity for the view
|
|
1349
1357
|
* @param view
|