@deepdesk/deepdesk-sdk 14.1.1-beta.3 → 14.1.1-beta.5

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.d.mts CHANGED
@@ -2295,8 +2295,9 @@ declare class DeepdeskSDK {
2295
2295
  * By default includes 'stored-transcript' and 'tags'.
2296
2296
  */
2297
2297
  evaluateConversationAssistant(event: 'accepted' | 'new-message' | 'ended', options?: {
2298
- payload?: Record<string, any>;
2299
- include?: Array<'in-memory-transcript' | 'stored-transcript' | 'tags'>;
2298
+ input?: Record<string, any>;
2299
+ transcript?: TranscriptOption;
2300
+ includeTags?: boolean;
2300
2301
  showCuesInWidget?: boolean;
2301
2302
  }): Promise<void>;
2302
2303
  /**
package/dist/index.d.ts CHANGED
@@ -2295,8 +2295,9 @@ declare class DeepdeskSDK {
2295
2295
  * By default includes 'stored-transcript' and 'tags'.
2296
2296
  */
2297
2297
  evaluateConversationAssistant(event: 'accepted' | 'new-message' | 'ended', options?: {
2298
- payload?: Record<string, any>;
2299
- include?: Array<'in-memory-transcript' | 'stored-transcript' | 'tags'>;
2298
+ input?: Record<string, any>;
2299
+ transcript?: TranscriptOption;
2300
+ includeTags?: boolean;
2300
2301
  showCuesInWidget?: boolean;
2301
2302
  }): Promise<void>;
2302
2303
  /**