New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ng-intercom

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-intercom - npm Package Compare versions

Comparing version

to
1.0.0-beta.11

dist/providers/intercom.d.ts

14

CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [1.0.0-beta.11] - 2018-1-4
### Added
- Configuration options (that would otherwise be in `window.intercomSettings`)
- Add a somewhat typed input for `Intercom.boot` and `Intercom.update`
### Removed
- **BREAKING CHANGE**: Removed deprecated `Intercom.init()` method
## [1.0.0-beta.10] - 2017-11-15
### Fixed
- **BREAKING CHANGE**: `ng-intercom` now requires peers of Angular v5. Please update your applications, or you may get an error when compiling.
## [1.0.0-beta.9] - 2017-11-01

@@ -11,0 +21,0 @@ ### Fixed

44

dist/intercom/intercom.d.ts
import { Router } from '@angular/router';
import { IntercomConfig } from '../shared/intercom-config';
import { Any, BootInput } from '../types/boot-input';
/**
* @description A provider with every Intercom.JS method
* A provider with every Intercom.JS method
* @export

@@ -13,24 +14,11 @@ * @class Intercom

/**
* @description Method used to instantiate Intercom
* @param {object} [intercomData]
* @memberof Intercom
*
* @deprecated
*/
init(intercomData?: object): any;
/**
* @description
* If you'd like to control when Intercom is loaded, you can use the 'boot' method. This is useful in situations like a one-page Javascript based application where the user may not be logged in when the page loads. You call this method with the standard intercomSettings object.
* @param {object} [intercomData] Your intercom configuration
* @memberof Intercom
*/
boot(intercomData?: object): any;
boot(intercomData?: BootInput): any;
/**
* @description
* If you have the Respond product (combined with another product like Engage) you should call the Intercom shutdown method to clear your users’ conversations anytime they logout of your application. Otherwise, the cookie we use to track who was most recently logged in on a given device or computer will keep these conversations in the Messenger for one week. This method will effectively clear out any user data that you have been passing through the JS API.
* @memberof Intercom
*/
shutdown(): any;
/**
* @description
* Calling the update method without any other arguments will trigger the JavaScript to look for new messages that should be displayed to the current user (the one whose details are in the window.intercomSettings variable) and show them if they exist.

@@ -40,13 +28,9 @@ *

* @param {object} [data]
* @memberof Intercom
*/
update(data?: object): any;
update(data?: Any): any;
/**
* @description
* This will hide the main Messenger panel if it is open. It will not hide the Messenger Launcher.
* @memberof Intercom
*/
hide(): any;
/**
* @description
* This will show the Messenger. If there are no conversations it will open with the new message view, if there are it will open with the message list.

@@ -57,20 +41,16 @@ *

* @param {string} [message]
* @memberof Intercom
*/
show(message?: string): any;
/**
* @description To open the message window with the message list you can call `showMessages()`.
* @memberof Intercom
* To open the message window with the message list you can call `showMessages()`.
*/
showMessages(): any;
/**
* @description To open the message window with the new message view you can call showNewMessage().
* To open the message window with the new message view you can call showNewMessage().
*
* This function takes an optional parameter that can be used to pre-populate the message composer as shown below.
* @param {string} message
* @memberof Intercom
*/
showNewMessage(message?: string): any;
/**
* @description
* You can submit an event using the trackEvent method. This will associate the event with the currently logged in user and send it to Intercom. The final parameter is a map that can be used to send optional metadata about the event.

@@ -81,42 +61,32 @@ *

* @param {*} [metadata]
* @memberof Intercom
*/
trackEvent(eventName: string, metadata?: any): any;
/**
* @description
* A visitor is someone who goes to your site but does not use the messenger. You can track these visitors via the visitor user_id. This user_id can be used to retrieve the visitor or lead through the REST API.
* @returns {string}
* @memberof Intercom
*/
getVisitorId(): string;
/**
* @description Alias for getVisitorId()
* Alias for getVisitorId()
* @alias getVisitorId()
* @readonly
* @type {string}
* @memberof Intercom
*/
readonly visitorId: string;
/**
* @description
* Gives you the ability to hook into the show event. Requires a function argument.
* @param {() => void} handler
* @memberof Intercom
*/
onShow(handler: () => void): any;
/**
* @description
* Gives you the ability to hook into the hide event. Requires a function argument.
*
* @param {() => void} handler
* @memberof Intercom
*/
onHide(handler: () => void): any;
/**
* @description
* This method allows you to register a function that will be called when the current number of unread messages changes.
* @param {(unreadCount?: number) => void} handler
* @memberof Intercom
*/
onUnreadCountChange(handler: (unreadCount?: number) => void): any;
}

@@ -16,3 +16,3 @@ "use strict";

/**
* @description A provider with every Intercom.JS method
* A provider with every Intercom.JS method
* @export

@@ -26,3 +26,3 @@ * @class Intercom

this.router = router;
load_intercom_1.loadIntercom(config.appId);
load_intercom_1.loadIntercom(config);
if (config.updateOnRouterChange) {

@@ -38,63 +38,25 @@ this.router.events.subscribe(function (event) {

/**
* @description Method used to instantiate Intercom
* @param {object} [intercomData]
* @memberof Intercom
*
* @deprecated
*/
/**
* @description Method used to instantiate Intercom
* @param {object} [intercomData]
* @memberof Intercom
*
* @deprecated
*/
Intercom.prototype.init = /**
* @description Method used to instantiate Intercom
* @param {object} [intercomData]
* @memberof Intercom
*
* @deprecated
*/
function (intercomData) {
if (core_1.isDevMode()) {
console.warn('Intercom.init is deprecated and will be removed in a future release. Please use Intercom.boot.');
}
return window.Intercom("boot", __assign({ app_id: this.config.appId }, intercomData));
};
/**
* @description
* If you'd like to control when Intercom is loaded, you can use the 'boot' method. This is useful in situations like a one-page Javascript based application where the user may not be logged in when the page loads. You call this method with the standard intercomSettings object.
* @param {object} [intercomData] Your intercom configuration
* @memberof Intercom
*/
/**
* @description
* If you'd like to control when Intercom is loaded, you can use the 'boot' method. This is useful in situations like a one-page Javascript based application where the user may not be logged in when the page loads. You call this method with the standard intercomSettings object.
* @param {object} [intercomData] Your intercom configuration
* @memberof Intercom
*/
Intercom.prototype.boot = /**
* @description
* If you'd like to control when Intercom is loaded, you can use the 'boot' method. This is useful in situations like a one-page Javascript based application where the user may not be logged in when the page loads. You call this method with the standard intercomSettings object.
* @param {object} [intercomData] Your intercom configuration
* @memberof Intercom
*/
function (intercomData) {
return window.Intercom("boot", __assign({ app_id: this.config.appId }, intercomData));
var data = __assign({}, intercomData, { app_id: this.config.appId });
return window.Intercom('boot', data);
};
/**
* @description
* If you have the Respond product (combined with another product like Engage) you should call the Intercom shutdown method to clear your users’ conversations anytime they logout of your application. Otherwise, the cookie we use to track who was most recently logged in on a given device or computer will keep these conversations in the Messenger for one week. This method will effectively clear out any user data that you have been passing through the JS API.
* @memberof Intercom
*/
/**
* @description
* If you have the Respond product (combined with another product like Engage) you should call the Intercom shutdown method to clear your users’ conversations anytime they logout of your application. Otherwise, the cookie we use to track who was most recently logged in on a given device or computer will keep these conversations in the Messenger for one week. This method will effectively clear out any user data that you have been passing through the JS API.
* @memberof Intercom
*/
Intercom.prototype.shutdown = /**
* @description
* If you have the Respond product (combined with another product like Engage) you should call the Intercom shutdown method to clear your users’ conversations anytime they logout of your application. Otherwise, the cookie we use to track who was most recently logged in on a given device or computer will keep these conversations in the Messenger for one week. This method will effectively clear out any user data that you have been passing through the JS API.
* @memberof Intercom
*/

@@ -105,3 +67,2 @@ function () {

/**
* @description
* Calling the update method without any other arguments will trigger the JavaScript to look for new messages that should be displayed to the current user (the one whose details are in the window.intercomSettings variable) and show them if they exist.

@@ -111,6 +72,4 @@ *

* @param {object} [data]
* @memberof Intercom
*/
/**
* @description
* Calling the update method without any other arguments will trigger the JavaScript to look for new messages that should be displayed to the current user (the one whose details are in the window.intercomSettings variable) and show them if they exist.

@@ -120,6 +79,4 @@ *

* @param {object} [data]
* @memberof Intercom
*/
Intercom.prototype.update = /**
* @description
* Calling the update method without any other arguments will trigger the JavaScript to look for new messages that should be displayed to the current user (the one whose details are in the window.intercomSettings variable) and show them if they exist.

@@ -129,3 +86,2 @@ *

* @param {object} [data]
* @memberof Intercom
*/

@@ -141,15 +97,9 @@ function (data) {

/**
* @description
* This will hide the main Messenger panel if it is open. It will not hide the Messenger Launcher.
* @memberof Intercom
*/
/**
* @description
* This will hide the main Messenger panel if it is open. It will not hide the Messenger Launcher.
* @memberof Intercom
*/
Intercom.prototype.hide = /**
* @description
* This will hide the main Messenger panel if it is open. It will not hide the Messenger Launcher.
* @memberof Intercom
*/

@@ -160,3 +110,2 @@ function () {

/**
* @description
* This will show the Messenger. If there are no conversations it will open with the new message view, if there are it will open with the message list.

@@ -167,6 +116,4 @@ *

* @param {string} [message]
* @memberof Intercom
*/
/**
* @description
* This will show the Messenger. If there are no conversations it will open with the new message view, if there are it will open with the message list.

@@ -177,6 +124,4 @@ *

* @param {string} [message]
* @memberof Intercom
*/
Intercom.prototype.show = /**
* @description
* This will show the Messenger. If there are no conversations it will open with the new message view, if there are it will open with the message list.

@@ -187,3 +132,2 @@ *

* @param {string} [message]
* @memberof Intercom
*/

@@ -199,12 +143,9 @@ function (message) {

/**
* @description To open the message window with the message list you can call `showMessages()`.
* @memberof Intercom
* To open the message window with the message list you can call `showMessages()`.
*/
/**
* @description To open the message window with the message list you can call `showMessages()`.
* @memberof Intercom
* To open the message window with the message list you can call `showMessages()`.
*/
Intercom.prototype.showMessages = /**
* @description To open the message window with the message list you can call `showMessages()`.
* @memberof Intercom
* To open the message window with the message list you can call `showMessages()`.
*/

@@ -215,21 +156,18 @@ function () {

/**
* @description To open the message window with the new message view you can call showNewMessage().
* To open the message window with the new message view you can call showNewMessage().
*
* This function takes an optional parameter that can be used to pre-populate the message composer as shown below.
* @param {string} message
* @memberof Intercom
*/
/**
* @description To open the message window with the new message view you can call showNewMessage().
* To open the message window with the new message view you can call showNewMessage().
*
* This function takes an optional parameter that can be used to pre-populate the message composer as shown below.
* @param {string} message
* @memberof Intercom
*/
Intercom.prototype.showNewMessage = /**
* @description To open the message window with the new message view you can call showNewMessage().
* To open the message window with the new message view you can call showNewMessage().
*
* This function takes an optional parameter that can be used to pre-populate the message composer as shown below.
* @param {string} message
* @memberof Intercom
*/

@@ -245,3 +183,2 @@ function (message) {

/**
* @description
* You can submit an event using the trackEvent method. This will associate the event with the currently logged in user and send it to Intercom. The final parameter is a map that can be used to send optional metadata about the event.

@@ -252,6 +189,4 @@ *

* @param {*} [metadata]
* @memberof Intercom
*/
/**
* @description
* You can submit an event using the trackEvent method. This will associate the event with the currently logged in user and send it to Intercom. The final parameter is a map that can be used to send optional metadata about the event.

@@ -262,6 +197,4 @@ *

* @param {*} [metadata]
* @memberof Intercom
*/
Intercom.prototype.trackEvent = /**
* @description
* You can submit an event using the trackEvent method. This will associate the event with the currently logged in user and send it to Intercom. The final parameter is a map that can be used to send optional metadata about the event.

@@ -272,3 +205,2 @@ *

* @param {*} [metadata]
* @memberof Intercom
*/

@@ -284,18 +216,12 @@ function (eventName, metadata) {

/**
* @description
* A visitor is someone who goes to your site but does not use the messenger. You can track these visitors via the visitor user_id. This user_id can be used to retrieve the visitor or lead through the REST API.
* @returns {string}
* @memberof Intercom
*/
/**
* @description
* A visitor is someone who goes to your site but does not use the messenger. You can track these visitors via the visitor user_id. This user_id can be used to retrieve the visitor or lead through the REST API.
* @returns {string}
* @memberof Intercom
*/
Intercom.prototype.getVisitorId = /**
* @description
* A visitor is someone who goes to your site but does not use the messenger. You can track these visitors via the visitor user_id. This user_id can be used to retrieve the visitor or lead through the REST API.
* @returns {string}
* @memberof Intercom
*/

@@ -307,14 +233,12 @@ function () {

/**
* @description Alias for getVisitorId()
* Alias for getVisitorId()
* @alias getVisitorId()
* @readonly
* @type {string}
* @memberof Intercom
*/
get: /**
* @description Alias for getVisitorId()
* Alias for getVisitorId()
* @alias getVisitorId()
* @readonly
* @type {string}
* @memberof Intercom
*/

@@ -328,18 +252,12 @@ function () {

/**
* @description
* Gives you the ability to hook into the show event. Requires a function argument.
* @param {() => void} handler
* @memberof Intercom
*/
/**
* @description
* Gives you the ability to hook into the show event. Requires a function argument.
* @param {() => void} handler
* @memberof Intercom
*/
Intercom.prototype.onShow = /**
* @description
* Gives you the ability to hook into the show event. Requires a function argument.
* @param {() => void} handler
* @memberof Intercom
*/

@@ -350,21 +268,15 @@ function (handler) {

/**
* @description
* Gives you the ability to hook into the hide event. Requires a function argument.
*
* @param {() => void} handler
* @memberof Intercom
*/
/**
* @description
* Gives you the ability to hook into the hide event. Requires a function argument.
*
* @param {() => void} handler
* @memberof Intercom
*/
Intercom.prototype.onHide = /**
* @description
* Gives you the ability to hook into the hide event. Requires a function argument.
*
* @param {() => void} handler
* @memberof Intercom
*/

@@ -375,18 +287,12 @@ function (handler) {

/**
* @description
* This method allows you to register a function that will be called when the current number of unread messages changes.
* @param {(unreadCount?: number) => void} handler
* @memberof Intercom
*/
/**
* @description
* This method allows you to register a function that will be called when the current number of unread messages changes.
* @param {(unreadCount?: number) => void} handler
* @memberof Intercom
*/
Intercom.prototype.onUnreadCountChange = /**
* @description
* This method allows you to register a function that will be called when the current number of unread messages changes.
* @param {(unreadCount?: number) => void} handler
* @memberof Intercom
*/

@@ -393,0 +299,0 @@ function (handler) {

@@ -1,1 +0,1 @@

[{"__symbolic":"module","version":4,"metadata":{"Intercom":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"../shared/intercom-config","name":"IntercomConfig"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/router","name":"Router"}]}]],"parameters":[{"__symbolic":"reference","module":"../shared/intercom-config","name":"IntercomConfig"},{"__symbolic":"reference","module":"@angular/router","name":"Router"}]}],"init":[{"__symbolic":"method"}],"boot":[{"__symbolic":"method"}],"shutdown":[{"__symbolic":"method"}],"update":[{"__symbolic":"method"}],"hide":[{"__symbolic":"method"}],"show":[{"__symbolic":"method"}],"showMessages":[{"__symbolic":"method"}],"showNewMessage":[{"__symbolic":"method"}],"trackEvent":[{"__symbolic":"method"}],"getVisitorId":[{"__symbolic":"method"}],"onShow":[{"__symbolic":"method"}],"onHide":[{"__symbolic":"method"}],"onUnreadCountChange":[{"__symbolic":"method"}]}}}}]
[{"__symbolic":"module","version":4,"metadata":{"Intercom":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable"}}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"../shared/intercom-config","name":"IntercomConfig"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/router","name":"Router"}]}]],"parameters":[{"__symbolic":"reference","module":"../shared/intercom-config","name":"IntercomConfig"},{"__symbolic":"reference","module":"@angular/router","name":"Router"}]}],"boot":[{"__symbolic":"method"}],"shutdown":[{"__symbolic":"method"}],"update":[{"__symbolic":"method"}],"hide":[{"__symbolic":"method"}],"show":[{"__symbolic":"method"}],"showMessages":[{"__symbolic":"method"}],"showNewMessage":[{"__symbolic":"method"}],"trackEvent":[{"__symbolic":"method"}],"getVisitorId":[{"__symbolic":"method"}],"onShow":[{"__symbolic":"method"}],"onHide":[{"__symbolic":"method"}],"onUnreadCountChange":[{"__symbolic":"method"}]}}}}]

@@ -1,1 +0,2 @@

export declare function loadIntercom(appId: any): void;
import { IntercomConfig } from '../shared/intercom-config';
export declare function loadIntercom(config: IntercomConfig): void;

@@ -13,28 +13,29 @@ "use strict";

}
function loadIntercom(appId) {
window.Intercom = intercomBootstrap();
createScript(appId);
function loadIntercom(config) {
id = config.appId;
var w = window;
var ic = w.Intercom;
if (typeof ic === 'function') {
ic('reattach_activator');
ic('update', config);
}
else {
var i_1 = function () {
i_1.c(arguments);
};
i_1.q = [];
i_1.c = function (args) {
i_1.q.push(args);
};
w.Intercom = i_1;
if (w.attachEvent) {
w.attachEvent('onload', l);
}
else {
w.addEventListener('load', l, false);
}
}
}
exports.loadIntercom = loadIntercom;
;
function createScript(appId) {
var scriptTag = document.createElement('script');
scriptTag.type = 'text/javascript';
scriptTag.async = true;
scriptTag.src = 'https://widget.intercom.io/widget/' + appId;
var s = document.getElementsByTagName('head')[0];
s.appendChild(scriptTag);
}
;
function intercomBootstrap() {
var Intercom = function () {
Intercom.c(arguments);
};
Intercom.q = [];
Intercom.c = function (args) {
Intercom.q.push(args);
};
return Intercom;
}
;
//# sourceMappingURL=load-intercom.js.map
{
"name": "ng-intercom",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "An Intercom wrapper for Angular",

@@ -5,0 +5,0 @@ "main": "./dist/index",

@@ -15,2 +15,5 @@ # Angular Intercom

### ALPHA VERSION
If you want to try the latest features, check out the 1.0.0-alpha branch! Features include automatic script loading and intercom directives! If you find an issue, please report it!
### Installation

@@ -17,0 +20,0 @@

@@ -1,9 +0,10 @@

import { Inject, Injectable, InjectionToken, isDevMode, Optional } from '@angular/core';
import { Inject, Injectable, InjectionToken, Optional, isDevMode } from '@angular/core';
import { Router } from '@angular/router';
import { IntercomConfig } from '../shared/intercom-config';
import { Any, BootInput } from '../types/boot-input';
import { loadIntercom } from '../util/load-intercom';
/**
* @description A provider with every Intercom.JS method
* A provider with every Intercom.JS method
* @export

@@ -18,3 +19,3 @@ * @class Intercom

) {
loadIntercom(config.appId);
loadIntercom(config);
if (config.updateOnRouterChange) {

@@ -30,29 +31,16 @@ this.router.events.subscribe(event => {

/**
* @description Method used to instantiate Intercom
* @param {object} [intercomData]
* @memberof Intercom
*
* @deprecated
* If you'd like to control when Intercom is loaded, you can use the 'boot' method. This is useful in situations like a one-page Javascript based application where the user may not be logged in when the page loads. You call this method with the standard intercomSettings object.
* @param {object} [intercomData] Your intercom configuration
*/
init(intercomData?: object) {
if (isDevMode()) {
console.warn('Intercom.init is deprecated and will be removed in a future release. Please use Intercom.boot.');
boot(intercomData?: BootInput) {
let data = {
...intercomData,
app_id: this.config.appId
}
return (<any>window).Intercom("boot", { app_id: this.config.appId, ...intercomData });
}
/**
* @description
* If you'd like to control when Intercom is loaded, you can use the 'boot' method. This is useful in situations like a one-page Javascript based application where the user may not be logged in when the page loads. You call this method with the standard intercomSettings object.
* @param {object} [intercomData] Your intercom configuration
* @memberof Intercom
*/
boot(intercomData?: object) {
return (<any>window).Intercom("boot", { app_id: this.config.appId, ...intercomData });
return (<any>window).Intercom('boot', data);
}
/**
* @description
* If you have the Respond product (combined with another product like Engage) you should call the Intercom shutdown method to clear your users’ conversations anytime they logout of your application. Otherwise, the cookie we use to track who was most recently logged in on a given device or computer will keep these conversations in the Messenger for one week. This method will effectively clear out any user data that you have been passing through the JS API.
* @memberof Intercom
*/

@@ -64,3 +52,2 @@ shutdown() {

/**
* @description
* Calling the update method without any other arguments will trigger the JavaScript to look for new messages that should be displayed to the current user (the one whose details are in the window.intercomSettings variable) and show them if they exist.

@@ -70,5 +57,4 @@ *

* @param {object} [data]
* @memberof Intercom
*/
update(data?: object) {
update(data?: Any) {
if (data) {

@@ -82,5 +68,3 @@ return (<any>window).Intercom("update", data);

/**
* @description
* This will hide the main Messenger panel if it is open. It will not hide the Messenger Launcher.
* @memberof Intercom
*/

@@ -92,3 +76,2 @@ hide() {

/**
* @description
* This will show the Messenger. If there are no conversations it will open with the new message view, if there are it will open with the message list.

@@ -99,3 +82,2 @@ *

* @param {string} [message]
* @memberof Intercom
*/

@@ -111,4 +93,3 @@ show(message?: string) {

/**
* @description To open the message window with the message list you can call `showMessages()`.
* @memberof Intercom
* To open the message window with the message list you can call `showMessages()`.
*/

@@ -120,7 +101,6 @@ showMessages() {

/**
* @description To open the message window with the new message view you can call showNewMessage().
* To open the message window with the new message view you can call showNewMessage().
*
* This function takes an optional parameter that can be used to pre-populate the message composer as shown below.
* @param {string} message
* @memberof Intercom
*/

@@ -136,3 +116,2 @@ showNewMessage(message?: string) {

/**
* @description
* You can submit an event using the trackEvent method. This will associate the event with the currently logged in user and send it to Intercom. The final parameter is a map that can be used to send optional metadata about the event.

@@ -143,3 +122,2 @@ *

* @param {*} [metadata]
* @memberof Intercom
*/

@@ -155,6 +133,4 @@ trackEvent(eventName: string, metadata?: any) {

/**
* @description
* A visitor is someone who goes to your site but does not use the messenger. You can track these visitors via the visitor user_id. This user_id can be used to retrieve the visitor or lead through the REST API.
* @returns {string}
* @memberof Intercom
*/

@@ -166,7 +142,6 @@ getVisitorId(): string {

/**
* @description Alias for getVisitorId()
* Alias for getVisitorId()
* @alias getVisitorId()
* @readonly
* @type {string}
* @memberof Intercom
*/

@@ -178,6 +153,4 @@ get visitorId(): string {

/**
* @description
* Gives you the ability to hook into the show event. Requires a function argument.
* @param {() => void} handler
* @memberof Intercom
*/

@@ -189,7 +162,5 @@ onShow(handler: () => void) {

/**
* @description
* Gives you the ability to hook into the hide event. Requires a function argument.
*
* @param {() => void} handler
* @memberof Intercom
*/

@@ -201,6 +172,4 @@ onHide(handler: () => void) {

/**
* @description
* This method allows you to register a function that will be called when the current number of unread messages changes.
* @param {(unreadCount?: number) => void} handler
* @memberof Intercom
*/

@@ -207,0 +176,0 @@ onUnreadCountChange(handler: (unreadCount?: number) => void) {

@@ -0,1 +1,2 @@

import { IntercomConfig } from '../shared/intercom-config';

@@ -14,24 +15,24 @@ let id: string;

export function loadIntercom(appId: any) {
(<any>window).Intercom = intercomBootstrap();
createScript(appId);
export function loadIntercom(config: IntercomConfig) {
id = config.appId;
var w = <any>window;
var ic = w.Intercom;
if (typeof ic === 'function') {
ic('reattach_activator');
ic('update', config);
} else {
let i: any = function () {
i.c(arguments);
};
i.q = [];
i.c = function (args: any) {
i.q.push(args);
};
w.Intercom = i;
if (w.attachEvent) {
w.attachEvent('onload', l);
} else {
w.addEventListener('load', l, false);
}
}
};
function createScript(appId: string) {
var scriptTag = document.createElement('script');
scriptTag.type = 'text/javascript';
scriptTag.async = true;
scriptTag.src = 'https://widget.intercom.io/widget/' + appId;
var s = document.getElementsByTagName('head')[0];
s.appendChild(scriptTag);
};
function intercomBootstrap() {
let Intercom: any = function () {
Intercom.c(arguments)
};
Intercom.q = [];
Intercom.c = function (args: any) {
Intercom.q.push(args)
};
return Intercom;
};

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet