@deepdesk/deepdesk-sdk 17.1.7-beta.6 → 17.1.7-beta.8
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +37 -37
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -790,6 +790,7 @@ declare namespace Server {
|
|
|
790
790
|
type OnDemandAssistant = {
|
|
791
791
|
assistant: string;
|
|
792
792
|
assistant_name: string;
|
|
793
|
+
display_name?: string;
|
|
793
794
|
is_pinned: boolean;
|
|
794
795
|
};
|
|
795
796
|
type ChatHistory = {
|
|
@@ -2069,8 +2070,9 @@ declare class DeepdeskSDK {
|
|
|
2069
2070
|
isMounted: boolean;
|
|
2070
2071
|
instanceId: number;
|
|
2071
2072
|
private shouldRender;
|
|
2073
|
+
private ws;
|
|
2072
2074
|
store: Store;
|
|
2073
|
-
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, }: SDKOptions);
|
|
2075
|
+
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, websocketClient, }: SDKOptions);
|
|
2074
2076
|
get state(): {
|
|
2075
2077
|
assistants: State$2;
|
|
2076
2078
|
auth: State$3;
|
package/dist/index.d.ts
CHANGED
|
@@ -790,6 +790,7 @@ declare namespace Server {
|
|
|
790
790
|
type OnDemandAssistant = {
|
|
791
791
|
assistant: string;
|
|
792
792
|
assistant_name: string;
|
|
793
|
+
display_name?: string;
|
|
793
794
|
is_pinned: boolean;
|
|
794
795
|
};
|
|
795
796
|
type ChatHistory = {
|
|
@@ -2069,8 +2070,9 @@ declare class DeepdeskSDK {
|
|
|
2069
2070
|
isMounted: boolean;
|
|
2070
2071
|
instanceId: number;
|
|
2071
2072
|
private shouldRender;
|
|
2073
|
+
private ws;
|
|
2072
2074
|
store: Store;
|
|
2073
|
-
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, }: SDKOptions);
|
|
2075
|
+
constructor({ deepdeskUrl, version, locale, token, fetch, productName, createCustomChannel, websocketClient, }: SDKOptions);
|
|
2074
2076
|
get state(): {
|
|
2075
2077
|
assistants: State$2;
|
|
2076
2078
|
auth: State$3;
|