@ada-support/embed2 1.13.6 → 1.14.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/README.md +2 -2
- package/dist/npm-entry/client/components/ChatFrame/chatFrameEvents/chatterEvent/index.d.ts +6 -1
- package/dist/npm-entry/client/components/Container/host-facing-meta-fields.d.ts +5 -0
- package/dist/npm-entry/client/embed.d.ts +1 -0
- package/dist/npm-entry/common/constants/events.d.ts +2 -0
- package/dist/npm-entry/common/helpers/host-telemetry.d.ts +8 -0
- package/dist/npm-entry/common/helpers/messaging-auth-state.d.ts +34 -0
- package/dist/npm-entry/common/helpers/programmatic-control.d.ts +5 -0
- package/dist/npm-entry/common/helpers/with-timeout.d.ts +10 -0
- package/dist/npm-entry/common/lib/channel.d.ts +43 -0
- package/dist/npm-entry/common/types/extended-api.d.ts +191 -0
- package/dist/npm-entry/common/types/index.d.ts +2 -2
- package/dist/npm-entry/common/types/store-state.d.ts +6 -0
- package/dist/npm-entry/index-npm.d.ts +1 -1
- package/dist/npm-entry/index.js +784 -92
- package/dist/npm-entry/interface.d.ts +2 -2
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { AdaEmbedAPI } from "@ada-support/embed-types";
|
|
2
1
|
import { AdaEmbedError } from "common/helpers/errors";
|
|
2
|
+
import type { ExtendedAdaEmbedAPI } from "common/types/extended-api";
|
|
3
3
|
export declare const EMBED_NOT_INITIALIZED_ERROR: AdaEmbedError;
|
|
4
4
|
/**
|
|
5
5
|
* Returns the public Embed methods to be bound to the window object.
|
|
6
6
|
*/
|
|
7
|
-
export declare function createEmbedInterface():
|
|
7
|
+
export declare function createEmbedInterface(): ExtendedAdaEmbedAPI;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ada-support/embed2",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/npm-entry",
|
|
6
6
|
"typings": "dist/npm-entry/index-npm.d.ts",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@ada-support/embed-types": "^1.9.2",
|
|
94
|
-
"@ada-support/web-storage": "^1.
|
|
94
|
+
"@ada-support/web-storage": "^1.3.0",
|
|
95
95
|
"@babel/runtime-corejs3": "^7.26.10",
|
|
96
96
|
"@sentry/browser": "^8.33.0",
|
|
97
97
|
"@sentry/types": "^8.33.1",
|