@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.1.20260112 → 0.2.20260112

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.
Files changed (2) hide show
  1. package/index.d.ts +336 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1070,10 +1070,36 @@ declare namespace gapi.client {
1070
1070
  interface GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPoint {
1071
1071
  /** The measure related to conversations. */
1072
1072
  conversationMeasure?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointConversationMeasure;
1073
+ /** The measure related to dialogflow interactions. */
1074
+ dialogflowInteractionMeasure?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointDialogflowInteractionMeasure;
1073
1075
  /** The interval that this data point represents. * If this is the total data point, the interval is [starting create time, ending create time) from the request. * If this a data point from the time series, the interval is [time, time + time granularity from the request). */
1074
1076
  interval?: GoogleTypeInterval;
1075
1077
  }
1076
1078
  interface GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointConversationMeasure {
1079
+ /** The number of conversations that were assigned to an AA human supervisor. */
1080
+ aaSupervisorAssignedConversationsCount?: number;
1081
+ /** The number of conversations that were dropped, i.e. escalated but not assigned to an AA human supervisor. */
1082
+ aaSupervisorDroppedConversationsCount?: number;
1083
+ /** The number of conversations that were escalated to an AA human supervisor for intervention. */
1084
+ aaSupervisorEscalatedConversationsCount?: number;
1085
+ /** The number of conversations scanned by the AA human supervisor. */
1086
+ aaSupervisorMonitoredConversationsCount?: number;
1087
+ /** The number of conversations transferred to a human agent. */
1088
+ aaSupervisorTransferredToHumanAgentConvCount?: number;
1089
+ /** Count of agent messages that triggered an Ai Coach Suggestion. */
1090
+ aiCoachSuggestionAgentMessageTriggerCount?: number;
1091
+ /** Count of Ai Coach Suggestion that has been used by agents. */
1092
+ aiCoachSuggestionAgentUsageCount?: number;
1093
+ /** Proportion of Ai Coach Suggestion that has been used by agents. */
1094
+ aiCoachSuggestionAgentUsageRatio?: number;
1095
+ /** Count of customer messages that triggered an Ai Coach Suggestion. */
1096
+ aiCoachSuggestionCustomerMessageTriggerCount?: number;
1097
+ /** Proportion of customer messages that triggered an Ai Coach Suggestion. */
1098
+ aiCoachSuggestionCustomerMessageTriggerRatio?: number;
1099
+ /** Count of end_of_utterance trigger event messages that triggered an Ai Coach Suggestion. */
1100
+ aiCoachSuggestionMessageTriggerCount?: number;
1101
+ /** Proportion of end_of_utterance trigger event messages that triggered an Ai Coach Suggestion. */
1102
+ aiCoachSuggestionMessageTriggerRatio?: number;
1077
1103
  /** The average agent's sentiment score. */
1078
1104
  averageAgentSentimentScore?: number;
1079
1105
  /** The average client's sentiment score. */
@@ -1088,12 +1114,78 @@ declare namespace gapi.client {
1088
1114
  averageQaQuestionNormalizedScore?: number;
1089
1115
  /** The average silence percentage. */
1090
1116
  averageSilencePercentage?: number;
1117
+ /** Average edit distance of the summarization suggestions. Edit distance (also called as levenshtein distance) is calculated by summing up number of insertions, deletions and substitutions required to transform the summization feedback to the original summary suggestion. */
1118
+ averageSummarizationSuggestionEditDistance?: number;
1119
+ /** Normalized Average edit distance of the summarization suggestions. Edit distance (also called as levenshtein distance) is calculated by summing up number of insertions, deletions and substitutions required to transform the summization feedback to the original summary suggestion. Normalized edit distance is the average of (edit distance / summary length). */
1120
+ averageSummarizationSuggestionNormalizedEditDistance?: number;
1091
1121
  /** The average turn count. */
1092
1122
  averageTurnCount?: number;
1123
+ /** The exponential moving average of the sentiment score of client turns in the conversation. */
1124
+ avgConversationClientTurnSentimentEma?: number;
1125
+ /** The number of conversations that were contained. */
1126
+ containedConversationCount?: number;
1127
+ /** The percentage of conversations that were contained. */
1128
+ containedConversationRatio?: number;
1129
+ /** Count of conversations that has Ai Coach Suggestions. */
1130
+ conversationAiCoachSuggestionCount?: number;
1131
+ /** Proportion of conversations that has Ai Coach Suggestions. */
1132
+ conversationAiCoachSuggestionRatio?: number;
1133
+ /** The average latency of conversational agents' audio in audio out latency per interaction. This is computed as the average of the all the interactions' audio in audio out latencies in a conversation and averaged across conversations. */
1134
+ conversationalAgentsAverageAudioInAudioOutLatency?: number;
1135
+ /** The average latency of conversational agents' latency per interaction. This is computed as the average of the all the iteractions' end to end latencies in a conversation and averaged across conversations. The e2e latency is the time between the end of the user utterance and the start of the agent utterance on the interaction level. */
1136
+ conversationalAgentsAverageEndToEndLatency?: number;
1137
+ /** The average latency of conversational agents' LLM call latency per interaction. This is computed as the average of the all the interactions LLM call latencies in a conversation and averaged across conversations. */
1138
+ conversationalAgentsAverageLlmCallLatency?: number;
1139
+ /** The macro average latency of conversational agents' TTS latency per interaction. This is computed as the average of the all the interactions' TTS latencies in a conversation and averaged across conversations. */
1140
+ conversationalAgentsAverageTtsLatency?: number;
1093
1141
  /** The conversation count. */
1094
1142
  conversationCount?: number;
1143
+ /** Proportion of conversations that had a suggested summary. */
1144
+ conversationSuggestedSummaryRatio?: number;
1145
+ /** The agent message count. */
1146
+ conversationTotalAgentMessageCount?: number;
1147
+ /** The customer message count. */
1148
+ conversationTotalCustomerMessageCount?: number;
1149
+ /** Average latency of dialogflow webhook calls. */
1150
+ dialogflowAverageWebhookLatency?: number;
1151
+ /** count of conversations that was handed off from virtual agent to human agent. */
1152
+ dialogflowConversationsEscalationCount?: number;
1153
+ /** Proportion of conversations that was handed off from virtual agent to human agent. */
1154
+ dialogflowConversationsEscalationRatio?: number;
1155
+ /** Proportion of dialogflow interactions that has empty input. */
1156
+ dialogflowInteractionsNoInputRatio?: number;
1157
+ /** Proportion of dialogflow interactions that has no intent match for the input. */
1158
+ dialogflowInteractionsNoMatchRatio?: number;
1159
+ /** Proportion of dialogflow webhook calls that failed. */
1160
+ dialogflowWebhookFailureRatio?: number;
1161
+ /** Proportion of dialogflow webhook calls that timed out. */
1162
+ dialogflowWebhookTimeoutRatio?: number;
1163
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had negative feedback. */
1164
+ knowledgeAssistNegativeFeedbackRatio?: number;
1165
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had positive feedback. */
1166
+ knowledgeAssistPositiveFeedbackRatio?: number;
1167
+ /** Count of knowledge assist results (Proactive Generative Knowledge Assist) shown to the user. */
1168
+ knowledgeAssistResultCount?: number;
1169
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had a URL clicked. */
1170
+ knowledgeAssistUriClickRatio?: number;
1171
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries made by the agent compared to the total number of knowledge search queries made. */
1172
+ knowledgeSearchAgentQuerySourceRatio?: number;
1173
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had negative feedback. */
1174
+ knowledgeSearchNegativeFeedbackRatio?: number;
1175
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had positive feedback. */
1176
+ knowledgeSearchPositiveFeedbackRatio?: number;
1177
+ /** Count of knowledge search results (Generative Knowledge Assist) shown to the user. */
1178
+ knowledgeSearchResultCount?: number;
1179
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries suggested compared to the total number of knowledge search queries made. */
1180
+ knowledgeSearchSuggestedQuerySourceRatio?: number;
1181
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had a URL clicked. */
1182
+ knowledgeSearchUriClickRatio?: number;
1095
1183
  /** Average QA normalized score for all the tags. */
1096
1184
  qaTagScores?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointConversationMeasureQaTagScore[];
1185
+ /** Proportion of summarization suggestions that were manually edited. */
1186
+ summarizationSuggestionEditRatio?: number;
1187
+ /** Count of summarization suggestions results. */
1188
+ summarizationSuggestionResultCount?: number;
1097
1189
  }
1098
1190
  interface GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointConversationMeasureQaTagScore {
1099
1191
  /** Average tag normalized score per tag. */
@@ -1101,6 +1193,26 @@ declare namespace gapi.client {
1101
1193
  /** Tag name. */
1102
1194
  tag?: string;
1103
1195
  }
1196
+ interface GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointDialogflowInteractionMeasure {
1197
+ /** The percentile result for audio in audio out latency in milliseconds per dialogflow interaction level. */
1198
+ percentileAudioInAudioOutLatency?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointPercentileResult;
1199
+ /** The percentile result for end to end chat latency in milliseconds per dialogflow interaction level. */
1200
+ percentileEndToEndLatency?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointPercentileResult;
1201
+ /** The percentile result for LLM latency in milliseconds per dialogflow interaction level. */
1202
+ percentileLlmCallLatency?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointPercentileResult;
1203
+ /** The percentile result for tool use latency in milliseconds per dialogflow interaction level. */
1204
+ percentileToolUseLatency?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointPercentileResult;
1205
+ /** The percentile result for TTS latency in milliseconds per dialogflow interaction level. */
1206
+ percentileTtsLatency?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointPercentileResult;
1207
+ }
1208
+ interface GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPointPercentileResult {
1209
+ /** The 50th percentile value. */
1210
+ p50?: number;
1211
+ /** The 90th percentile value. */
1212
+ p90?: number;
1213
+ /** The 99th percentile value. */
1214
+ p99?: number;
1215
+ }
1104
1216
  interface GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceTimeSeries {
1105
1217
  /** The data points that make up the time series . */
1106
1218
  dataPoints?: GoogleCloudContactcenterinsightsV1alpha1QueryMetricsResponseSliceDataPoint[];
@@ -3581,10 +3693,36 @@ declare namespace gapi.client {
3581
3693
  interface GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPoint {
3582
3694
  /** The measure related to conversations. */
3583
3695
  conversationMeasure?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointConversationMeasure;
3696
+ /** The measure related to dialogflow interactions. */
3697
+ dialogflowInteractionMeasure?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointDialogflowInteractionMeasure;
3584
3698
  /** The interval that this data point represents. * If this is the total data point, the interval is [starting create time, ending create time) from the request. * If this a data point from the time series, the interval is [time, time + time granularity from the request). */
3585
3699
  interval?: GoogleTypeInterval;
3586
3700
  }
3587
3701
  interface GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointConversationMeasure {
3702
+ /** The number of conversations that were assigned to an AA human supervisor. */
3703
+ aaSupervisorAssignedConversationsCount?: number;
3704
+ /** The number of conversations that were dropped, i.e. escalated but not assigned to an AA human supervisor. */
3705
+ aaSupervisorDroppedConversationsCount?: number;
3706
+ /** The number of conversations that were escalated to an AA human supervisor for intervention. */
3707
+ aaSupervisorEscalatedConversationsCount?: number;
3708
+ /** The number of conversations scanned by the AA human supervisor. */
3709
+ aaSupervisorMonitoredConversationsCount?: number;
3710
+ /** The number of conversations transferred to a human agent. */
3711
+ aaSupervisorTransferredToHumanAgentConvCount?: number;
3712
+ /** Count of agent messages that triggered an Ai Coach Suggestion. */
3713
+ aiCoachSuggestionAgentMessageTriggerCount?: number;
3714
+ /** Count of Ai Coach Suggestion that has been used by agents. */
3715
+ aiCoachSuggestionAgentUsageCount?: number;
3716
+ /** Proportion of Ai Coach Suggestion that has been used by agents. */
3717
+ aiCoachSuggestionAgentUsageRatio?: number;
3718
+ /** Count of customer messages that triggered an Ai Coach Suggestion. */
3719
+ aiCoachSuggestionCustomerMessageTriggerCount?: number;
3720
+ /** Proportion of customer messages that triggered an Ai Coach Suggestion. */
3721
+ aiCoachSuggestionCustomerMessageTriggerRatio?: number;
3722
+ /** Count of end_of_utterance trigger event messages that triggered an Ai Coach Suggestion. */
3723
+ aiCoachSuggestionMessageTriggerCount?: number;
3724
+ /** Proportion of end_of_utterance trigger event messages that triggered an Ai Coach Suggestion. */
3725
+ aiCoachSuggestionMessageTriggerRatio?: number;
3588
3726
  /** The average agent's sentiment score. */
3589
3727
  averageAgentSentimentScore?: number;
3590
3728
  /** The average client's sentiment score. */
@@ -3599,12 +3737,78 @@ declare namespace gapi.client {
3599
3737
  averageQaQuestionNormalizedScore?: number;
3600
3738
  /** The average silence percentage. */
3601
3739
  averageSilencePercentage?: number;
3740
+ /** Average edit distance of the summarization suggestions. Edit distance (also called as levenshtein distance) is calculated by summing up number of insertions, deletions and substitutions required to transform the summization feedback to the original summary suggestion. */
3741
+ averageSummarizationSuggestionEditDistance?: number;
3742
+ /** Normalized Average edit distance of the summarization suggestions. Edit distance (also called as levenshtein distance) is calculated by summing up number of insertions, deletions and substitutions required to transform the summization feedback to the original summary suggestion. Normalized edit distance is the average of (edit distance / summary length). */
3743
+ averageSummarizationSuggestionNormalizedEditDistance?: number;
3602
3744
  /** The average turn count. */
3603
3745
  averageTurnCount?: number;
3746
+ /** The exponential moving average of the sentiment score of client turns in the conversation. */
3747
+ avgConversationClientTurnSentimentEma?: number;
3748
+ /** The number of conversations that were contained. */
3749
+ containedConversationCount?: number;
3750
+ /** The percentage of conversations that were contained. */
3751
+ containedConversationRatio?: number;
3752
+ /** Count of conversations that has Ai Coach Suggestions. */
3753
+ conversationAiCoachSuggestionCount?: number;
3754
+ /** Proportion of conversations that has Ai Coach Suggestions. */
3755
+ conversationAiCoachSuggestionRatio?: number;
3756
+ /** The average latency of conversational agents' audio in audio out latency per interaction. This is computed as the average of the all the interactions' audio in audio out latencies in a conversation and averaged across conversations. */
3757
+ conversationalAgentsAverageAudioInAudioOutLatency?: number;
3758
+ /** The average latency of conversational agents' latency per interaction. This is computed as the average of the all the iteractions' end to end latencies in a conversation and averaged across conversations. The e2e latency is the time between the end of the user utterance and the start of the agent utterance on the interaction level. */
3759
+ conversationalAgentsAverageEndToEndLatency?: number;
3760
+ /** The average latency of conversational agents' LLM call latency per interaction. This is computed as the average of the all the interactions LLM call latencies in a conversation and averaged across conversations. */
3761
+ conversationalAgentsAverageLlmCallLatency?: number;
3762
+ /** The macro average latency of conversational agents' TTS latency per interaction. This is computed as the average of the all the interactions' TTS latencies in a conversation and averaged across conversations. */
3763
+ conversationalAgentsAverageTtsLatency?: number;
3604
3764
  /** The conversation count. */
3605
3765
  conversationCount?: number;
3766
+ /** Proportion of conversations that had a suggested summary. */
3767
+ conversationSuggestedSummaryRatio?: number;
3768
+ /** The agent message count. */
3769
+ conversationTotalAgentMessageCount?: number;
3770
+ /** The customer message count. */
3771
+ conversationTotalCustomerMessageCount?: number;
3772
+ /** Average latency of dialogflow webhook calls. */
3773
+ dialogflowAverageWebhookLatency?: number;
3774
+ /** count of conversations that was handed off from virtual agent to human agent. */
3775
+ dialogflowConversationsEscalationCount?: number;
3776
+ /** Proportion of conversations that was handed off from virtual agent to human agent. */
3777
+ dialogflowConversationsEscalationRatio?: number;
3778
+ /** Proportion of dialogflow interactions that has empty input. */
3779
+ dialogflowInteractionsNoInputRatio?: number;
3780
+ /** Proportion of dialogflow interactions that has no intent match for the input. */
3781
+ dialogflowInteractionsNoMatchRatio?: number;
3782
+ /** Proportion of dialogflow webhook calls that failed. */
3783
+ dialogflowWebhookFailureRatio?: number;
3784
+ /** Proportion of dialogflow webhook calls that timed out. */
3785
+ dialogflowWebhookTimeoutRatio?: number;
3786
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had negative feedback. */
3787
+ knowledgeAssistNegativeFeedbackRatio?: number;
3788
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had positive feedback. */
3789
+ knowledgeAssistPositiveFeedbackRatio?: number;
3790
+ /** Count of knowledge assist results (Proactive Generative Knowledge Assist) shown to the user. */
3791
+ knowledgeAssistResultCount?: number;
3792
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had a URL clicked. */
3793
+ knowledgeAssistUriClickRatio?: number;
3794
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries made by the agent compared to the total number of knowledge search queries made. */
3795
+ knowledgeSearchAgentQuerySourceRatio?: number;
3796
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had negative feedback. */
3797
+ knowledgeSearchNegativeFeedbackRatio?: number;
3798
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had positive feedback. */
3799
+ knowledgeSearchPositiveFeedbackRatio?: number;
3800
+ /** Count of knowledge search results (Generative Knowledge Assist) shown to the user. */
3801
+ knowledgeSearchResultCount?: number;
3802
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries suggested compared to the total number of knowledge search queries made. */
3803
+ knowledgeSearchSuggestedQuerySourceRatio?: number;
3804
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had a URL clicked. */
3805
+ knowledgeSearchUriClickRatio?: number;
3606
3806
  /** Average QA normalized score for all the tags. */
3607
3807
  qaTagScores?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointConversationMeasureQaTagScore[];
3808
+ /** Proportion of summarization suggestions that were manually edited. */
3809
+ summarizationSuggestionEditRatio?: number;
3810
+ /** Count of summarization suggestions results. */
3811
+ summarizationSuggestionResultCount?: number;
3608
3812
  }
3609
3813
  interface GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointConversationMeasureQaTagScore {
3610
3814
  /** Average tag normalized score per tag. */
@@ -3612,6 +3816,26 @@ declare namespace gapi.client {
3612
3816
  /** Tag name. */
3613
3817
  tag?: string;
3614
3818
  }
3819
+ interface GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointDialogflowInteractionMeasure {
3820
+ /** The percentile result for audio in audio out latency in milliseconds per dialogflow interaction level. */
3821
+ percentileAudioInAudioOutLatency?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointPercentileResult;
3822
+ /** The percentile result for end to end chat latency in milliseconds per dialogflow interaction level. */
3823
+ percentileEndToEndLatency?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointPercentileResult;
3824
+ /** The percentile result for LLM latency in milliseconds per dialogflow interaction level. */
3825
+ percentileLlmCallLatency?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointPercentileResult;
3826
+ /** The percentile result for tool use latency in milliseconds per dialogflow interaction level. */
3827
+ percentileToolUseLatency?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointPercentileResult;
3828
+ /** The percentile result for TTS latency in milliseconds per dialogflow interaction level. */
3829
+ percentileTtsLatency?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointPercentileResult;
3830
+ }
3831
+ interface GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPointPercentileResult {
3832
+ /** The 50th percentile value. */
3833
+ p50?: number;
3834
+ /** The 90th percentile value. */
3835
+ p90?: number;
3836
+ /** The 99th percentile value. */
3837
+ p99?: number;
3838
+ }
3615
3839
  interface GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceTimeSeries {
3616
3840
  /** The data points that make up the time series . */
3617
3841
  dataPoints?: GoogleCloudContactcenterinsightsV1mainQueryMetricsResponseSliceDataPoint[];
@@ -4085,10 +4309,36 @@ declare namespace gapi.client {
4085
4309
  interface GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPoint {
4086
4310
  /** The measure related to conversations. */
4087
4311
  conversationMeasure?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointConversationMeasure;
4312
+ /** The measure related to dialogflow interactions. */
4313
+ dialogflowInteractionMeasure?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointDialogflowInteractionMeasure;
4088
4314
  /** The interval that this data point represents. * If this is the total data point, the interval is [starting create time, ending create time) from the request. * If this a data point from the time series, the interval is [time, time + time granularity from the request). */
4089
4315
  interval?: GoogleTypeInterval;
4090
4316
  }
4091
4317
  interface GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointConversationMeasure {
4318
+ /** The number of conversations that were assigned to an AA human supervisor. */
4319
+ aaSupervisorAssignedConversationsCount?: number;
4320
+ /** The number of conversations that were dropped, i.e. escalated but not assigned to an AA human supervisor. */
4321
+ aaSupervisorDroppedConversationsCount?: number;
4322
+ /** The number of conversations that were escalated to an AA human supervisor for intervention. */
4323
+ aaSupervisorEscalatedConversationsCount?: number;
4324
+ /** The number of conversations scanned by the AA human supervisor. */
4325
+ aaSupervisorMonitoredConversationsCount?: number;
4326
+ /** The number of conversations transferred to a human agent. */
4327
+ aaSupervisorTransferredToHumanAgentConvCount?: number;
4328
+ /** Count of agent messages that triggered an Ai Coach Suggestion. */
4329
+ aiCoachSuggestionAgentMessageTriggerCount?: number;
4330
+ /** Count of Ai Coach Suggestion that has been used by agents. */
4331
+ aiCoachSuggestionAgentUsageCount?: number;
4332
+ /** Proportion of Ai Coach Suggestion that has been used by agents. */
4333
+ aiCoachSuggestionAgentUsageRatio?: number;
4334
+ /** Count of customer messages that triggered an Ai Coach Suggestion. */
4335
+ aiCoachSuggestionCustomerMessageTriggerCount?: number;
4336
+ /** Proportion of customer messages that triggered an Ai Coach Suggestion. */
4337
+ aiCoachSuggestionCustomerMessageTriggerRatio?: number;
4338
+ /** Count of end_of_utterance trigger event messages that triggered an Ai Coach Suggestion. */
4339
+ aiCoachSuggestionMessageTriggerCount?: number;
4340
+ /** Proportion of end_of_utterance trigger event messages that triggered an Ai Coach Suggestion. */
4341
+ aiCoachSuggestionMessageTriggerRatio?: number;
4092
4342
  /** The average agent's sentiment score. */
4093
4343
  averageAgentSentimentScore?: number;
4094
4344
  /** The average client's sentiment score. */
@@ -4103,12 +4353,78 @@ declare namespace gapi.client {
4103
4353
  averageQaQuestionNormalizedScore?: number;
4104
4354
  /** The average silence percentage. */
4105
4355
  averageSilencePercentage?: number;
4356
+ /** Average edit distance of the summarization suggestions. Edit distance (also called as levenshtein distance) is calculated by summing up number of insertions, deletions and substitutions required to transform the summization feedback to the original summary suggestion. */
4357
+ averageSummarizationSuggestionEditDistance?: number;
4358
+ /** Normalized Average edit distance of the summarization suggestions. Edit distance (also called as levenshtein distance) is calculated by summing up number of insertions, deletions and substitutions required to transform the summization feedback to the original summary suggestion. Normalized edit distance is the average of (edit distance / summary length). */
4359
+ averageSummarizationSuggestionNormalizedEditDistance?: number;
4106
4360
  /** The average turn count. */
4107
4361
  averageTurnCount?: number;
4362
+ /** The exponential moving average of the sentiment score of client turns in the conversation. */
4363
+ avgConversationClientTurnSentimentEma?: number;
4364
+ /** The number of conversations that were contained. */
4365
+ containedConversationCount?: number;
4366
+ /** The percentage of conversations that were contained. */
4367
+ containedConversationRatio?: number;
4368
+ /** Count of conversations that has Ai Coach Suggestions. */
4369
+ conversationAiCoachSuggestionCount?: number;
4370
+ /** Proportion of conversations that has Ai Coach Suggestions. */
4371
+ conversationAiCoachSuggestionRatio?: number;
4372
+ /** The average latency of conversational agents' audio in audio out latency per interaction. This is computed as the average of the all the interactions' audio in audio out latencies in a conversation and averaged across conversations. */
4373
+ conversationalAgentsAverageAudioInAudioOutLatency?: number;
4374
+ /** The average latency of conversational agents' latency per interaction. This is computed as the average of the all the iteractions' end to end latencies in a conversation and averaged across conversations. The e2e latency is the time between the end of the user utterance and the start of the agent utterance on the interaction level. */
4375
+ conversationalAgentsAverageEndToEndLatency?: number;
4376
+ /** The average latency of conversational agents' LLM call latency per interaction. This is computed as the average of the all the interactions LLM call latencies in a conversation and averaged across conversations. */
4377
+ conversationalAgentsAverageLlmCallLatency?: number;
4378
+ /** The macro average latency of conversational agents' TTS latency per interaction. This is computed as the average of the all the interactions' TTS latencies in a conversation and averaged across conversations. */
4379
+ conversationalAgentsAverageTtsLatency?: number;
4108
4380
  /** The conversation count. */
4109
4381
  conversationCount?: number;
4382
+ /** Proportion of conversations that had a suggested summary. */
4383
+ conversationSuggestedSummaryRatio?: number;
4384
+ /** The agent message count. */
4385
+ conversationTotalAgentMessageCount?: number;
4386
+ /** The customer message count. */
4387
+ conversationTotalCustomerMessageCount?: number;
4388
+ /** Average latency of dialogflow webhook calls. */
4389
+ dialogflowAverageWebhookLatency?: number;
4390
+ /** count of conversations that was handed off from virtual agent to human agent. */
4391
+ dialogflowConversationsEscalationCount?: number;
4392
+ /** Proportion of conversations that was handed off from virtual agent to human agent. */
4393
+ dialogflowConversationsEscalationRatio?: number;
4394
+ /** Proportion of dialogflow interactions that has empty input. */
4395
+ dialogflowInteractionsNoInputRatio?: number;
4396
+ /** Proportion of dialogflow interactions that has no intent match for the input. */
4397
+ dialogflowInteractionsNoMatchRatio?: number;
4398
+ /** Proportion of dialogflow webhook calls that failed. */
4399
+ dialogflowWebhookFailureRatio?: number;
4400
+ /** Proportion of dialogflow webhook calls that timed out. */
4401
+ dialogflowWebhookTimeoutRatio?: number;
4402
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had negative feedback. */
4403
+ knowledgeAssistNegativeFeedbackRatio?: number;
4404
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had positive feedback. */
4405
+ knowledgeAssistPositiveFeedbackRatio?: number;
4406
+ /** Count of knowledge assist results (Proactive Generative Knowledge Assist) shown to the user. */
4407
+ knowledgeAssistResultCount?: number;
4408
+ /** Proportion of knowledge assist (Proactive Generative Knowledge Assist) queries that had a URL clicked. */
4409
+ knowledgeAssistUriClickRatio?: number;
4410
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries made by the agent compared to the total number of knowledge search queries made. */
4411
+ knowledgeSearchAgentQuerySourceRatio?: number;
4412
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had negative feedback. */
4413
+ knowledgeSearchNegativeFeedbackRatio?: number;
4414
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had positive feedback. */
4415
+ knowledgeSearchPositiveFeedbackRatio?: number;
4416
+ /** Count of knowledge search results (Generative Knowledge Assist) shown to the user. */
4417
+ knowledgeSearchResultCount?: number;
4418
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries suggested compared to the total number of knowledge search queries made. */
4419
+ knowledgeSearchSuggestedQuerySourceRatio?: number;
4420
+ /** Proportion of knowledge search (Generative Knowledge Assist) queries that had a URL clicked. */
4421
+ knowledgeSearchUriClickRatio?: number;
4110
4422
  /** Average QA normalized score for all the tags. */
4111
4423
  qaTagScores?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointConversationMeasureQaTagScore[];
4424
+ /** Proportion of summarization suggestions that were manually edited. */
4425
+ summarizationSuggestionEditRatio?: number;
4426
+ /** Count of summarization suggestions results. */
4427
+ summarizationSuggestionResultCount?: number;
4112
4428
  }
4113
4429
  interface GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointConversationMeasureQaTagScore {
4114
4430
  /** Average tag normalized score per tag. */
@@ -4116,6 +4432,26 @@ declare namespace gapi.client {
4116
4432
  /** Tag name. */
4117
4433
  tag?: string;
4118
4434
  }
4435
+ interface GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointDialogflowInteractionMeasure {
4436
+ /** The percentile result for audio in audio out latency in milliseconds per dialogflow interaction level. */
4437
+ percentileAudioInAudioOutLatency?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult;
4438
+ /** The percentile result for end to end chat latency in milliseconds per dialogflow interaction level. */
4439
+ percentileEndToEndLatency?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult;
4440
+ /** The percentile result for LLM latency in milliseconds per dialogflow interaction level. */
4441
+ percentileLlmCallLatency?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult;
4442
+ /** The percentile result for tool use latency in milliseconds per dialogflow interaction level. */
4443
+ percentileToolUseLatency?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult;
4444
+ /** The percentile result for TTS latency in milliseconds per dialogflow interaction level. */
4445
+ percentileTtsLatency?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult;
4446
+ }
4447
+ interface GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPointPercentileResult {
4448
+ /** The 50th percentile value. */
4449
+ p50?: number;
4450
+ /** The 90th percentile value. */
4451
+ p90?: number;
4452
+ /** The 99th percentile value. */
4453
+ p99?: number;
4454
+ }
4119
4455
  interface GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceTimeSeries {
4120
4456
  /** The data points that make up the time series . */
4121
4457
  dataPoints?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPoint[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.contactcenterinsights-v1",
3
- "version": "0.1.20260112",
3
+ "version": "0.2.20260112",
4
4
  "description": "TypeScript typings for Contact Center AI Insights API v1",
5
5
  "repository": {
6
6
  "type": "git",