Skip to content

Commit efac9bd

Browse files
author
Amit Shuster
committed
Merged PR 24622: export Qna added to powerbi-client
export Qna was missing
2 parents 6141a23 + cdf5dfe commit efac9bd

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

dist/powerbi-client.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.4.1 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.4.2 | (c) 2016 Microsoft Corporation MIT */
22
declare module "config" {
33
const config: {
44
version: string;
@@ -1098,6 +1098,7 @@ declare module "powerbi-client" {
10981098
export { Tile } from "tile";
10991099
export { IEmbedConfiguration, Embed, ILocaleSettings, IEmbedSettings } from "embed";
11001100
export { Page } from "page";
1101+
export { Qna } from "qna";
11011102
global {
11021103
interface Window {
11031104
powerbi: service.Service;

dist/powerbi.js

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/powerbi.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powerbi-client",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"description": "JavaScript library for embedding Power BI into your apps. Provides service which makes it easy to embed different types of components and an object model which allows easy interaction with these components such as changing pages, applying filters, and responding to data selection.",
55
"main": "dist/powerbi.js",
66
"typings": "dist/powerbi-client.d.ts",

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const config = {
2-
version: '2.4.1',
2+
version: '2.4.2',
33
type: 'js'
44
};
55

src/powerbi-client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ export {
2727
export {
2828
Page
2929
} from './page';
30+
export {
31+
Qna
32+
} from './qna';
3033

3134
declare var powerbi: service.Service;
3235
declare global {

0 commit comments

Comments
 (0)