Skip to content

Commit 5de5e9e

Browse files
committed
fixes: QA fixes
1 parent aa2aa24 commit 5de5e9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/gong/actions/get-extensive-data/get-extensive-data.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default {
8383
exposedFieldsContent: {
8484
type: "object",
8585
label: "Exposed Fields Content",
86-
description: "Specify which fields to include in the response for the content",
86+
description: "Specify which fields to include in the response for the content. Example object: {'structure': false, 'topics': false, 'trackers': false, 'trackerOccurrences': false, 'pointsOfInterest': false, 'brief': true, 'outline': true, 'highlights': true, 'callOutcome': true, 'keyPoints': true}",
8787
default: {
8888
"structure": "false",
8989
"topics": "false",
@@ -101,7 +101,7 @@ export default {
101101
exposedFieldsInteraction: {
102102
type: "object",
103103
label: "Exposed Fields Interaction",
104-
description: "Specify which fields to include in the response for the interaction",
104+
description: "Specify which fields to include in the response for the interaction. Example object: {'speakers': true, 'video': true, 'personInteractionStats': true, 'questions': true}",
105105
default: {
106106
"speakers": "false",
107107
"video": "false",
@@ -157,7 +157,7 @@ export default {
157157

158158
const contentSelector = {
159159
"context": context || "None",
160-
...(contextTiming.length > 0 && {
160+
...(contextTiming?.length > 0 && {
161161
"contextTiming": contextTiming,
162162
}),
163163
"exposedFields": {

0 commit comments

Comments
 (0)