@deepdesk/deepdesk-sdk 17.1.7-beta.2 → 17.1.7-beta.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/index.cjs.js +2 -2
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.iife.js +14 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2241,6 +2241,7 @@ declare class DeepdeskSDK {
|
|
|
2241
2241
|
* Only refresh text suggestions when the agent is not typing.
|
|
2242
2242
|
*/
|
|
2243
2243
|
refresh(): Promise<void>;
|
|
2244
|
+
private syncInputMediator;
|
|
2244
2245
|
notifyExternalSuggestion(suggestion: StageSuggestion): void;
|
|
2245
2246
|
/**
|
|
2246
2247
|
* Evaluate assistant
|
|
@@ -2343,6 +2344,7 @@ declare class DeepdeskSDK {
|
|
|
2343
2344
|
}): Promise<void>;
|
|
2344
2345
|
translateMessages(params: TranslationRequest): Promise<TranslationResponse>;
|
|
2345
2346
|
checkForTrialMode(agentId: string): Promise<void>;
|
|
2347
|
+
private refreshTextSuggestions;
|
|
2346
2348
|
private refreshWidgetSuggestions;
|
|
2347
2349
|
}
|
|
2348
2350
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2241,6 +2241,7 @@ declare class DeepdeskSDK {
|
|
|
2241
2241
|
* Only refresh text suggestions when the agent is not typing.
|
|
2242
2242
|
*/
|
|
2243
2243
|
refresh(): Promise<void>;
|
|
2244
|
+
private syncInputMediator;
|
|
2244
2245
|
notifyExternalSuggestion(suggestion: StageSuggestion): void;
|
|
2245
2246
|
/**
|
|
2246
2247
|
* Evaluate assistant
|
|
@@ -2343,6 +2344,7 @@ declare class DeepdeskSDK {
|
|
|
2343
2344
|
}): Promise<void>;
|
|
2344
2345
|
translateMessages(params: TranslationRequest): Promise<TranslationResponse>;
|
|
2345
2346
|
checkForTrialMode(agentId: string): Promise<void>;
|
|
2347
|
+
private refreshTextSuggestions;
|
|
2346
2348
|
private refreshWidgetSuggestions;
|
|
2347
2349
|
}
|
|
2348
2350
|
|