You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor filters from crud model to get/set model with objects representing each level instead of targets. (microsoft#24)
Refactor filters from crud model to get/set model with objects representing each level instead of targets.
* Update Service class to implement IService
* Add more tests for Page and Visual for SDK to MockApp
* Change getPages and getVisuals to return concrete classes instead of node interfaces
* Change IReport, IPage, IVisual to use Node suffix to make it clear they are not interface for class, but for traversing tree
* Cleanup on tests in attempt to fix error.
* Attempt to fix tests by using jasmine.objectContaining when comparing object equality in catch blocks.
* Update load documentation to use filters array
* Creates new Visual object given a name of the visual.
106
+
*
107
+
* Normally you would get Visual objects by calling `page.getVisuals()` but in the case
108
+
* that the visual name is known and you want to perform an action on a visaul such as setting a filters
109
+
* without having to retrieve it first you can create it directly.
110
+
*
111
+
* Note: Since you are creating the visual manually there is no guarantee that the visual actually exists in the report and the subsequence requests could fail.
0 commit comments