@dataclouder/ngx-agent-cards 0.1.65 → 0.1.66

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.
@@ -1958,6 +1958,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
1958
1958
 
1959
1959
  class MessageProcessingService {
1960
1960
  processMessage(message, conversationSettings) {
1961
+ console.log('processMessage conversation data', message, conversationSettings);
1961
1962
  const processedMessage = {
1962
1963
  ...message,
1963
1964
  messageId: message.messageId || nanoid(),
@@ -2794,6 +2795,7 @@ class ConversationService {
2794
2795
  if (!conversationSettings.avatarImages?.user) {
2795
2796
  conversationSettings.avatarImages.user = this.userService.user().urlPicture || DEFUALT_USER_AVATAR;
2796
2797
  }
2798
+ console.log('initConversationWithSettings final antes de set', conversationSettings);
2797
2799
  this.conversationSettingsState.set(conversationSettings);
2798
2800
  this.dynamicFlowService.setConversationFlow(conversationFlow);
2799
2801
  await this.initConversation();
@@ -4395,6 +4397,7 @@ class DCChatComponent {
4395
4397
  this.conversationService.setDestroyed(false);
4396
4398
  this.chatMonitorService.isConversationActive.set(true);
4397
4399
  if (this.conversationSettings) {
4400
+ console.log('iniciando conversación', this.conversationSettings);
4398
4401
  await this.conversationService.initConversationWithSettings(this.conversationSettings, this.conversationFlow);
4399
4402
  }
4400
4403
  else {