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

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 +749 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://contactcenterinsights.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20260112
12
+ // Revision: 20260121
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -230,11 +230,29 @@ declare namespace gapi.client {
230
230
  /** Data specifying silence. */
231
231
  silenceData?: any;
232
232
  }
233
+ interface GoogleCloudContactcenterinsightsV1alpha1ConstraintEvaluationResult {
234
+ /** The first conversation resource name. */
235
+ conversationA?: string;
236
+ /** The second conversation resource name. */
237
+ conversationB?: string;
238
+ /** The results for each applicable constraint rule. */
239
+ ruleConstraintResults?: GoogleCloudContactcenterinsightsV1alpha1ConstraintEvaluationResultRuleConstraintResult[];
240
+ }
241
+ interface GoogleCloudContactcenterinsightsV1alpha1ConstraintEvaluationResultRuleConstraintResult {
242
+ /** Whether the constraint expression evaluated to true for (A, B) or (B, A). */
243
+ constraintMet?: boolean;
244
+ /** The error status if the constraint expression failed to evaluate. */
245
+ error?: GoogleRpcStatus;
246
+ /** The rule ID. */
247
+ ruleId?: string;
248
+ }
233
249
  interface GoogleCloudContactcenterinsightsV1alpha1Conversation {
234
250
  /** An opaque, user-specified string representing the human agent who handled the conversation. */
235
251
  agentId?: string;
236
252
  /** Call-specific metadata. */
237
253
  callMetadata?: GoogleCloudContactcenterinsightsV1alpha1ConversationCallMetadata;
254
+ /** Output only. Info for correlating across conversations. */
255
+ correlationInfo?: GoogleCloudContactcenterinsightsV1alpha1ConversationCorrelationInfo;
238
256
  /** Output only. The time at which the conversation was created. */
239
257
  createTime?: string;
240
258
  /** The source of the audio and transcription for the conversation. */
@@ -255,7 +273,7 @@ declare namespace gapi.client {
255
273
  latestAnalysis?: GoogleCloudContactcenterinsightsV1alpha1Analysis;
256
274
  /** Output only. Latest summary of the conversation. */
257
275
  latestSummary?: GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData;
258
- /** Immutable. The conversation medium, if unspecified will default to PHONE_CALL. */
276
+ /** Immutable. The conversation medium. */
259
277
  medium?: string;
260
278
  /** Input only. JSON metadata encoded as a string. This field is primarily used by Insights integrations with various telephony systems and must be in one of Insight's supported formats. */
261
279
  metadataJson?: string;
@@ -284,6 +302,28 @@ declare namespace gapi.client {
284
302
  /** The audio channel that contains the customer. */
285
303
  customerChannel?: number;
286
304
  }
305
+ interface GoogleCloudContactcenterinsightsV1alpha1ConversationCorrelationInfo {
306
+ /** Output only. The correlation types of this conversation. A single conversation can have multiple correlation types. For example a conversation that only has a single segment is both a SEGMENT and a FULL_CONVERSATION. */
307
+ correlationTypes?: string[];
308
+ /** Output only. The full conversation correlation id this conversation is a segment of. */
309
+ fullConversationCorrelationId?: string;
310
+ /** Output only. The full conversation correlation id this conversation is a merged conversation of. */
311
+ mergedFullConversationCorrelationId?: string;
312
+ }
313
+ interface GoogleCloudContactcenterinsightsV1alpha1ConversationCorrelationResult {
314
+ /** The conversation resource name. */
315
+ conversation?: string;
316
+ /** The results for each correlation rule. */
317
+ ruleResults?: GoogleCloudContactcenterinsightsV1alpha1ConversationCorrelationResultRuleCorrelationResult[];
318
+ }
319
+ interface GoogleCloudContactcenterinsightsV1alpha1ConversationCorrelationResultRuleCorrelationResult {
320
+ /** The correlation ID generated by the join key expression. */
321
+ correlationId?: string;
322
+ /** The error status if the join key expression failed to evaluate. */
323
+ error?: GoogleRpcStatus;
324
+ /** The rule ID. */
325
+ ruleId?: string;
326
+ }
287
327
  interface GoogleCloudContactcenterinsightsV1alpha1ConversationDataSource {
288
328
  /** The source when the conversation comes from Dialogflow. */
289
329
  dialogflowSource?: GoogleCloudContactcenterinsightsV1alpha1DialogflowSource;
@@ -1332,6 +1372,44 @@ declare namespace gapi.client {
1332
1372
  /** The fully-qualified Speech Recognizer resource name. Format: `projects/{project_id}/locations/{location}/recognizer/{recognizer}` */
1333
1373
  speechRecognizer?: string;
1334
1374
  }
1375
+ interface GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigMetadata {
1376
+ /** Output only. The time the operation was created. */
1377
+ createTime?: string;
1378
+ /** The dataset used for sampling conversations. */
1379
+ dataset?: string;
1380
+ /** The statistics for the operation. */
1381
+ stats?: GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigMetadataFullConversationCorrelationStats;
1382
+ }
1383
+ interface GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigMetadataFullConversationCorrelationStats {
1384
+ /** A list of errors that occurred during correlation, one for each conversation that failed. */
1385
+ conversationCorrelationErrors?: GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigMetadataFullConversationCorrelationStatsConversationCorrelationError[];
1386
+ /** The number of conversations correlated. */
1387
+ correlatedConversationsCount?: number;
1388
+ /** The number of conversations that failed correlation. */
1389
+ failedConversationsCount?: number;
1390
+ /** Partial errors during test correlation config operation that might cause the operation output to be incomplete. */
1391
+ partialErrors?: GoogleRpcStatus[];
1392
+ /** The number of conversations sampled. */
1393
+ sampledConversationsCount?: number;
1394
+ }
1395
+ interface GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigMetadataFullConversationCorrelationStatsConversationCorrelationError {
1396
+ /** The conversation resource name that had an error during correlation. */
1397
+ conversation?: string;
1398
+ /** The error status. */
1399
+ status?: GoogleRpcStatus;
1400
+ }
1401
+ interface GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigResponse {
1402
+ /** Results for the DETAILED_SYNC execution mode. */
1403
+ detailedResults?: GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigResponseDetailedCorrelationResults;
1404
+ /** Partial errors during test correlation config operation that might cause the operation output to be incomplete. */
1405
+ partialErrors?: GoogleRpcStatus[];
1406
+ }
1407
+ interface GoogleCloudContactcenterinsightsV1alpha1TestCorrelationConfigResponseDetailedCorrelationResults {
1408
+ /** A list of constraint evaluation results for each pair of conversations. */
1409
+ constraintResults?: GoogleCloudContactcenterinsightsV1alpha1ConstraintEvaluationResult[];
1410
+ /** A list of join key correlation results for each conversation tested. */
1411
+ joinKeyResults?: GoogleCloudContactcenterinsightsV1alpha1ConversationCorrelationResult[];
1412
+ }
1335
1413
  interface GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelMetadata {
1336
1414
  /** Output only. The time the operation was created. */
1337
1415
  createTime?: string;
@@ -1562,6 +1640,32 @@ declare namespace gapi.client {
1562
1640
  /** Output only. Update time. */
1563
1641
  updateTime?: string;
1564
1642
  }
1643
+ interface GoogleCloudContactcenterinsightsV1AutoLabelingRule {
1644
+ /** Whether the rule is active. */
1645
+ active?: boolean;
1646
+ /** Conditions to apply for auto-labeling the label_key. Representing sequential block of if .. else if .. else statements. The value of the first matching condition will be used. */
1647
+ conditions?: GoogleCloudContactcenterinsightsV1AutoLabelingRuleLabelingCondition[];
1648
+ /** Output only. The time at which this rule was created. */
1649
+ createTime?: string;
1650
+ /** The description of the rule. */
1651
+ description?: string;
1652
+ /** The user-provided display name of the rule. */
1653
+ displayName?: string;
1654
+ /** The label key. This is also the {auto_labeling_rule} in the resource name. Only settable if label_key_type is LABEL_KEY_TYPE_CUSTOM. */
1655
+ labelKey?: string;
1656
+ /** The type of the label key. */
1657
+ labelKeyType?: string;
1658
+ /** Identifier. The resource name of the auto-labeling rule. Format: projects/{project}/locations/{location}/autoLabelingRules/{auto_labeling_rule} */
1659
+ name?: string;
1660
+ /** Output only. The most recent time at which the rule was updated. */
1661
+ updateTime?: string;
1662
+ }
1663
+ interface GoogleCloudContactcenterinsightsV1AutoLabelingRuleLabelingCondition {
1664
+ /** A optional CEL expression to be evaluated as a boolean value. Once evaluated as true, then we will proceed with the value evaluation. An empty condition will be auto evaluated as true. */
1665
+ condition?: string;
1666
+ /** CEL expression to be evaluated as the value. */
1667
+ value?: string;
1668
+ }
1565
1669
  interface GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsMetadata {
1566
1670
  /** The number of requested analyses that have completed successfully so far. */
1567
1671
  completedAnalysesCount?: number;
@@ -1769,11 +1873,29 @@ declare namespace gapi.client {
1769
1873
  /** Data specifying silence. */
1770
1874
  silenceData?: any;
1771
1875
  }
1876
+ interface GoogleCloudContactcenterinsightsV1ConstraintEvaluationResult {
1877
+ /** The first conversation resource name. */
1878
+ conversationA?: string;
1879
+ /** The second conversation resource name. */
1880
+ conversationB?: string;
1881
+ /** The results for each applicable constraint rule. */
1882
+ ruleConstraintResults?: GoogleCloudContactcenterinsightsV1ConstraintEvaluationResultRuleConstraintResult[];
1883
+ }
1884
+ interface GoogleCloudContactcenterinsightsV1ConstraintEvaluationResultRuleConstraintResult {
1885
+ /** Whether the constraint expression evaluated to true for (A, B) or (B, A). */
1886
+ constraintMet?: boolean;
1887
+ /** The error status if the constraint expression failed to evaluate. */
1888
+ error?: GoogleRpcStatus;
1889
+ /** The rule ID. */
1890
+ ruleId?: string;
1891
+ }
1772
1892
  interface GoogleCloudContactcenterinsightsV1Conversation {
1773
1893
  /** An opaque, user-specified string representing the human agent who handled the conversation. */
1774
1894
  agentId?: string;
1775
1895
  /** Call-specific metadata. */
1776
1896
  callMetadata?: GoogleCloudContactcenterinsightsV1ConversationCallMetadata;
1897
+ /** Output only. Info for correlating across conversations. */
1898
+ correlationInfo?: GoogleCloudContactcenterinsightsV1ConversationCorrelationInfo;
1777
1899
  /** Output only. The time at which the conversation was created. */
1778
1900
  createTime?: string;
1779
1901
  /** The source of the audio and transcription for the conversation. */
@@ -1794,7 +1916,7 @@ declare namespace gapi.client {
1794
1916
  latestAnalysis?: GoogleCloudContactcenterinsightsV1Analysis;
1795
1917
  /** Output only. Latest summary of the conversation. */
1796
1918
  latestSummary?: GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData;
1797
- /** Immutable. The conversation medium, if unspecified will default to PHONE_CALL. */
1919
+ /** Immutable. The conversation medium. */
1798
1920
  medium?: string;
1799
1921
  /** Input only. JSON metadata encoded as a string. This field is primarily used by Insights integrations with various telephony systems and must be in one of Insight's supported formats. */
1800
1922
  metadataJson?: string;
@@ -1823,6 +1945,32 @@ declare namespace gapi.client {
1823
1945
  /** The audio channel that contains the customer. */
1824
1946
  customerChannel?: number;
1825
1947
  }
1948
+ interface GoogleCloudContactcenterinsightsV1ConversationCorrelationInfo {
1949
+ /** Output only. The correlation types of this conversation. A single conversation can have multiple correlation types. For example a conversation that only has a single segment is both a SEGMENT and a FULL_CONVERSATION. */
1950
+ correlationTypes?: string[];
1951
+ /** Output only. The full conversation correlation id this conversation is a segment of. */
1952
+ fullConversationCorrelationId?: string;
1953
+ /** Output only. The full conversation correlation id this conversation is a merged conversation of. */
1954
+ mergedFullConversationCorrelationId?: string;
1955
+ }
1956
+ interface GoogleCloudContactcenterinsightsV1ConversationCorrelationResult {
1957
+ /** The conversation resource name. */
1958
+ conversation?: string;
1959
+ /** The results for each correlation rule. */
1960
+ ruleResults?: GoogleCloudContactcenterinsightsV1ConversationCorrelationResultRuleCorrelationResult[];
1961
+ }
1962
+ interface GoogleCloudContactcenterinsightsV1ConversationCorrelationResultRuleCorrelationResult {
1963
+ /** The correlation ID generated by the join key expression. */
1964
+ correlationId?: string;
1965
+ /** The error status if the join key expression failed to evaluate. */
1966
+ error?: GoogleRpcStatus;
1967
+ /** The rule ID. */
1968
+ ruleId?: string;
1969
+ }
1970
+ interface GoogleCloudContactcenterinsightsV1ConversationDataOptions {
1971
+ /** Whether to include the per turn Dialogflow interaction data in conversation transcript. */
1972
+ includeDialogflowInteractionData?: boolean;
1973
+ }
1826
1974
  interface GoogleCloudContactcenterinsightsV1ConversationDataSource {
1827
1975
  /** The source when the conversation comes from Dialogflow. */
1828
1976
  dialogflowSource?: GoogleCloudContactcenterinsightsV1DialogflowSource;
@@ -1951,6 +2099,30 @@ declare namespace gapi.client {
1951
2099
  /** The word itself. Includes punctuation marks that surround the word. */
1952
2100
  word?: string;
1953
2101
  }
2102
+ interface GoogleCloudContactcenterinsightsV1CorrelationConfig {
2103
+ /** Output only. The time at which the correlation config was created. */
2104
+ createTime?: string;
2105
+ /** The correlation type config for full conversations. */
2106
+ fullConversationConfig?: GoogleCloudContactcenterinsightsV1CorrelationTypeConfig;
2107
+ /** Immutable. Identifier. The resource name of the correlation config. Format: projects/{project}/locations/{location}/correlationConfig */
2108
+ name?: string;
2109
+ /** Output only. The time at which the correlation config was last updated. */
2110
+ updateTime?: string;
2111
+ }
2112
+ interface GoogleCloudContactcenterinsightsV1CorrelationRule {
2113
+ /** Optional. Whether the config is active to be evaluated. */
2114
+ active?: boolean;
2115
+ /** Optional. A cel expression (go/cel) to be evaluated as a boolean value. Two variables conversation_a and conversation_b will be available for evaluation. This expression should evaluate to true if conversation_a and conversation_b should be joined. This is used as an extra constraint on top of the join_key_expression to further refine the group of conversations that are joined together and will be evaluated in both directions. for two conversations c1 and c2 and the result will be OR'd. We will evaluate: f(c1, c2) OR f(c2, c1) */
2116
+ constraintExpression?: string;
2117
+ /** Optional. A cel expression (go/cel) to be evaluated as a string value. This string value will be used as the join key for the correlation. */
2118
+ joinKeyExpression?: string;
2119
+ /** Required. The unique identifier of the rule. */
2120
+ ruleId?: string;
2121
+ }
2122
+ interface GoogleCloudContactcenterinsightsV1CorrelationTypeConfig {
2123
+ /** A list of correlation rules to be evaluated for correlation. */
2124
+ correlationRules?: GoogleCloudContactcenterinsightsV1CorrelationRule[];
2125
+ }
1954
2126
  interface GoogleCloudContactcenterinsightsV1CreateAnalysisOperationMetadata {
1955
2127
  /** Output only. The annotator selector used for the analysis (if any). */
1956
2128
  annotatorSelector?: GoogleCloudContactcenterinsightsV1AnnotatorSelector;
@@ -2526,6 +2698,12 @@ declare namespace gapi.client {
2526
2698
  /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2527
2699
  nextPageToken?: string;
2528
2700
  }
2701
+ interface GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse {
2702
+ /** The auto labeling rules. */
2703
+ autoLabelingRules?: GoogleCloudContactcenterinsightsV1AutoLabelingRule[];
2704
+ /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2705
+ nextPageToken?: string;
2706
+ }
2529
2707
  interface GoogleCloudContactcenterinsightsV1ListConversationsResponse {
2530
2708
  /** The conversations that match the request. */
2531
2709
  conversations?: GoogleCloudContactcenterinsightsV1Conversation[];
@@ -2853,11 +3031,29 @@ declare namespace gapi.client {
2853
3031
  /** Data specifying silence. */
2854
3032
  silenceData?: any;
2855
3033
  }
3034
+ interface GoogleCloudContactcenterinsightsV1mainConstraintEvaluationResult {
3035
+ /** The first conversation resource name. */
3036
+ conversationA?: string;
3037
+ /** The second conversation resource name. */
3038
+ conversationB?: string;
3039
+ /** The results for each applicable constraint rule. */
3040
+ ruleConstraintResults?: GoogleCloudContactcenterinsightsV1mainConstraintEvaluationResultRuleConstraintResult[];
3041
+ }
3042
+ interface GoogleCloudContactcenterinsightsV1mainConstraintEvaluationResultRuleConstraintResult {
3043
+ /** Whether the constraint expression evaluated to true for (A, B) or (B, A). */
3044
+ constraintMet?: boolean;
3045
+ /** The error status if the constraint expression failed to evaluate. */
3046
+ error?: GoogleRpcStatus;
3047
+ /** The rule ID. */
3048
+ ruleId?: string;
3049
+ }
2856
3050
  interface GoogleCloudContactcenterinsightsV1mainConversation {
2857
3051
  /** An opaque, user-specified string representing the human agent who handled the conversation. */
2858
3052
  agentId?: string;
2859
3053
  /** Call-specific metadata. */
2860
3054
  callMetadata?: GoogleCloudContactcenterinsightsV1mainConversationCallMetadata;
3055
+ /** Output only. Info for correlating across conversations. */
3056
+ correlationInfo?: GoogleCloudContactcenterinsightsV1mainConversationCorrelationInfo;
2861
3057
  /** Output only. The time at which the conversation was created. */
2862
3058
  createTime?: string;
2863
3059
  /** The source of the audio and transcription for the conversation. */
@@ -2878,7 +3074,7 @@ declare namespace gapi.client {
2878
3074
  latestAnalysis?: GoogleCloudContactcenterinsightsV1mainAnalysis;
2879
3075
  /** Output only. Latest summary of the conversation. */
2880
3076
  latestSummary?: GoogleCloudContactcenterinsightsV1mainConversationSummarizationSuggestionData;
2881
- /** Immutable. The conversation medium, if unspecified will default to PHONE_CALL. */
3077
+ /** Immutable. The conversation medium. */
2882
3078
  medium?: string;
2883
3079
  /** Input only. JSON metadata encoded as a string. This field is primarily used by Insights integrations with various telephony systems and must be in one of Insight's supported formats. */
2884
3080
  metadataJson?: string;
@@ -2907,6 +3103,28 @@ declare namespace gapi.client {
2907
3103
  /** The audio channel that contains the customer. */
2908
3104
  customerChannel?: number;
2909
3105
  }
3106
+ interface GoogleCloudContactcenterinsightsV1mainConversationCorrelationInfo {
3107
+ /** Output only. The correlation types of this conversation. A single conversation can have multiple correlation types. For example a conversation that only has a single segment is both a SEGMENT and a FULL_CONVERSATION. */
3108
+ correlationTypes?: string[];
3109
+ /** Output only. The full conversation correlation id this conversation is a segment of. */
3110
+ fullConversationCorrelationId?: string;
3111
+ /** Output only. The full conversation correlation id this conversation is a merged conversation of. */
3112
+ mergedFullConversationCorrelationId?: string;
3113
+ }
3114
+ interface GoogleCloudContactcenterinsightsV1mainConversationCorrelationResult {
3115
+ /** The conversation resource name. */
3116
+ conversation?: string;
3117
+ /** The results for each correlation rule. */
3118
+ ruleResults?: GoogleCloudContactcenterinsightsV1mainConversationCorrelationResultRuleCorrelationResult[];
3119
+ }
3120
+ interface GoogleCloudContactcenterinsightsV1mainConversationCorrelationResultRuleCorrelationResult {
3121
+ /** The correlation ID generated by the join key expression. */
3122
+ correlationId?: string;
3123
+ /** The error status if the join key expression failed to evaluate. */
3124
+ error?: GoogleRpcStatus;
3125
+ /** The rule ID. */
3126
+ ruleId?: string;
3127
+ }
2910
3128
  interface GoogleCloudContactcenterinsightsV1mainConversationDataSource {
2911
3129
  /** The source when the conversation comes from Dialogflow. */
2912
3130
  dialogflowSource?: GoogleCloudContactcenterinsightsV1mainDialogflowSource;
@@ -3955,6 +4173,44 @@ declare namespace gapi.client {
3955
4173
  /** The fully-qualified Speech Recognizer resource name. Format: `projects/{project_id}/locations/{location}/recognizer/{recognizer}` */
3956
4174
  speechRecognizer?: string;
3957
4175
  }
4176
+ interface GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigMetadata {
4177
+ /** Output only. The time the operation was created. */
4178
+ createTime?: string;
4179
+ /** The dataset used for sampling conversations. */
4180
+ dataset?: string;
4181
+ /** The statistics for the operation. */
4182
+ stats?: GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigMetadataFullConversationCorrelationStats;
4183
+ }
4184
+ interface GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigMetadataFullConversationCorrelationStats {
4185
+ /** A list of errors that occurred during correlation, one for each conversation that failed. */
4186
+ conversationCorrelationErrors?: GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigMetadataFullConversationCorrelationStatsConversationCorrelationError[];
4187
+ /** The number of conversations correlated. */
4188
+ correlatedConversationsCount?: number;
4189
+ /** The number of conversations that failed correlation. */
4190
+ failedConversationsCount?: number;
4191
+ /** Partial errors during test correlation config operation that might cause the operation output to be incomplete. */
4192
+ partialErrors?: GoogleRpcStatus[];
4193
+ /** The number of conversations sampled. */
4194
+ sampledConversationsCount?: number;
4195
+ }
4196
+ interface GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigMetadataFullConversationCorrelationStatsConversationCorrelationError {
4197
+ /** The conversation resource name that had an error during correlation. */
4198
+ conversation?: string;
4199
+ /** The error status. */
4200
+ status?: GoogleRpcStatus;
4201
+ }
4202
+ interface GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigResponse {
4203
+ /** Results for the DETAILED_SYNC execution mode. */
4204
+ detailedResults?: GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigResponseDetailedCorrelationResults;
4205
+ /** Partial errors during test correlation config operation that might cause the operation output to be incomplete. */
4206
+ partialErrors?: GoogleRpcStatus[];
4207
+ }
4208
+ interface GoogleCloudContactcenterinsightsV1mainTestCorrelationConfigResponseDetailedCorrelationResults {
4209
+ /** A list of constraint evaluation results for each pair of conversations. */
4210
+ constraintResults?: GoogleCloudContactcenterinsightsV1mainConstraintEvaluationResult[];
4211
+ /** A list of join key correlation results for each conversation tested. */
4212
+ joinKeyResults?: GoogleCloudContactcenterinsightsV1mainConversationCorrelationResult[];
4213
+ }
3958
4214
  interface GoogleCloudContactcenterinsightsV1mainUndeployIssueModelMetadata {
3959
4215
  /** Output only. The time the operation was created. */
3960
4216
  createTime?: string;
@@ -4141,6 +4397,8 @@ declare namespace gapi.client {
4141
4397
  order?: number;
4142
4398
  /** The configuration of the predefined question. This field will only be set if the Question Type is predefined. */
4143
4399
  predefinedQuestionConfig?: GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig;
4400
+ /** Options for configuring the data used to generate the QA question. */
4401
+ qaQuestionDataOptions?: GoogleCloudContactcenterinsightsV1QaQuestionQaQuestionDataOptions;
4144
4402
  /** Question text. E.g., "Did the agent greet the customer?" */
4145
4403
  questionBody?: string;
4146
4404
  /** The type of question. */
@@ -4174,6 +4432,10 @@ declare namespace gapi.client {
4174
4432
  /** The type of the predefined question. */
4175
4433
  type?: string;
4176
4434
  }
4435
+ interface GoogleCloudContactcenterinsightsV1QaQuestionQaQuestionDataOptions {
4436
+ /** Options for configuring the conversation data used to generate the QA question. */
4437
+ conversationDataOptions?: GoogleCloudContactcenterinsightsV1ConversationDataOptions;
4438
+ }
4177
4439
  interface GoogleCloudContactcenterinsightsV1QaQuestionTag {
4178
4440
  /** Output only. The time at which the question tag was created. */
4179
4441
  createTime?: string;
@@ -4640,6 +4902,68 @@ declare namespace gapi.client {
4640
4902
  /** The fully-qualified Speech Recognizer resource name. Format: `projects/{project_id}/locations/{location}/recognizer/{recognizer}` */
4641
4903
  speechRecognizer?: string;
4642
4904
  }
4905
+ interface GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleRequest {
4906
+ /** Required. The auto labeling rule to test. */
4907
+ autoLabelingRule?: GoogleCloudContactcenterinsightsV1AutoLabelingRule;
4908
+ /** Required. Conversation data to test rules against. */
4909
+ conversation?: GoogleCloudContactcenterinsightsV1Conversation;
4910
+ }
4911
+ interface GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleResponse {
4912
+ /** The result of the test auto labeling rule. */
4913
+ labelResult?: string;
4914
+ }
4915
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigMetadata {
4916
+ /** Output only. The time the operation was created. */
4917
+ createTime?: string;
4918
+ /** The dataset used for sampling conversations. */
4919
+ dataset?: string;
4920
+ /** The statistics for the operation. */
4921
+ stats?: GoogleCloudContactcenterinsightsV1TestCorrelationConfigMetadataFullConversationCorrelationStats;
4922
+ }
4923
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigMetadataFullConversationCorrelationStats {
4924
+ /** A list of errors that occurred during correlation, one for each conversation that failed. */
4925
+ conversationCorrelationErrors?: GoogleCloudContactcenterinsightsV1TestCorrelationConfigMetadataFullConversationCorrelationStatsConversationCorrelationError[];
4926
+ /** The number of conversations correlated. */
4927
+ correlatedConversationsCount?: number;
4928
+ /** The number of conversations that failed correlation. */
4929
+ failedConversationsCount?: number;
4930
+ /** Partial errors during test correlation config operation that might cause the operation output to be incomplete. */
4931
+ partialErrors?: GoogleRpcStatus[];
4932
+ /** The number of conversations sampled. */
4933
+ sampledConversationsCount?: number;
4934
+ }
4935
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigMetadataFullConversationCorrelationStatsConversationCorrelationError {
4936
+ /** The conversation resource name that had an error during correlation. */
4937
+ conversation?: string;
4938
+ /** The error status. */
4939
+ status?: GoogleRpcStatus;
4940
+ }
4941
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequest {
4942
+ /** Optional. A list of conversations to test against. */
4943
+ conversations?: GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequestConversations;
4944
+ /** Required. The correlation config to test. */
4945
+ correlationConfig?: GoogleCloudContactcenterinsightsV1CorrelationConfig;
4946
+ /** Optional. Filter to select conversations to test correlation against. Conversations matching this filter will be sampled based on start time. The most recent `max_sample_count` conversations will be selected. If no conversations match the filter, the request will fail with an `INVALID_ARGUMENT` error. */
4947
+ filter?: string;
4948
+ /** Optional. The maximum number of conversations to sample when using the `filter`. If not set, defaults to 1000. Values greater than 1000 are coerced to 1000. This field is ignored if `conversations` is provided. */
4949
+ maxSampleCount?: number;
4950
+ }
4951
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequestConversations {
4952
+ /** Optional. The conversations. */
4953
+ conversations?: GoogleCloudContactcenterinsightsV1Conversation[];
4954
+ }
4955
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigResponse {
4956
+ /** Results for the DETAILED_SYNC execution mode. */
4957
+ detailedResults?: GoogleCloudContactcenterinsightsV1TestCorrelationConfigResponseDetailedCorrelationResults;
4958
+ /** Partial errors during test correlation config operation that might cause the operation output to be incomplete. */
4959
+ partialErrors?: GoogleRpcStatus[];
4960
+ }
4961
+ interface GoogleCloudContactcenterinsightsV1TestCorrelationConfigResponseDetailedCorrelationResults {
4962
+ /** A list of constraint evaluation results for each pair of conversations. */
4963
+ constraintResults?: GoogleCloudContactcenterinsightsV1ConstraintEvaluationResult[];
4964
+ /** A list of join key correlation results for each conversation tested. */
4965
+ joinKeyResults?: GoogleCloudContactcenterinsightsV1ConversationCorrelationResult[];
4966
+ }
4643
4967
  interface GoogleCloudContactcenterinsightsV1TuneQaScorecardRevisionRequest {
4644
4968
  /** Required. Filter for selecting the feedback labels that needs to be used for training. This filter can be used to limit the feedback labels used for tuning to a feedback labels created or updated for a specific time-window etc. */
4645
4969
  filter?: string;
@@ -6859,6 +7183,275 @@ declare namespace gapi.client {
6859
7183
  ): Request<GoogleCloudContactcenterinsightsV1AuthorizedViewSet>;
6860
7184
  authorizedViews: AuthorizedViewsResource;
6861
7185
  }
7186
+ interface AutoLabelingRulesResource {
7187
+ /** Creates an auto labeling rule. */
7188
+ create(request: {
7189
+ /** V1 error format. */
7190
+ '$.xgafv'?: string;
7191
+ /** OAuth access token. */
7192
+ access_token?: string;
7193
+ /** Data format for response. */
7194
+ alt?: string;
7195
+ /** Required. The ID to use for the auto labeling rule, which will become the final component of the auto labeling rule's resource name. */
7196
+ autoLabelingRuleId?: string;
7197
+ /** JSONP */
7198
+ callback?: string;
7199
+ /** Selector specifying which fields to include in a partial response. */
7200
+ fields?: string;
7201
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7202
+ key?: string;
7203
+ /** OAuth 2.0 token for the current user. */
7204
+ oauth_token?: string;
7205
+ /** Required. The project and location to create the auto labeling rule in. Format: projects/{project}/locations/{location} */
7206
+ parent: string;
7207
+ /** Returns response with indentations and line breaks. */
7208
+ prettyPrint?: boolean;
7209
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7210
+ quotaUser?: string;
7211
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7212
+ upload_protocol?: string;
7213
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7214
+ uploadType?: string;
7215
+ /** Request body */
7216
+ resource: GoogleCloudContactcenterinsightsV1AutoLabelingRule;
7217
+ }): Request<GoogleCloudContactcenterinsightsV1AutoLabelingRule>;
7218
+ create(
7219
+ request: {
7220
+ /** V1 error format. */
7221
+ '$.xgafv'?: string;
7222
+ /** OAuth access token. */
7223
+ access_token?: string;
7224
+ /** Data format for response. */
7225
+ alt?: string;
7226
+ /** Required. The ID to use for the auto labeling rule, which will become the final component of the auto labeling rule's resource name. */
7227
+ autoLabelingRuleId?: string;
7228
+ /** JSONP */
7229
+ callback?: string;
7230
+ /** Selector specifying which fields to include in a partial response. */
7231
+ fields?: string;
7232
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7233
+ key?: string;
7234
+ /** OAuth 2.0 token for the current user. */
7235
+ oauth_token?: string;
7236
+ /** Required. The project and location to create the auto labeling rule in. Format: projects/{project}/locations/{location} */
7237
+ parent: string;
7238
+ /** Returns response with indentations and line breaks. */
7239
+ prettyPrint?: boolean;
7240
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7241
+ quotaUser?: string;
7242
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7243
+ upload_protocol?: string;
7244
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7245
+ uploadType?: string;
7246
+ },
7247
+ body: GoogleCloudContactcenterinsightsV1AutoLabelingRule,
7248
+ ): Request<GoogleCloudContactcenterinsightsV1AutoLabelingRule>;
7249
+ /** Deletes an auto labeling rule. */
7250
+ delete(request?: {
7251
+ /** V1 error format. */
7252
+ '$.xgafv'?: string;
7253
+ /** OAuth access token. */
7254
+ access_token?: string;
7255
+ /** Data format for response. */
7256
+ alt?: string;
7257
+ /** JSONP */
7258
+ callback?: string;
7259
+ /** Selector specifying which fields to include in a partial response. */
7260
+ fields?: string;
7261
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7262
+ key?: string;
7263
+ /** Required. The name of the auto labeling rule to delete. Format: projects/{project}/locations/{location}/autoLabelingRules/{auto_labeling_rule} */
7264
+ name: string;
7265
+ /** OAuth 2.0 token for the current user. */
7266
+ oauth_token?: string;
7267
+ /** Returns response with indentations and line breaks. */
7268
+ prettyPrint?: boolean;
7269
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7270
+ quotaUser?: string;
7271
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7272
+ upload_protocol?: string;
7273
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7274
+ uploadType?: string;
7275
+ }): Request<{}>;
7276
+ /** Gets an auto labeling rule. */
7277
+ get(request?: {
7278
+ /** V1 error format. */
7279
+ '$.xgafv'?: string;
7280
+ /** OAuth access token. */
7281
+ access_token?: string;
7282
+ /** Data format for response. */
7283
+ alt?: string;
7284
+ /** JSONP */
7285
+ callback?: string;
7286
+ /** Selector specifying which fields to include in a partial response. */
7287
+ fields?: string;
7288
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7289
+ key?: string;
7290
+ /** Required. The name of the auto labeling rule to get. Format: projects/{project}/locations/{location}/autoLabelingRules/{auto_labeling_rule} */
7291
+ name: string;
7292
+ /** OAuth 2.0 token for the current user. */
7293
+ oauth_token?: string;
7294
+ /** Returns response with indentations and line breaks. */
7295
+ prettyPrint?: boolean;
7296
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7297
+ quotaUser?: string;
7298
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7299
+ upload_protocol?: string;
7300
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7301
+ uploadType?: string;
7302
+ }): Request<GoogleCloudContactcenterinsightsV1AutoLabelingRule>;
7303
+ /** Lists auto labeling rules. */
7304
+ list(request?: {
7305
+ /** V1 error format. */
7306
+ '$.xgafv'?: string;
7307
+ /** OAuth access token. */
7308
+ access_token?: string;
7309
+ /** Data format for response. */
7310
+ alt?: string;
7311
+ /** JSONP */
7312
+ callback?: string;
7313
+ /** Selector specifying which fields to include in a partial response. */
7314
+ fields?: string;
7315
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7316
+ key?: string;
7317
+ /** OAuth 2.0 token for the current user. */
7318
+ oauth_token?: string;
7319
+ /** Optional. The maximum number of auto labeling rules to return in a single response. If unspecified, at most 100 rules will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. */
7320
+ pageSize?: number;
7321
+ /** Optional. The next_page_token value returned from a previous List request, if any. */
7322
+ pageToken?: string;
7323
+ /** Required. The project and location to list auto labeling rules from. Format: projects/{project}/locations/{location} */
7324
+ parent: string;
7325
+ /** Returns response with indentations and line breaks. */
7326
+ prettyPrint?: boolean;
7327
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7328
+ quotaUser?: string;
7329
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7330
+ upload_protocol?: string;
7331
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7332
+ uploadType?: string;
7333
+ }): Request<GoogleCloudContactcenterinsightsV1ListAutoLabelingRulesResponse>;
7334
+ /** Updates an auto labeling rule. */
7335
+ patch(request: {
7336
+ /** V1 error format. */
7337
+ '$.xgafv'?: string;
7338
+ /** OAuth access token. */
7339
+ access_token?: string;
7340
+ /** Data format for response. */
7341
+ alt?: string;
7342
+ /** JSONP */
7343
+ callback?: string;
7344
+ /** Selector specifying which fields to include in a partial response. */
7345
+ fields?: string;
7346
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7347
+ key?: string;
7348
+ /** Identifier. The resource name of the auto-labeling rule. Format: projects/{project}/locations/{location}/autoLabelingRules/{auto_labeling_rule} */
7349
+ name: string;
7350
+ /** OAuth 2.0 token for the current user. */
7351
+ oauth_token?: string;
7352
+ /** Returns response with indentations and line breaks. */
7353
+ prettyPrint?: boolean;
7354
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7355
+ quotaUser?: string;
7356
+ /** Optional. The list of fields to be updated. */
7357
+ updateMask?: string;
7358
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7359
+ upload_protocol?: string;
7360
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7361
+ uploadType?: string;
7362
+ /** Request body */
7363
+ resource: GoogleCloudContactcenterinsightsV1AutoLabelingRule;
7364
+ }): Request<GoogleCloudContactcenterinsightsV1AutoLabelingRule>;
7365
+ patch(
7366
+ request: {
7367
+ /** V1 error format. */
7368
+ '$.xgafv'?: string;
7369
+ /** OAuth access token. */
7370
+ access_token?: string;
7371
+ /** Data format for response. */
7372
+ alt?: string;
7373
+ /** JSONP */
7374
+ callback?: string;
7375
+ /** Selector specifying which fields to include in a partial response. */
7376
+ fields?: string;
7377
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7378
+ key?: string;
7379
+ /** Identifier. The resource name of the auto-labeling rule. Format: projects/{project}/locations/{location}/autoLabelingRules/{auto_labeling_rule} */
7380
+ name: string;
7381
+ /** OAuth 2.0 token for the current user. */
7382
+ oauth_token?: string;
7383
+ /** Returns response with indentations and line breaks. */
7384
+ prettyPrint?: boolean;
7385
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7386
+ quotaUser?: string;
7387
+ /** Optional. The list of fields to be updated. */
7388
+ updateMask?: string;
7389
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7390
+ upload_protocol?: string;
7391
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7392
+ uploadType?: string;
7393
+ },
7394
+ body: GoogleCloudContactcenterinsightsV1AutoLabelingRule,
7395
+ ): Request<GoogleCloudContactcenterinsightsV1AutoLabelingRule>;
7396
+ /** Tests auto labeling rules against a conversation. */
7397
+ test(request: {
7398
+ /** V1 error format. */
7399
+ '$.xgafv'?: string;
7400
+ /** OAuth access token. */
7401
+ access_token?: string;
7402
+ /** Data format for response. */
7403
+ alt?: string;
7404
+ /** JSONP */
7405
+ callback?: string;
7406
+ /** Selector specifying which fields to include in a partial response. */
7407
+ fields?: string;
7408
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7409
+ key?: string;
7410
+ /** OAuth 2.0 token for the current user. */
7411
+ oauth_token?: string;
7412
+ /** Required. The parent project and location. Format: projects/{project}/locations/{location} */
7413
+ parent: string;
7414
+ /** Returns response with indentations and line breaks. */
7415
+ prettyPrint?: boolean;
7416
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7417
+ quotaUser?: string;
7418
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7419
+ upload_protocol?: string;
7420
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7421
+ uploadType?: string;
7422
+ /** Request body */
7423
+ resource: GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleRequest;
7424
+ }): Request<GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleResponse>;
7425
+ test(
7426
+ request: {
7427
+ /** V1 error format. */
7428
+ '$.xgafv'?: string;
7429
+ /** OAuth access token. */
7430
+ access_token?: string;
7431
+ /** Data format for response. */
7432
+ alt?: string;
7433
+ /** JSONP */
7434
+ callback?: string;
7435
+ /** Selector specifying which fields to include in a partial response. */
7436
+ fields?: string;
7437
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
7438
+ key?: string;
7439
+ /** OAuth 2.0 token for the current user. */
7440
+ oauth_token?: string;
7441
+ /** Required. The parent project and location. Format: projects/{project}/locations/{location} */
7442
+ parent: string;
7443
+ /** Returns response with indentations and line breaks. */
7444
+ prettyPrint?: boolean;
7445
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
7446
+ quotaUser?: string;
7447
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
7448
+ upload_protocol?: string;
7449
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
7450
+ uploadType?: string;
7451
+ },
7452
+ body: GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleRequest,
7453
+ ): Request<GoogleCloudContactcenterinsightsV1TestAutoLabelingRuleResponse>;
7454
+ }
6862
7455
  interface AnalysesResource {
6863
7456
  /** Creates an analysis. The long running operation is done when the analysis has completed. */
6864
7457
  create(request: {
@@ -8183,6 +8776,8 @@ declare namespace gapi.client {
8183
8776
  alt?: string;
8184
8777
  /** JSONP */
8185
8778
  callback?: string;
8779
+ /** Optional. If set to true, the conversation will be updated with auto labeling results. */
8780
+ 'conversationAutoLabelingUpdateConfig.allowAutoLabelingUpdate'?: boolean;
8186
8781
  /** Selector specifying which fields to include in a partial response. */
8187
8782
  fields?: string;
8188
8783
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
@@ -8216,6 +8811,8 @@ declare namespace gapi.client {
8216
8811
  alt?: string;
8217
8812
  /** JSONP */
8218
8813
  callback?: string;
8814
+ /** Optional. If set to true, the conversation will be updated with auto labeling results. */
8815
+ 'conversationAutoLabelingUpdateConfig.allowAutoLabelingUpdate'?: boolean;
8219
8816
  /** Selector specifying which fields to include in a partial response. */
8220
8817
  fields?: string;
8221
8818
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
@@ -11844,6 +12441,33 @@ declare namespace gapi.client {
11844
12441
  },
11845
12442
  body: GoogleCloudContactcenterinsightsV1BulkUploadFeedbackLabelsRequest,
11846
12443
  ): Request<GoogleLongrunningOperation>;
12444
+ /** Gets correlation config. */
12445
+ getCorrelationConfig(request?: {
12446
+ /** V1 error format. */
12447
+ '$.xgafv'?: string;
12448
+ /** OAuth access token. */
12449
+ access_token?: string;
12450
+ /** Data format for response. */
12451
+ alt?: string;
12452
+ /** JSONP */
12453
+ callback?: string;
12454
+ /** Selector specifying which fields to include in a partial response. */
12455
+ fields?: string;
12456
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
12457
+ key?: string;
12458
+ /** Required. The name of the correlation config resource to get. Format: projects/{project}/locations/{location}/correlationConfig */
12459
+ name: string;
12460
+ /** OAuth 2.0 token for the current user. */
12461
+ oauth_token?: string;
12462
+ /** Returns response with indentations and line breaks. */
12463
+ prettyPrint?: boolean;
12464
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12465
+ quotaUser?: string;
12466
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12467
+ upload_protocol?: string;
12468
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12469
+ uploadType?: string;
12470
+ }): Request<GoogleCloudContactcenterinsightsV1CorrelationConfig>;
11847
12471
  /** Gets location-level encryption key specification. */
11848
12472
  getEncryptionSpec(request?: {
11849
12473
  /** V1 error format. */
@@ -12047,6 +12671,126 @@ declare namespace gapi.client {
12047
12671
  },
12048
12672
  body: GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequest,
12049
12673
  ): Request<GoogleLongrunningOperation>;
12674
+ /** Tests correlation config on a conversation. */
12675
+ testCorrelationConfig(request: {
12676
+ /** V1 error format. */
12677
+ '$.xgafv'?: string;
12678
+ /** OAuth access token. */
12679
+ access_token?: string;
12680
+ /** Data format for response. */
12681
+ alt?: string;
12682
+ /** JSONP */
12683
+ callback?: string;
12684
+ /** Selector specifying which fields to include in a partial response. */
12685
+ fields?: string;
12686
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
12687
+ key?: string;
12688
+ /** Required. The location to test correlation config. Format: projects/{project}/locations/{location} */
12689
+ location: string;
12690
+ /** OAuth 2.0 token for the current user. */
12691
+ oauth_token?: string;
12692
+ /** Returns response with indentations and line breaks. */
12693
+ prettyPrint?: boolean;
12694
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12695
+ quotaUser?: string;
12696
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12697
+ upload_protocol?: string;
12698
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12699
+ uploadType?: string;
12700
+ /** Request body */
12701
+ resource: GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequest;
12702
+ }): Request<GoogleLongrunningOperation>;
12703
+ testCorrelationConfig(
12704
+ request: {
12705
+ /** V1 error format. */
12706
+ '$.xgafv'?: string;
12707
+ /** OAuth access token. */
12708
+ access_token?: string;
12709
+ /** Data format for response. */
12710
+ alt?: string;
12711
+ /** JSONP */
12712
+ callback?: string;
12713
+ /** Selector specifying which fields to include in a partial response. */
12714
+ fields?: string;
12715
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
12716
+ key?: string;
12717
+ /** Required. The location to test correlation config. Format: projects/{project}/locations/{location} */
12718
+ location: string;
12719
+ /** OAuth 2.0 token for the current user. */
12720
+ oauth_token?: string;
12721
+ /** Returns response with indentations and line breaks. */
12722
+ prettyPrint?: boolean;
12723
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12724
+ quotaUser?: string;
12725
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12726
+ upload_protocol?: string;
12727
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12728
+ uploadType?: string;
12729
+ },
12730
+ body: GoogleCloudContactcenterinsightsV1TestCorrelationConfigRequest,
12731
+ ): Request<GoogleLongrunningOperation>;
12732
+ /** Updates correlation config. */
12733
+ updateCorrelationConfig(request: {
12734
+ /** V1 error format. */
12735
+ '$.xgafv'?: string;
12736
+ /** OAuth access token. */
12737
+ access_token?: string;
12738
+ /** Data format for response. */
12739
+ alt?: string;
12740
+ /** JSONP */
12741
+ callback?: string;
12742
+ /** Selector specifying which fields to include in a partial response. */
12743
+ fields?: string;
12744
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
12745
+ key?: string;
12746
+ /** Immutable. Identifier. The resource name of the correlation config. Format: projects/{project}/locations/{location}/correlationConfig */
12747
+ name: string;
12748
+ /** OAuth 2.0 token for the current user. */
12749
+ oauth_token?: string;
12750
+ /** Returns response with indentations and line breaks. */
12751
+ prettyPrint?: boolean;
12752
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12753
+ quotaUser?: string;
12754
+ /** Optional. The list of fields to be updated. */
12755
+ updateMask?: string;
12756
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12757
+ upload_protocol?: string;
12758
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12759
+ uploadType?: string;
12760
+ /** Request body */
12761
+ resource: GoogleCloudContactcenterinsightsV1CorrelationConfig;
12762
+ }): Request<GoogleCloudContactcenterinsightsV1CorrelationConfig>;
12763
+ updateCorrelationConfig(
12764
+ request: {
12765
+ /** V1 error format. */
12766
+ '$.xgafv'?: string;
12767
+ /** OAuth access token. */
12768
+ access_token?: string;
12769
+ /** Data format for response. */
12770
+ alt?: string;
12771
+ /** JSONP */
12772
+ callback?: string;
12773
+ /** Selector specifying which fields to include in a partial response. */
12774
+ fields?: string;
12775
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
12776
+ key?: string;
12777
+ /** Immutable. Identifier. The resource name of the correlation config. Format: projects/{project}/locations/{location}/correlationConfig */
12778
+ name: string;
12779
+ /** OAuth 2.0 token for the current user. */
12780
+ oauth_token?: string;
12781
+ /** Returns response with indentations and line breaks. */
12782
+ prettyPrint?: boolean;
12783
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12784
+ quotaUser?: string;
12785
+ /** Optional. The list of fields to be updated. */
12786
+ updateMask?: string;
12787
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12788
+ upload_protocol?: string;
12789
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12790
+ uploadType?: string;
12791
+ },
12792
+ body: GoogleCloudContactcenterinsightsV1CorrelationConfig,
12793
+ ): Request<GoogleCloudContactcenterinsightsV1CorrelationConfig>;
12050
12794
  /** Updates project-level settings. */
12051
12795
  updateSettings(request: {
12052
12796
  /** V1 error format. */
@@ -12112,6 +12856,7 @@ declare namespace gapi.client {
12112
12856
  analysisRules: AnalysisRulesResource;
12113
12857
  assessmentRules: AssessmentRulesResource;
12114
12858
  authorizedViewSets: AuthorizedViewSetsResource;
12859
+ autoLabelingRules: AutoLabelingRulesResource;
12115
12860
  conversations: ConversationsResource;
12116
12861
  datasets: DatasetsResource;
12117
12862
  encryptionSpec: EncryptionSpecResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.contactcenterinsights-v1",
3
- "version": "0.2.20260112",
3
+ "version": "0.2.20260121",
4
4
  "description": "TypeScript typings for Contact Center AI Insights API v1",
5
5
  "repository": {
6
6
  "type": "git",