@ada-support/embed2 1.1.1 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/npm-entry/client/components/IFrame/index.d.ts +1 -0
- package/dist/npm-entry/client/lib/connect.d.ts +4 -3
- package/dist/npm-entry/client/store/actions/index.d.ts +5 -5
- package/dist/npm-entry/common/helpers/getAlignment.d.ts +1 -1
- package/dist/npm-entry/common/lib/ConnectContainer/index.d.ts +4 -3
- package/dist/npm-entry/common/types/events.d.ts +1 -1
- package/dist/npm-entry/common/types/index.d.ts +4 -4
- package/dist/npm-entry/common/types/store.d.ts +1 -1
- package/dist/npm-entry/frames/lib/safe-storage/index.d.ts +1 -1
- package/dist/npm-entry/index.js +36 -8
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { ComponentType
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import type { ComponentType } from "preact";
|
|
2
|
+
import { h } from "preact";
|
|
3
|
+
import type { ActionCreators } from "common/constants/actions";
|
|
4
|
+
import type { Dispatch, MapDispatchToProps, MapStateToProps } from "common/types/store";
|
|
4
5
|
export declare function connect<MSP extends MapStateToProps, MDP extends MapDispatchToProps>(mapStateToProps?: MSP, mapDispatchToProps?: MDP): <O>(WrappedComponent: ComponentType<O & ReturnType<MSP> & ReturnType<MDP>>) => (ownProps: O) => h.JSX.Element;
|
|
5
6
|
export declare function bindActionCreators(action: Partial<ActionCreators>, dispatch: Dispatch): (payload?: object) => Promise<import("../../common/types/store-state").StoreState>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { ActionCreators } from "common/constants/actions";
|
|
2
|
-
import { MessagePayload } from "common/types/events";
|
|
3
|
-
import { StoreAction } from "common/types/index";
|
|
4
|
-
import { DirectDispatch } from "common/types/store";
|
|
5
|
-
import { StoreState } from "common/types/store-state";
|
|
1
|
+
import type { ActionCreators } from "common/constants/actions";
|
|
2
|
+
import type { MessagePayload } from "common/types/events";
|
|
3
|
+
import type { StoreAction } from "common/types/index";
|
|
4
|
+
import type { DirectDispatch } from "common/types/store";
|
|
5
|
+
import type { StoreState } from "common/types/store-state";
|
|
6
6
|
declare const actions: {
|
|
7
7
|
[key in ActionCreators]: ({ currentState, payload, dispatch }: {
|
|
8
8
|
payload?: MessagePayload;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { StartOptions } from "common/types/store-state";
|
|
1
|
+
import type { StartOptions } from "common/types/store-state";
|
|
2
2
|
export declare function getAlignment(adaSettings: StartOptions): "right" | "left";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import type { ComponentType } from "preact";
|
|
2
|
+
import { Component, h } from "preact";
|
|
3
|
+
import type { MapDispatchToProps, MapStateToProps, StoreProxyInterface } from "common/types/store";
|
|
4
|
+
import type { StoreState } from "common/types/store-state";
|
|
4
5
|
declare type Props<O, MSP extends MapStateToProps, MDP extends MapDispatchToProps> = {
|
|
5
6
|
store: StoreProxyInterface;
|
|
6
7
|
WrappedComponent: ComponentType<O & ReturnType<MSP> & ReturnType<MDP>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FetchEventStatusType } from "common/constants/events";
|
|
1
|
+
import type { FetchEventStatusType } from "common/constants/events";
|
|
2
2
|
import type { EmbedEvent, EmbedRequestEvent, PayloadByEvent } from "common/lib/channel";
|
|
3
3
|
export interface MessagePayload {
|
|
4
4
|
[key: string]: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventSubscriptionCallback } from "client/helpers/event-subscriptions";
|
|
2
|
-
import { ActionTypes } from "common/constants/actions";
|
|
3
|
-
import { MetaFieldPayload } from "common/types/store";
|
|
4
|
-
import { StartOptions, StoreState } from "./store-state";
|
|
1
|
+
import type { EventSubscriptionCallback } from "client/helpers/event-subscriptions";
|
|
2
|
+
import type { ActionTypes } from "common/constants/actions";
|
|
3
|
+
import type { MetaFieldPayload } from "common/types/store";
|
|
4
|
+
import type { StartOptions, StoreState } from "./store-state";
|
|
5
5
|
export interface StoreAction {
|
|
6
6
|
[key: string]: string | object | number;
|
|
7
7
|
type: ActionTypes;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CHATTER_CREATED_STORAGE_KEY, CHATTER_TOKEN_STORAGE_KEY, IN_LIVE_CHAT_STORAGE_KEY, ZD_MESSAGING_CHATTER_CREATED_STORAGE_KEY, ZD_MESSAGING_EXTERNAL_USER_ID_STORAGE_KEY, ZD_PREVIOUS_TAGS_STORAGE_KEY, ZD_SESSION_STORAGE_KEY } from "common/constants/storage-keys";
|
|
1
|
+
import type { CHATTER_CREATED_STORAGE_KEY, CHATTER_TOKEN_STORAGE_KEY, IN_LIVE_CHAT_STORAGE_KEY, ZD_MESSAGING_CHATTER_CREATED_STORAGE_KEY, ZD_MESSAGING_EXTERNAL_USER_ID_STORAGE_KEY, ZD_PREVIOUS_TAGS_STORAGE_KEY, ZD_SESSION_STORAGE_KEY } from "common/constants/storage-keys";
|
|
2
2
|
export declare enum StorageTypes {
|
|
3
3
|
Local = "local",
|
|
4
4
|
Session = "session"
|
package/dist/npm-entry/index.js
CHANGED
|
@@ -8788,7 +8788,7 @@ var client = new error_tracker_BrowserClient({
|
|
|
8788
8788
|
return event;
|
|
8789
8789
|
},
|
|
8790
8790
|
environment: "production",
|
|
8791
|
-
release: "1.1.
|
|
8791
|
+
release: "1.1.4-729d237",
|
|
8792
8792
|
sampleRate: 0.25,
|
|
8793
8793
|
autoSessionTracking: false,
|
|
8794
8794
|
// Integrations don't seem to work with Sentry: https://github.com/getsentry/sentry-javascript/issues/2541
|
|
@@ -9490,7 +9490,7 @@ function getEmbedURL(_ref) {
|
|
|
9490
9490
|
polyfillVersionString = "legacy";
|
|
9491
9491
|
}
|
|
9492
9492
|
|
|
9493
|
-
return concat_default()(_context5 = concat_default()(_context6 = concat_default()(_context7 = "".concat(host, "/embed/")).call(_context7, polyfillVersionString, "/")).call(_context6, frameName, "/")).call(_context5, "
|
|
9493
|
+
return concat_default()(_context5 = concat_default()(_context6 = concat_default()(_context7 = "".concat(host, "/embed/")).call(_context7, polyfillVersionString, "/")).call(_context6, frameName, "/")).call(_context5, "729d237", "/index.html");
|
|
9494
9494
|
}
|
|
9495
9495
|
/**
|
|
9496
9496
|
* Generate the Chat / API URL
|
|
@@ -9663,7 +9663,6 @@ var CHATTER_STORAGE_KEY = CHATTER_TOKEN_STORAGE_KEY;
|
|
|
9663
9663
|
|
|
9664
9664
|
|
|
9665
9665
|
|
|
9666
|
-
|
|
9667
9666
|
var StorageTypes;
|
|
9668
9667
|
|
|
9669
9668
|
(function (StorageTypes) {
|
|
@@ -11347,6 +11346,7 @@ var IFrame = /*#__PURE__*/function (_Component) {
|
|
|
11347
11346
|
value: function render() {
|
|
11348
11347
|
var _this$props4 = this.props,
|
|
11349
11348
|
name = _this$props4.name,
|
|
11349
|
+
roleDescription = _this$props4.roleDescription,
|
|
11350
11350
|
onTransitionEnd = _this$props4.onTransitionEnd,
|
|
11351
11351
|
styles = _this$props4.styles,
|
|
11352
11352
|
title = _this$props4.title;
|
|
@@ -11362,7 +11362,7 @@ var IFrame = /*#__PURE__*/function (_Component) {
|
|
|
11362
11362
|
title: title || iFrameName,
|
|
11363
11363
|
className: iFrameName,
|
|
11364
11364
|
onTransitionEnd: onTransitionEnd,
|
|
11365
|
-
"aria-roledescription":
|
|
11365
|
+
"aria-roledescription": roleDescription,
|
|
11366
11366
|
role: "application"
|
|
11367
11367
|
});
|
|
11368
11368
|
}
|
|
@@ -11403,6 +11403,7 @@ function mapDispatchToProps(dispatch) {
|
|
|
11403
11403
|
|
|
11404
11404
|
|
|
11405
11405
|
|
|
11406
|
+
|
|
11406
11407
|
function ButtonFrame_createSuper(Derived) { var hasNativeReflectConstruct = ButtonFrame_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,getPrototypeOf/* default */.Z)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0,getPrototypeOf/* default */.Z)(this).constructor; result = construct_default()(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0,possibleConstructorReturn/* default */.Z)(this, result); }; }
|
|
11407
11408
|
|
|
11408
11409
|
function ButtonFrame_isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !(construct_default())) return false; if ((construct_default()).sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(construct_default()(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
@@ -11510,12 +11511,25 @@ var ButtonFrame = /*#__PURE__*/function (_Component) {
|
|
|
11510
11511
|
value: function render() {
|
|
11511
11512
|
var _this2 = this;
|
|
11512
11513
|
|
|
11514
|
+
var client = this.props.client;
|
|
11515
|
+
|
|
11516
|
+
var roleDescription = function roleDescription() {
|
|
11517
|
+
var _context11;
|
|
11518
|
+
|
|
11519
|
+
if (!(client !== null && client !== void 0 && client.handle)) {
|
|
11520
|
+
return "Chat Button";
|
|
11521
|
+
}
|
|
11522
|
+
|
|
11523
|
+
return "".concat(client.handle.charAt(0).toUpperCase() + slice_default()(_context11 = client.handle).call(_context11, 1), " Chat Button");
|
|
11524
|
+
};
|
|
11525
|
+
|
|
11513
11526
|
return v(StoreContext.Consumer, null, function (store) {
|
|
11514
11527
|
return v(MessageServiceContext.Consumer, null, function (messageService) {
|
|
11515
11528
|
return v(components_IFrame, {
|
|
11516
11529
|
title: "Chat with bot",
|
|
11517
11530
|
styles: _this2.styles,
|
|
11518
11531
|
name: BUTTON_IFRAME,
|
|
11532
|
+
roleDescription: roleDescription(),
|
|
11519
11533
|
store: store,
|
|
11520
11534
|
messageService: messageService,
|
|
11521
11535
|
onTransitionEnd: _this2.handleOnTransitionEndBound
|
|
@@ -11559,6 +11573,7 @@ var isMobile = /(iPhone)|(iPod)|(android)|(webOS)/i.exec(navigator.userAgent) !=
|
|
|
11559
11573
|
|
|
11560
11574
|
|
|
11561
11575
|
|
|
11576
|
+
|
|
11562
11577
|
function ChatFrame_createSuper(Derived) { var hasNativeReflectConstruct = ChatFrame_isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0,getPrototypeOf/* default */.Z)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0,getPrototypeOf/* default */.Z)(this).constructor; result = construct_default()(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0,possibleConstructorReturn/* default */.Z)(this, result); }; }
|
|
11563
11578
|
|
|
11564
11579
|
function ChatFrame_isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !(construct_default())) return false; if ((construct_default()).sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(construct_default()(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
@@ -12325,8 +12340,20 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
|
|
|
12325
12340
|
value: function render() {
|
|
12326
12341
|
var _this$props12 = this.props,
|
|
12327
12342
|
name = _this$props12.name,
|
|
12343
|
+
client = _this$props12.client,
|
|
12328
12344
|
isDrawerOpen = _this$props12.isDrawerOpen;
|
|
12329
12345
|
var iFrameName = "ada-".concat(name, "-frame");
|
|
12346
|
+
|
|
12347
|
+
var roleDescription = function roleDescription() {
|
|
12348
|
+
var _context23;
|
|
12349
|
+
|
|
12350
|
+
if (!(client !== null && client !== void 0 && client.handle)) {
|
|
12351
|
+
return "Chat Window";
|
|
12352
|
+
}
|
|
12353
|
+
|
|
12354
|
+
return "".concat(client.handle.charAt(0).toUpperCase() + slice_default()(_context23 = client.handle).call(_context23, 1), " Chat Window");
|
|
12355
|
+
};
|
|
12356
|
+
|
|
12330
12357
|
return v("iframe", {
|
|
12331
12358
|
src: this.url,
|
|
12332
12359
|
scrolling: "no",
|
|
@@ -12338,6 +12365,7 @@ var ChatFrame = /*#__PURE__*/function (_Component) {
|
|
|
12338
12365
|
title: iFrameName,
|
|
12339
12366
|
className: iFrameName,
|
|
12340
12367
|
"aria-expanded": isDrawerOpen,
|
|
12368
|
+
"aria-roledescription": roleDescription(),
|
|
12341
12369
|
allowTransparency: true,
|
|
12342
12370
|
allowFullScreen: true,
|
|
12343
12371
|
onLoad: this.frameLoaded.bind(this)
|
|
@@ -14380,7 +14408,7 @@ window.__AdaEmbedConstructor = Embed;
|
|
|
14380
14408
|
/* harmony export */ });
|
|
14381
14409
|
var isModern = new RegExp("((CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS)[ +]+(15|(1[6-9]|[2-9]\\d|\\d{3,}))[_.]\\d+(?:[_.]\\d+)?)|((Chromium|Chrome)\\/(99|([1-9]\\d\\d|\\d{4,}))\\.\\d+(?:\\.\\d+)?)|(Version\\/(15|(1[6-9]|[2-9]\\d|\\d{3,}))\\.\\d+(?:\\.\\d+)? Safari\\/)|(Firefox\\/(98|(99|\\d{3,}))\\.\\d+\\.\\d+)|(Firefox\\/(98|(99|\\d{3,}))\\.\\d+(pre|[ab]\\d+[a-z]*)?)").test(navigator.userAgent);
|
|
14382
14410
|
var isProduction = "production" === "production";
|
|
14383
|
-
var embed2Version = "
|
|
14411
|
+
var embed2Version = "729d237";
|
|
14384
14412
|
|
|
14385
14413
|
/***/ }),
|
|
14386
14414
|
|
|
@@ -14726,9 +14754,9 @@ function _log() {
|
|
|
14726
14754
|
service: "embed",
|
|
14727
14755
|
env: "production",
|
|
14728
14756
|
embedVersion: 2,
|
|
14729
|
-
version: "1.1.
|
|
14757
|
+
version: "1.1.4",
|
|
14730
14758
|
isNpm: true,
|
|
14731
|
-
commitHash: "
|
|
14759
|
+
commitHash: "729d237"
|
|
14732
14760
|
}))
|
|
14733
14761
|
});
|
|
14734
14762
|
|
|
@@ -25669,7 +25697,7 @@ function _loadClientChunk() {
|
|
|
25669
25697
|
polyfillVersionString = "legacy";
|
|
25670
25698
|
}
|
|
25671
25699
|
|
|
25672
|
-
clientScriptSource = concat_default()(_context17 = concat_default()(_context18 = "".concat(host, "/embed/")).call(_context18, polyfillVersionString, "/client/")).call(_context17, "
|
|
25700
|
+
clientScriptSource = concat_default()(_context17 = concat_default()(_context18 = "".concat(host, "/embed/")).call(_context18, polyfillVersionString, "/client/")).call(_context17, "729d237", "/index.js");
|
|
25673
25701
|
} // `window.__AdaEmbedConstructor` gets created in the "client" bundle
|
|
25674
25702
|
|
|
25675
25703
|
|