powerbi-visuals-api
Advanced tools
Comparing version 3.2.0 to 3.4.0
# Change Log - Power BI Custom Visuals API | ||
## 3.4.0 | ||
* `fetchMoreData` : new `aggregateSegments` parameter (default true), for supporting no-aggregation fetchMoreData. | ||
## 3.2.0 | ||
* `supportsMultiVisualSelection` multi selection capabilities for custom visuals | ||
## 2.6.2 | ||
@@ -10,5 +16,2 @@ * Now visuals are able to use two and more dataViewMappings at the same time. | ||
## 3.2.0 | ||
* `supportsMultiVisualSelection` multi selection capabilities for custom visuals | ||
## 2.6.0 | ||
@@ -15,0 +18,0 @@ * `subtotals` property specifies subtotal customizations applied in customizeQuery method |
@@ -13,2 +13,3 @@ declare namespace powerbi { | ||
Append = 1, | ||
Segment = 2, | ||
} | ||
@@ -1474,3 +1475,3 @@ const enum VisualUpdateType { | ||
launchUrl: (url: string) => void; | ||
fetchMoreData: () => boolean; | ||
fetchMoreData: (aggregateSegments?: boolean) => boolean; | ||
instanceId: string; | ||
@@ -1477,0 +1478,0 @@ refreshHostData: () => void; |
{ | ||
"name": "powerbi-visuals-api", | ||
"version": "3.2.0", | ||
"version": "3.4.0", | ||
"description": "Power BI Custom Visuals API type definitions for typescript", | ||
@@ -5,0 +5,0 @@ "types": "index", |
@@ -61,6 +61,2 @@ { | ||
"$ref": "#/definitions/subtotals" | ||
}, | ||
"supportsMultiVisualSelection": { | ||
"type": "boolean", | ||
"description": "Indicates whether the visual supports multi selection" | ||
} | ||
@@ -1340,2 +1336,2 @@ }, | ||
} | ||
} | ||
} |
119291
2794