Skip to content

Commit

Permalink
chore(release): v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Mar 19, 2021
1 parent 7c85864 commit 7f020ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-intercom",
"version": "0.0.2",
"version": "0.0.3",
"description": "create intercom composer with 0 dependencies on the client or on the server.",
"main": "dist/index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ interface IntercomProps {
}
declare function setAppId(id: string): void;
declare function updateIntercom(event?: string, settings?: any): void;
declare function trackEvent(type: string, metadata?: any): void;
declare function createIntercomSSR(appId?: string): Promise<any>;
declare function loadIntercom({ appId, ssr, callBack, delay, email, name, initWindow, scriptType, scriptInitDelay, ...extra }: IntercomProps): Promise<any> | undefined;
declare function initIntercomWindow({ appId, ...otherProps }: {
[x: string]: any;
appId?: string | undefined;
}): void;
declare function shutdownIntercom(): void;
export { updateIntercom, createIntercomSSR, setAppId, loadIntercom, initIntercomWindow, shutdownIntercom, };
export { updateIntercom, trackEvent, createIntercomSSR, setAppId, loadIntercom, initIntercomWindow, shutdownIntercom, };

0 comments on commit 7f020ef

Please sign in to comment.