Skip to content

Commit 3682d2a

Browse files
committed
Merged PR 85931: Exported required configs from powerbi-client module
Exported **IQnaEmbedConfiguration, IVisualEmbedConfiguration** and **IQnaSettings** from _powerbi-client_ module. |Check| Yes/No/NA | |:------|:------:| | Build and test scripts are passing|Yes| | Open errors/warning details are shared with the reviewer |NA| | There are no violations to the applicable coding guidelines |Yes| | Application has a consistent exception management setup |NA| | Code does not contain commented code |Yes| | Is testing performed and results captured in ADO and list of test cases executed shared in PR? |Yes| | Generic exception type is not handled|NA| | Stacktrace of error is not returned |NA| Related work items: #359804
1 parent abcb886 commit 3682d2a

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

dist/powerbi-client.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.12.1 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.12.2 | (c) 2016 Microsoft Corporation MIT */
22
declare module "util" {
33
import { HttpPostMessage } from 'http-post-message';
44
/**
@@ -1857,7 +1857,7 @@ declare module "powerbi-client" {
18571857
export { Report } from "report";
18581858
export { Dashboard } from "dashboard";
18591859
export { Tile } from "tile";
1860-
export { IEmbedConfiguration, Embed, ILocaleSettings, IEmbedSettings } from "embed";
1860+
export { IEmbedConfiguration, IQnaEmbedConfiguration, IVisualEmbedConfiguration, Embed, ILocaleSettings, IEmbedSettings, IQnaSettings } from "embed";
18611861
export { Page } from "page";
18621862
export { Qna } from "qna";
18631863
export { Visual } from "visual";

dist/powerbi.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/powerbi.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "powerbi-client",
3-
"version": "2.12.1",
3+
"version": "2.12.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @ignore *//** */
22
const config = {
3-
version: '2.12.1',
3+
version: '2.12.2',
44
type: 'js'
55
};
66

src/powerbi-client.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ export {
2323
} from './tile';
2424
export {
2525
IEmbedConfiguration,
26+
IQnaEmbedConfiguration,
27+
IVisualEmbedConfiguration,
2628
Embed,
2729
ILocaleSettings,
28-
IEmbedSettings
30+
IEmbedSettings,
31+
IQnaSettings,
2932
} from './embed';
3033
export {
3134
Page

0 commit comments

Comments
 (0)