Skip to content

Commit c489dc5

Browse files
committed
increment version to create new package.
1 parent 8646f4c commit c489dc5

16 files changed

+18
-18
lines changed

dist/config.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
declare const config: {
33
version: string;
44
type: string;

dist/dashboard.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as service from './service';
33
import * as embed from './embed';
44
import * as models from 'powerbi-models';

dist/embed.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as service from './service';
33
import * as models from 'powerbi-models';
44
declare global {

dist/factories.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
/**
33
* TODO: Need to find better place for these factory functions or refactor how we handle dependency injection
44
*/

dist/ifilterable.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as models from 'powerbi-models';
33
/**
44
* Decorates embed components that support filters

dist/page.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import { IFilterable } from './ifilterable';
33
import { IReportNode } from './report';
44
import * as models from 'powerbi-models';

dist/powerbi.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as service from './service';
33
import * as factories from './factories';
44
import * as models from 'powerbi-models';

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.js.map

+1-1
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.

dist/report.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as service from './service';
33
import * as embed from './embed';
44
import * as models from 'powerbi-models';

dist/service.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as embed from './embed';
33
import { Report } from './report';
44
import { Dashboard } from './dashboard';

dist/tile.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
import * as models from 'powerbi-models';
33
import { Embed } from './embed';
44
/**

dist/util.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! powerbi-client v2.2.5 | (c) 2016 Microsoft Corporation MIT */
1+
/*! powerbi-client v2.2.6 | (c) 2016 Microsoft Corporation MIT */
22
/**
33
* Raises a custom event with event data on the specified HTML element.
44
*

package.json

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

src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const config = {
2-
version: '2.2.5',
2+
version: '2.2.6',
33
type: 'js'
44
};
55

0 commit comments

Comments
 (0)