@deepdesk/deepdesk-sdk 17.0.0 → 17.0.1-beta.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.d.mts CHANGED
@@ -720,6 +720,11 @@ declare namespace Server {
720
720
  last_name?: string;
721
721
  default_locale?: string;
722
722
  };
723
+ type ConversationAssistant = {
724
+ id: number;
725
+ code: string;
726
+ name: string;
727
+ };
723
728
  /**
724
729
  * Profile
725
730
  */
@@ -736,6 +741,9 @@ declare namespace Server {
736
741
  conversation_accepted_assistant: string | null;
737
742
  conversation_new_message_assistant: string | null;
738
743
  conversation_ended_assistant: string | null;
744
+ on_conversation_accepted_assistants: Array<ConversationAssistant>;
745
+ on_conversation_new_message_assistants: Array<ConversationAssistant>;
746
+ on_conversation_ended_assistants: Array<ConversationAssistant>;
739
747
  /**
740
748
  * @deprecated in favor of `knowledge_assistant_new`
741
749
  */
package/dist/index.d.ts CHANGED
@@ -720,6 +720,11 @@ declare namespace Server {
720
720
  last_name?: string;
721
721
  default_locale?: string;
722
722
  };
723
+ type ConversationAssistant = {
724
+ id: number;
725
+ code: string;
726
+ name: string;
727
+ };
723
728
  /**
724
729
  * Profile
725
730
  */
@@ -736,6 +741,9 @@ declare namespace Server {
736
741
  conversation_accepted_assistant: string | null;
737
742
  conversation_new_message_assistant: string | null;
738
743
  conversation_ended_assistant: string | null;
744
+ on_conversation_accepted_assistants: Array<ConversationAssistant>;
745
+ on_conversation_new_message_assistants: Array<ConversationAssistant>;
746
+ on_conversation_ended_assistants: Array<ConversationAssistant>;
739
747
  /**
740
748
  * @deprecated in favor of `knowledge_assistant_new`
741
749
  */