@deepdesk/deepdesk-sdk 17.1.7-beta.7 → 17.2.0
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/index.cjs.js +8 -8
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +34 -34
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2070,8 +2070,9 @@ declare class DeepdeskSDK {
|
|
|
2070
2070
|
isMounted: boolean;
|
|
2071
2071
|
instanceId: number;
|
|
2072
2072
|
private shouldRender;
|
|
2073
|
+
private ws;
|
|
2073
2074
|
store: Store;
|
|
2074
|
-
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, }: SDKOptions);
|
|
2075
|
+
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, websocketClient, }: SDKOptions);
|
|
2075
2076
|
get state(): {
|
|
2076
2077
|
assistants: State$2;
|
|
2077
2078
|
auth: State$3;
|
package/dist/index.d.ts
CHANGED
|
@@ -2070,8 +2070,9 @@ declare class DeepdeskSDK {
|
|
|
2070
2070
|
isMounted: boolean;
|
|
2071
2071
|
instanceId: number;
|
|
2072
2072
|
private shouldRender;
|
|
2073
|
+
private ws;
|
|
2073
2074
|
store: Store;
|
|
2074
|
-
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, }: SDKOptions);
|
|
2075
|
+
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, websocketClient, }: SDKOptions);
|
|
2075
2076
|
get state(): {
|
|
2076
2077
|
assistants: State$2;
|
|
2077
2078
|
auth: State$3;
|