Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
[Chore] Export interfaces used in the library (#31)
Browse files Browse the repository at this point in the history
* export interfaces used in the library
* version bump
  • Loading branch information
MichalPaszowski authored Aug 13, 2021
1 parent a65f721 commit e5b8aad
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livechat/agent-app-sdk",
"version": "1.5.1",
"version": "1.5.2",
"description": "SDK for extending LiveChat's Agent App",
"license": "MIT",
"repository": {
Expand Down
7 changes: 4 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { createDetailsWidget } from './widgets/details';
export { createMessageBoxWidget } from './widgets/messagebox';
export { createFullscreenWidget } from './widgets/fullscreen';
export * from './widgets/details';
export * from './widgets/messagebox';
export * from './widgets/fullscreen';
export * from './widgets/shared/customer-profile';
2 changes: 2 additions & 0 deletions src/widgets/details/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ export {
default as createDetailsWidget,
IDetailsWidget
} from './details-widget';

export * from './interfaces';
2 changes: 2 additions & 0 deletions src/widgets/fullscreen/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ export {
default as createFullscreenWidget,
IFullscreenWidget
} from './fullscreen-widget';

export * from './interfaces';
2 changes: 2 additions & 0 deletions src/widgets/messagebox/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ export {
default as createMessageBoxWidget,
IMessageBoxWidget
} from './messagebox-widget';

export * from './interfaces';

0 comments on commit e5b8aad

Please sign in to comment.