Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/config.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
declare const config: {
version: string;
type: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/dashboard.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as embed from './embed';
import * as models from 'powerbi-models';
Expand Down
2 changes: 1 addition & 1 deletion dist/embed.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as models from 'powerbi-models';
declare global {
Expand Down
2 changes: 1 addition & 1 deletion dist/factories.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
/**
* TODO: Need to find better place for these factory functions or refactor how we handle dependency injection
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/ifilterable.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as models from 'powerbi-models';
/**
* Decorates embed components that support filters
Expand Down
2 changes: 1 addition & 1 deletion dist/page.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import { IFilterable } from './ifilterable';
import { IReportNode } from './report';
import * as models from 'powerbi-models';
Expand Down
2 changes: 1 addition & 1 deletion dist/powerbi.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as factories from './factories';
import * as models from 'powerbi-models';
Expand Down
4 changes: 2 additions & 2 deletions dist/powerbi.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/powerbi.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/powerbi.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/report.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as service from './service';
import * as embed from './embed';
import * as models from 'powerbi-models';
Expand Down
2 changes: 1 addition & 1 deletion dist/service.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as embed from './embed';
import { Report } from './report';
import { Dashboard } from './dashboard';
Expand Down
2 changes: 1 addition & 1 deletion dist/tile.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
import * as models from 'powerbi-models';
import { Embed } from './embed';
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/util.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
/**
* Raises a custom event with event data on the specified HTML element.
*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "powerbi-client",
"version": "2.2.5",
"version": "2.2.6",
"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.",
"main": "dist/powerbi.js",
"typings": "dist/powerbi.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const config = {
version: '2.2.5',
version: '2.2.6',
type: 'js'
};

Expand Down