n8n-nodes-tukimate 1.6.2 → 1.6.3
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.
|
@@ -171,9 +171,7 @@ async function getConversationTypeOptions() {
|
|
|
171
171
|
}
|
|
172
172
|
// Fields to keep for simplified output per resource (using API field names - snake_case)
|
|
173
173
|
const SIMPLIFIED_FIELDS = {
|
|
174
|
-
conversation: ['id', 'title', 'description', 'date_time', 'duration_minutes', '
|
|
175
|
-
' conversation_type_key',
|
|
176
|
-
'ai_context', 'sentiment'],
|
|
174
|
+
conversation: ['id', 'title', 'description', 'date_time', 'duration_minutes', 'team_id', 'project_id', 'client_id', 'source_key', 'source_meeting_id', 'conversation_type_key', 'has_analyses'],
|
|
177
175
|
contact: ['id', 'first_name', 'last_name', 'email', 'phone', 'company_name', 'job_title'],
|
|
178
176
|
team: ['id', 'name', 'description'],
|
|
179
177
|
project: ['id', 'name', 'description', 'status', 'client_id', 'ai_context'],
|
|
@@ -1996,7 +1994,7 @@ class TukiMate {
|
|
|
1996
1994
|
if (additionalOptions.projectId)
|
|
1997
1995
|
query.project = additionalOptions.projectId;
|
|
1998
1996
|
if (additionalOptions.externalMeetingId)
|
|
1999
|
-
query.
|
|
1997
|
+
query.sourceMeetingId = additionalOptions.externalMeetingId;
|
|
2000
1998
|
if (additionalOptions.offset !== undefined)
|
|
2001
1999
|
query.offset = additionalOptions.offset;
|
|
2002
2000
|
if (additionalOptions.dateFrom)
|