@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20250616 → 0.0.20250624
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.
- package/index.d.ts +435 -3
- 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:
|
|
12
|
+
// Revision: 20250624
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -460,6 +460,18 @@ declare namespace gapi.client {
|
|
|
460
460
|
/** Required. The name of the issue model to delete. */
|
|
461
461
|
name?: string;
|
|
462
462
|
}
|
|
463
|
+
interface GoogleCloudContactcenterinsightsV1alpha1DeleteQaQuestionTagMetadata {
|
|
464
|
+
/** Output only. The time the operation was created. */
|
|
465
|
+
createTime?: string;
|
|
466
|
+
/** Output only. The time the operation finished running. */
|
|
467
|
+
endTime?: string;
|
|
468
|
+
/** Output only. The original request. */
|
|
469
|
+
request?: GoogleCloudContactcenterinsightsV1alpha1DeleteQaQuestionTagRequest;
|
|
470
|
+
}
|
|
471
|
+
interface GoogleCloudContactcenterinsightsV1alpha1DeleteQaQuestionTagRequest {
|
|
472
|
+
/** Required. The name of the QaQuestionTag to delete. */
|
|
473
|
+
name?: string;
|
|
474
|
+
}
|
|
463
475
|
interface GoogleCloudContactcenterinsightsV1alpha1DeployIssueModelMetadata {
|
|
464
476
|
/** Output only. The time the operation was created. */
|
|
465
477
|
createTime?: string;
|
|
@@ -723,13 +735,15 @@ declare namespace gapi.client {
|
|
|
723
735
|
customerChannel?: number;
|
|
724
736
|
}
|
|
725
737
|
interface GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestGcsSource {
|
|
738
|
+
/** Optional. The Cloud Storage path to the conversation audio file if already transcribed. Note that: [1] Don't set this field if the audio is not transcribed. [2] Audio files and transcript files must be in separate buckets / folders. [3] A source file and its corresponding audio file must share the same name to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/conversation1.mp3`. */
|
|
739
|
+
audioBucketUri?: string;
|
|
726
740
|
/** Optional. Specifies the type of the objects in `bucket_uri`. */
|
|
727
741
|
bucketObjectType?: string;
|
|
728
742
|
/** Required. The Cloud Storage bucket containing source objects. */
|
|
729
743
|
bucketUri?: string;
|
|
730
744
|
/** Optional. Custom keys to extract as conversation labels from metadata files in `metadata_bucket_uri`. Keys not included in this field will be ignored. Note that there is a limit of 100 labels per conversation. */
|
|
731
745
|
customMetadataKeys?: string[];
|
|
732
|
-
/** Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be in separate buckets. [3] A source file and its corresponding metadata file must share the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and `gs://bucket/metadata/conversation1.json`. */
|
|
746
|
+
/** Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be in separate buckets / folders. [3] A source file and its corresponding metadata file must share the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and `gs://bucket/metadata/conversation1.json`. */
|
|
733
747
|
metadataBucketUri?: string;
|
|
734
748
|
}
|
|
735
749
|
interface GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestTranscriptObjectConfig {
|
|
@@ -899,6 +913,18 @@ declare namespace gapi.client {
|
|
|
899
913
|
/** String value. */
|
|
900
914
|
strValue?: string;
|
|
901
915
|
}
|
|
916
|
+
interface GoogleCloudContactcenterinsightsV1alpha1QaQuestionTag {
|
|
917
|
+
/** Output only. The time at which the question tag was created. */
|
|
918
|
+
createTime?: string;
|
|
919
|
+
/** Required. A user-specified display name for the tag. */
|
|
920
|
+
displayName?: string;
|
|
921
|
+
/** Identifier. Resource name for the QaQuestionTag Format projects/{project}/locations/{location}/qaQuestionTags/{qa_question_tag} In the above format, the last segment, i.e., qa_question_tag, is a server-generated ID corresponding to the tag resource. */
|
|
922
|
+
name?: string;
|
|
923
|
+
/** Optional. The list of Scorecard Question IDs that the tag applies to. Each QaQuestionId is represented as a full resource name containing the Question ID. Lastly, Since a tag may not necessarily be referenced by any Scorecard Questions, we treat this field as optional. */
|
|
924
|
+
qaQuestionIds?: string[];
|
|
925
|
+
/** Output only. The most recent time at which the question tag was updated. */
|
|
926
|
+
updateTime?: string;
|
|
927
|
+
}
|
|
902
928
|
interface GoogleCloudContactcenterinsightsV1alpha1QaScorecardResult {
|
|
903
929
|
/** ID of the agent that handled the conversation. */
|
|
904
930
|
agentId?: string;
|
|
@@ -1131,6 +1157,20 @@ declare namespace gapi.client {
|
|
|
1131
1157
|
name?: string;
|
|
1132
1158
|
}
|
|
1133
1159
|
interface GoogleCloudContactcenterinsightsV1alpha1UndeployIssueModelResponse {}
|
|
1160
|
+
interface GoogleCloudContactcenterinsightsV1alpha1UpdateQaQuestionTagMetadata {
|
|
1161
|
+
/** Output only. The time the operation was created. */
|
|
1162
|
+
createTime?: string;
|
|
1163
|
+
/** Output only. The time the operation finished running. */
|
|
1164
|
+
endTime?: string;
|
|
1165
|
+
/** Output only. The original request. */
|
|
1166
|
+
request?: GoogleCloudContactcenterinsightsV1alpha1UpdateQaQuestionTagRequest;
|
|
1167
|
+
}
|
|
1168
|
+
interface GoogleCloudContactcenterinsightsV1alpha1UpdateQaQuestionTagRequest {
|
|
1169
|
+
/** Required. The QaQuestionTag to update. */
|
|
1170
|
+
qaQuestionTag?: GoogleCloudContactcenterinsightsV1alpha1QaQuestionTag;
|
|
1171
|
+
/** Optional. The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `qa_question_tag_name` - the name of the tag * `qa_question_ids` - the list of questions the tag applies to */
|
|
1172
|
+
updateMask?: string;
|
|
1173
|
+
}
|
|
1134
1174
|
interface GoogleCloudContactcenterinsightsV1alpha1UploadConversationMetadata {
|
|
1135
1175
|
/** Output only. The operation name for a successfully created analysis operation, if any. */
|
|
1136
1176
|
analysisOperation?: string;
|
|
@@ -1771,6 +1811,18 @@ declare namespace gapi.client {
|
|
|
1771
1811
|
/** Required. The name of the issue model to delete. */
|
|
1772
1812
|
name?: string;
|
|
1773
1813
|
}
|
|
1814
|
+
interface GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagMetadata {
|
|
1815
|
+
/** Output only. The time the operation was created. */
|
|
1816
|
+
createTime?: string;
|
|
1817
|
+
/** Output only. The time the operation finished running. */
|
|
1818
|
+
endTime?: string;
|
|
1819
|
+
/** Output only. The original request. */
|
|
1820
|
+
request?: GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest;
|
|
1821
|
+
}
|
|
1822
|
+
interface GoogleCloudContactcenterinsightsV1DeleteQaQuestionTagRequest {
|
|
1823
|
+
/** Required. The name of the QaQuestionTag to delete. */
|
|
1824
|
+
name?: string;
|
|
1825
|
+
}
|
|
1774
1826
|
interface GoogleCloudContactcenterinsightsV1DeployIssueModelMetadata {
|
|
1775
1827
|
/** Output only. The time the operation was created. */
|
|
1776
1828
|
createTime?: string;
|
|
@@ -2040,13 +2092,15 @@ declare namespace gapi.client {
|
|
|
2040
2092
|
customerChannel?: number;
|
|
2041
2093
|
}
|
|
2042
2094
|
interface GoogleCloudContactcenterinsightsV1IngestConversationsRequestGcsSource {
|
|
2095
|
+
/** Optional. The Cloud Storage path to the conversation audio file if already transcribed. Note that: [1] Don't set this field if the audio is not transcribed. [2] Audio files and transcript files must be in separate buckets / folders. [3] A source file and its corresponding audio file must share the same name to be properly ingested, E.g. `gs://bucket/transcript/conversation1.json` and `gs://bucket/audio/conversation1.mp3`. */
|
|
2096
|
+
audioBucketUri?: string;
|
|
2043
2097
|
/** Optional. Specifies the type of the objects in `bucket_uri`. */
|
|
2044
2098
|
bucketObjectType?: string;
|
|
2045
2099
|
/** Required. The Cloud Storage bucket containing source objects. */
|
|
2046
2100
|
bucketUri?: string;
|
|
2047
2101
|
/** Optional. Custom keys to extract as conversation labels from metadata files in `metadata_bucket_uri`. Keys not included in this field will be ignored. Note that there is a limit of 100 labels per conversation. */
|
|
2048
2102
|
customMetadataKeys?: string[];
|
|
2049
|
-
/** Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be in separate buckets. [3] A source file and its corresponding metadata file must share the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and `gs://bucket/metadata/conversation1.json`. */
|
|
2103
|
+
/** Optional. The Cloud Storage path to the conversation metadata. Note that: [1] Metadata files are expected to be in JSON format. [2] Metadata and source files (transcripts or audio) must be in separate buckets / folders. [3] A source file and its corresponding metadata file must share the same name to be properly ingested, E.g. `gs://bucket/audio/conversation1.mp3` and `gs://bucket/metadata/conversation1.json`. */
|
|
2050
2104
|
metadataBucketUri?: string;
|
|
2051
2105
|
}
|
|
2052
2106
|
interface GoogleCloudContactcenterinsightsV1IngestConversationsRequestTranscriptObjectConfig {
|
|
@@ -2240,6 +2294,12 @@ declare namespace gapi.client {
|
|
|
2240
2294
|
/** The QaQuestions under the parent. */
|
|
2241
2295
|
qaQuestions?: GoogleCloudContactcenterinsightsV1QaQuestion[];
|
|
2242
2296
|
}
|
|
2297
|
+
interface GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse {
|
|
2298
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
2299
|
+
nextPageToken?: string;
|
|
2300
|
+
/** The parent resource of the questions. */
|
|
2301
|
+
qaQuestionTags?: GoogleCloudContactcenterinsightsV1QaQuestionTag[];
|
|
2302
|
+
}
|
|
2243
2303
|
interface GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse {
|
|
2244
2304
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
2245
2305
|
nextPageToken?: string;
|
|
@@ -2414,6 +2474,18 @@ declare namespace gapi.client {
|
|
|
2414
2474
|
/** Output only. Accuracy of the model. Measures the percentage of correct answers the model gave on the test set. */
|
|
2415
2475
|
accuracy?: number;
|
|
2416
2476
|
}
|
|
2477
|
+
interface GoogleCloudContactcenterinsightsV1QaQuestionTag {
|
|
2478
|
+
/** Output only. The time at which the question tag was created. */
|
|
2479
|
+
createTime?: string;
|
|
2480
|
+
/** Required. A user-specified display name for the tag. */
|
|
2481
|
+
displayName?: string;
|
|
2482
|
+
/** Identifier. Resource name for the QaQuestionTag Format projects/{project}/locations/{location}/qaQuestionTags/{qa_question_tag} In the above format, the last segment, i.e., qa_question_tag, is a server-generated ID corresponding to the tag resource. */
|
|
2483
|
+
name?: string;
|
|
2484
|
+
/** Optional. The list of Scorecard Question IDs that the tag applies to. Each QaQuestionId is represented as a full resource name containing the Question ID. Lastly, Since a tag may not necessarily be referenced by any Scorecard Questions, we treat this field as optional. */
|
|
2485
|
+
qaQuestionIds?: string[];
|
|
2486
|
+
/** Output only. The most recent time at which the question tag was updated. */
|
|
2487
|
+
updateTime?: string;
|
|
2488
|
+
}
|
|
2417
2489
|
interface GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata {
|
|
2418
2490
|
/** A list of any applicable data validation warnings about the question's feedback labels. */
|
|
2419
2491
|
datasetValidationWarnings?: string[];
|
|
@@ -2492,6 +2564,12 @@ declare namespace gapi.client {
|
|
|
2492
2564
|
/** Output only. State of the scorecard revision, indicating whether it's ready to be used in analysis. */
|
|
2493
2565
|
state?: string;
|
|
2494
2566
|
}
|
|
2567
|
+
interface GoogleCloudContactcenterinsightsV1QueryInterval {
|
|
2568
|
+
/** Required. The end time of the time window. */
|
|
2569
|
+
endTime?: string;
|
|
2570
|
+
/** Required. The start time of the time window. */
|
|
2571
|
+
startTime?: string;
|
|
2572
|
+
}
|
|
2495
2573
|
interface GoogleCloudContactcenterinsightsV1QueryMetricsMetadata {
|
|
2496
2574
|
/** Whether the result rows were truncated because the result row size is too large to materialize. */
|
|
2497
2575
|
resultIsTruncated?: boolean;
|
|
@@ -2563,6 +2641,20 @@ declare namespace gapi.client {
|
|
|
2563
2641
|
dataPoints?: GoogleCloudContactcenterinsightsV1QueryMetricsResponseSliceDataPoint[];
|
|
2564
2642
|
}
|
|
2565
2643
|
interface GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewMetadata {}
|
|
2644
|
+
interface GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequest {
|
|
2645
|
+
/** Conversations are from a single agent. */
|
|
2646
|
+
agentPerformanceSource?: GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequestAgentSource;
|
|
2647
|
+
/** The time window of the conversations to compare the performance to. */
|
|
2648
|
+
comparisonQueryInterval?: GoogleCloudContactcenterinsightsV1QueryInterval;
|
|
2649
|
+
/** Optional. Filter to select a subset of conversations to compute the performance overview. Supports the same filters as the filter field in QueryMetricsRequest. The source and query interval/comparison query interval should not be included here. */
|
|
2650
|
+
filter?: string;
|
|
2651
|
+
/** Required. The time window of the conversations to derive performance stats from. */
|
|
2652
|
+
queryInterval?: GoogleCloudContactcenterinsightsV1QueryInterval;
|
|
2653
|
+
}
|
|
2654
|
+
interface GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequestAgentSource {
|
|
2655
|
+
/** Required. Agent id to query performance overview for. */
|
|
2656
|
+
agentId?: string;
|
|
2657
|
+
}
|
|
2566
2658
|
interface GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewResponse {
|
|
2567
2659
|
/** The summary text of the performance. */
|
|
2568
2660
|
summaryText?: string;
|
|
@@ -2739,6 +2831,20 @@ declare namespace gapi.client {
|
|
|
2739
2831
|
}
|
|
2740
2832
|
interface GoogleCloudContactcenterinsightsV1UndeployIssueModelResponse {}
|
|
2741
2833
|
interface GoogleCloudContactcenterinsightsV1UndeployQaScorecardRevisionRequest {}
|
|
2834
|
+
interface GoogleCloudContactcenterinsightsV1UpdateQaQuestionTagMetadata {
|
|
2835
|
+
/** Output only. The time the operation was created. */
|
|
2836
|
+
createTime?: string;
|
|
2837
|
+
/** Output only. The time the operation finished running. */
|
|
2838
|
+
endTime?: string;
|
|
2839
|
+
/** Output only. The original request. */
|
|
2840
|
+
request?: GoogleCloudContactcenterinsightsV1UpdateQaQuestionTagRequest;
|
|
2841
|
+
}
|
|
2842
|
+
interface GoogleCloudContactcenterinsightsV1UpdateQaQuestionTagRequest {
|
|
2843
|
+
/** Required. The QaQuestionTag to update. */
|
|
2844
|
+
qaQuestionTag?: GoogleCloudContactcenterinsightsV1QaQuestionTag;
|
|
2845
|
+
/** Optional. The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `qa_question_tag_name` - the name of the tag * `qa_question_ids` - the list of questions the tag applies to */
|
|
2846
|
+
updateMask?: string;
|
|
2847
|
+
}
|
|
2742
2848
|
interface GoogleCloudContactcenterinsightsV1UploadConversationMetadata {
|
|
2743
2849
|
/** Output only. The operation name for a successfully created analysis operation, if any. */
|
|
2744
2850
|
analysisOperation?: string;
|
|
@@ -4642,6 +4748,64 @@ declare namespace gapi.client {
|
|
|
4642
4748
|
},
|
|
4643
4749
|
body: GoogleCloudContactcenterinsightsV1QueryMetricsRequest,
|
|
4644
4750
|
): Request<GoogleLongrunningOperation>;
|
|
4751
|
+
/** Generates a summary of predefined performance metrics for a set of conversations. Conversations can be specified by specifying a time window and an agent id, for now. The summary includes a comparison of metrics computed for conversations in the previous time period, and also a comparison with peers in the same time period. */
|
|
4752
|
+
queryPerformanceOverview(request: {
|
|
4753
|
+
/** V1 error format. */
|
|
4754
|
+
'$.xgafv'?: string;
|
|
4755
|
+
/** OAuth access token. */
|
|
4756
|
+
access_token?: string;
|
|
4757
|
+
/** Data format for response. */
|
|
4758
|
+
alt?: string;
|
|
4759
|
+
/** JSONP */
|
|
4760
|
+
callback?: string;
|
|
4761
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4762
|
+
fields?: string;
|
|
4763
|
+
/** 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. */
|
|
4764
|
+
key?: string;
|
|
4765
|
+
/** OAuth 2.0 token for the current user. */
|
|
4766
|
+
oauth_token?: string;
|
|
4767
|
+
/** Required. The parent resource of the conversations to derive performance stats from. "projects/{project}/locations/{location}" */
|
|
4768
|
+
parent: string;
|
|
4769
|
+
/** Returns response with indentations and line breaks. */
|
|
4770
|
+
prettyPrint?: boolean;
|
|
4771
|
+
/** 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. */
|
|
4772
|
+
quotaUser?: string;
|
|
4773
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4774
|
+
upload_protocol?: string;
|
|
4775
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4776
|
+
uploadType?: string;
|
|
4777
|
+
/** Request body */
|
|
4778
|
+
resource: GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequest;
|
|
4779
|
+
}): Request<GoogleLongrunningOperation>;
|
|
4780
|
+
queryPerformanceOverview(
|
|
4781
|
+
request: {
|
|
4782
|
+
/** V1 error format. */
|
|
4783
|
+
'$.xgafv'?: string;
|
|
4784
|
+
/** OAuth access token. */
|
|
4785
|
+
access_token?: string;
|
|
4786
|
+
/** Data format for response. */
|
|
4787
|
+
alt?: string;
|
|
4788
|
+
/** JSONP */
|
|
4789
|
+
callback?: string;
|
|
4790
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4791
|
+
fields?: string;
|
|
4792
|
+
/** 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. */
|
|
4793
|
+
key?: string;
|
|
4794
|
+
/** OAuth 2.0 token for the current user. */
|
|
4795
|
+
oauth_token?: string;
|
|
4796
|
+
/** Required. The parent resource of the conversations to derive performance stats from. "projects/{project}/locations/{location}" */
|
|
4797
|
+
parent: string;
|
|
4798
|
+
/** Returns response with indentations and line breaks. */
|
|
4799
|
+
prettyPrint?: boolean;
|
|
4800
|
+
/** 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. */
|
|
4801
|
+
quotaUser?: string;
|
|
4802
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4803
|
+
upload_protocol?: string;
|
|
4804
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4805
|
+
uploadType?: string;
|
|
4806
|
+
},
|
|
4807
|
+
body: GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequest,
|
|
4808
|
+
): Request<GoogleLongrunningOperation>;
|
|
4645
4809
|
/** SearchAuthorizedViewSets */
|
|
4646
4810
|
search(request?: {
|
|
4647
4811
|
/** V1 error format. */
|
|
@@ -8293,6 +8457,215 @@ declare namespace gapi.client {
|
|
|
8293
8457
|
body: GoogleCloudContactcenterinsightsV1PhraseMatcher,
|
|
8294
8458
|
): Request<GoogleCloudContactcenterinsightsV1PhraseMatcher>;
|
|
8295
8459
|
}
|
|
8460
|
+
interface QaQuestionTagsResource {
|
|
8461
|
+
/** Creates a QaQuestionTag. */
|
|
8462
|
+
create(request: {
|
|
8463
|
+
/** V1 error format. */
|
|
8464
|
+
'$.xgafv'?: string;
|
|
8465
|
+
/** OAuth access token. */
|
|
8466
|
+
access_token?: string;
|
|
8467
|
+
/** Data format for response. */
|
|
8468
|
+
alt?: string;
|
|
8469
|
+
/** JSONP */
|
|
8470
|
+
callback?: string;
|
|
8471
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8472
|
+
fields?: string;
|
|
8473
|
+
/** 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. */
|
|
8474
|
+
key?: string;
|
|
8475
|
+
/** OAuth 2.0 token for the current user. */
|
|
8476
|
+
oauth_token?: string;
|
|
8477
|
+
/** Required. The parent resource of the QaQuestionTag. */
|
|
8478
|
+
parent: string;
|
|
8479
|
+
/** Returns response with indentations and line breaks. */
|
|
8480
|
+
prettyPrint?: boolean;
|
|
8481
|
+
/** Optional. A unique ID for the new QaQuestionTag. This ID will become the final component of the QaQuestionTag's resource name. If no ID is specified, a server-generated ID will be used. This value should be 4-64 characters and must match the regular expression `^[a-z0-9-]{4,64}$`. Valid characters are `a-z-`. */
|
|
8482
|
+
qaQuestionTagId?: string;
|
|
8483
|
+
/** 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. */
|
|
8484
|
+
quotaUser?: string;
|
|
8485
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8486
|
+
upload_protocol?: string;
|
|
8487
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8488
|
+
uploadType?: string;
|
|
8489
|
+
/** Request body */
|
|
8490
|
+
resource: GoogleCloudContactcenterinsightsV1QaQuestionTag;
|
|
8491
|
+
}): Request<GoogleCloudContactcenterinsightsV1QaQuestionTag>;
|
|
8492
|
+
create(
|
|
8493
|
+
request: {
|
|
8494
|
+
/** V1 error format. */
|
|
8495
|
+
'$.xgafv'?: string;
|
|
8496
|
+
/** OAuth access token. */
|
|
8497
|
+
access_token?: string;
|
|
8498
|
+
/** Data format for response. */
|
|
8499
|
+
alt?: string;
|
|
8500
|
+
/** JSONP */
|
|
8501
|
+
callback?: string;
|
|
8502
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8503
|
+
fields?: string;
|
|
8504
|
+
/** 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. */
|
|
8505
|
+
key?: string;
|
|
8506
|
+
/** OAuth 2.0 token for the current user. */
|
|
8507
|
+
oauth_token?: string;
|
|
8508
|
+
/** Required. The parent resource of the QaQuestionTag. */
|
|
8509
|
+
parent: string;
|
|
8510
|
+
/** Returns response with indentations and line breaks. */
|
|
8511
|
+
prettyPrint?: boolean;
|
|
8512
|
+
/** Optional. A unique ID for the new QaQuestionTag. This ID will become the final component of the QaQuestionTag's resource name. If no ID is specified, a server-generated ID will be used. This value should be 4-64 characters and must match the regular expression `^[a-z0-9-]{4,64}$`. Valid characters are `a-z-`. */
|
|
8513
|
+
qaQuestionTagId?: string;
|
|
8514
|
+
/** 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. */
|
|
8515
|
+
quotaUser?: string;
|
|
8516
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8517
|
+
upload_protocol?: string;
|
|
8518
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8519
|
+
uploadType?: string;
|
|
8520
|
+
},
|
|
8521
|
+
body: GoogleCloudContactcenterinsightsV1QaQuestionTag,
|
|
8522
|
+
): Request<GoogleCloudContactcenterinsightsV1QaQuestionTag>;
|
|
8523
|
+
/** Deletes a QaQuestionTag. */
|
|
8524
|
+
delete(request?: {
|
|
8525
|
+
/** V1 error format. */
|
|
8526
|
+
'$.xgafv'?: string;
|
|
8527
|
+
/** OAuth access token. */
|
|
8528
|
+
access_token?: string;
|
|
8529
|
+
/** Data format for response. */
|
|
8530
|
+
alt?: string;
|
|
8531
|
+
/** JSONP */
|
|
8532
|
+
callback?: string;
|
|
8533
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8534
|
+
fields?: string;
|
|
8535
|
+
/** 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. */
|
|
8536
|
+
key?: string;
|
|
8537
|
+
/** Required. The name of the QaQuestionTag to delete. */
|
|
8538
|
+
name: string;
|
|
8539
|
+
/** OAuth 2.0 token for the current user. */
|
|
8540
|
+
oauth_token?: string;
|
|
8541
|
+
/** Returns response with indentations and line breaks. */
|
|
8542
|
+
prettyPrint?: boolean;
|
|
8543
|
+
/** 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. */
|
|
8544
|
+
quotaUser?: string;
|
|
8545
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8546
|
+
upload_protocol?: string;
|
|
8547
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8548
|
+
uploadType?: string;
|
|
8549
|
+
}): Request<GoogleLongrunningOperation>;
|
|
8550
|
+
/** Gets a QaQuestionTag. */
|
|
8551
|
+
get(request?: {
|
|
8552
|
+
/** V1 error format. */
|
|
8553
|
+
'$.xgafv'?: string;
|
|
8554
|
+
/** OAuth access token. */
|
|
8555
|
+
access_token?: string;
|
|
8556
|
+
/** Data format for response. */
|
|
8557
|
+
alt?: string;
|
|
8558
|
+
/** JSONP */
|
|
8559
|
+
callback?: string;
|
|
8560
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8561
|
+
fields?: string;
|
|
8562
|
+
/** 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. */
|
|
8563
|
+
key?: string;
|
|
8564
|
+
/** Required. The name of the QaQuestionTag to get. */
|
|
8565
|
+
name: string;
|
|
8566
|
+
/** OAuth 2.0 token for the current user. */
|
|
8567
|
+
oauth_token?: string;
|
|
8568
|
+
/** Returns response with indentations and line breaks. */
|
|
8569
|
+
prettyPrint?: boolean;
|
|
8570
|
+
/** 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. */
|
|
8571
|
+
quotaUser?: string;
|
|
8572
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8573
|
+
upload_protocol?: string;
|
|
8574
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8575
|
+
uploadType?: string;
|
|
8576
|
+
}): Request<GoogleCloudContactcenterinsightsV1QaQuestionTag>;
|
|
8577
|
+
/** Lists the question tags. */
|
|
8578
|
+
list(request?: {
|
|
8579
|
+
/** V1 error format. */
|
|
8580
|
+
'$.xgafv'?: string;
|
|
8581
|
+
/** OAuth access token. */
|
|
8582
|
+
access_token?: string;
|
|
8583
|
+
/** Data format for response. */
|
|
8584
|
+
alt?: string;
|
|
8585
|
+
/** JSONP */
|
|
8586
|
+
callback?: string;
|
|
8587
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8588
|
+
fields?: string;
|
|
8589
|
+
/** Optional. A filter to reduce results to a specific subset. Supports disjunctions (OR) and conjunctions (AND). Supported fields include the following: * `project_id` - id of the project to list tags for * `qa_scorecard_revision_id` - id of the scorecard revision to list tags for * `qa_question_id - id of the question to list tags for` */
|
|
8590
|
+
filter?: string;
|
|
8591
|
+
/** 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. */
|
|
8592
|
+
key?: string;
|
|
8593
|
+
/** OAuth 2.0 token for the current user. */
|
|
8594
|
+
oauth_token?: string;
|
|
8595
|
+
/** Required. The parent resource of the QaQuestionTags. */
|
|
8596
|
+
parent: string;
|
|
8597
|
+
/** Returns response with indentations and line breaks. */
|
|
8598
|
+
prettyPrint?: boolean;
|
|
8599
|
+
/** 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. */
|
|
8600
|
+
quotaUser?: string;
|
|
8601
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8602
|
+
upload_protocol?: string;
|
|
8603
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8604
|
+
uploadType?: string;
|
|
8605
|
+
}): Request<GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse>;
|
|
8606
|
+
/** Updates a QaQuestionTag. */
|
|
8607
|
+
patch(request: {
|
|
8608
|
+
/** V1 error format. */
|
|
8609
|
+
'$.xgafv'?: string;
|
|
8610
|
+
/** OAuth access token. */
|
|
8611
|
+
access_token?: string;
|
|
8612
|
+
/** Data format for response. */
|
|
8613
|
+
alt?: string;
|
|
8614
|
+
/** JSONP */
|
|
8615
|
+
callback?: string;
|
|
8616
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8617
|
+
fields?: string;
|
|
8618
|
+
/** 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. */
|
|
8619
|
+
key?: string;
|
|
8620
|
+
/** Identifier. Resource name for the QaQuestionTag Format projects/{project}/locations/{location}/qaQuestionTags/{qa_question_tag} In the above format, the last segment, i.e., qa_question_tag, is a server-generated ID corresponding to the tag resource. */
|
|
8621
|
+
name: string;
|
|
8622
|
+
/** OAuth 2.0 token for the current user. */
|
|
8623
|
+
oauth_token?: string;
|
|
8624
|
+
/** Returns response with indentations and line breaks. */
|
|
8625
|
+
prettyPrint?: boolean;
|
|
8626
|
+
/** 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. */
|
|
8627
|
+
quotaUser?: string;
|
|
8628
|
+
/** Optional. The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `qa_question_tag_name` - the name of the tag * `qa_question_ids` - the list of questions the tag applies to */
|
|
8629
|
+
updateMask?: string;
|
|
8630
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8631
|
+
upload_protocol?: string;
|
|
8632
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8633
|
+
uploadType?: string;
|
|
8634
|
+
/** Request body */
|
|
8635
|
+
resource: GoogleCloudContactcenterinsightsV1QaQuestionTag;
|
|
8636
|
+
}): Request<GoogleLongrunningOperation>;
|
|
8637
|
+
patch(
|
|
8638
|
+
request: {
|
|
8639
|
+
/** V1 error format. */
|
|
8640
|
+
'$.xgafv'?: string;
|
|
8641
|
+
/** OAuth access token. */
|
|
8642
|
+
access_token?: string;
|
|
8643
|
+
/** Data format for response. */
|
|
8644
|
+
alt?: string;
|
|
8645
|
+
/** JSONP */
|
|
8646
|
+
callback?: string;
|
|
8647
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8648
|
+
fields?: string;
|
|
8649
|
+
/** 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. */
|
|
8650
|
+
key?: string;
|
|
8651
|
+
/** Identifier. Resource name for the QaQuestionTag Format projects/{project}/locations/{location}/qaQuestionTags/{qa_question_tag} In the above format, the last segment, i.e., qa_question_tag, is a server-generated ID corresponding to the tag resource. */
|
|
8652
|
+
name: string;
|
|
8653
|
+
/** OAuth 2.0 token for the current user. */
|
|
8654
|
+
oauth_token?: string;
|
|
8655
|
+
/** Returns response with indentations and line breaks. */
|
|
8656
|
+
prettyPrint?: boolean;
|
|
8657
|
+
/** 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. */
|
|
8658
|
+
quotaUser?: string;
|
|
8659
|
+
/** Optional. The list of fields to be updated. All possible fields can be updated by passing `*`, or a subset of the following updateable fields can be provided: * `qa_question_tag_name` - the name of the tag * `qa_question_ids` - the list of questions the tag applies to */
|
|
8660
|
+
updateMask?: string;
|
|
8661
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8662
|
+
upload_protocol?: string;
|
|
8663
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8664
|
+
uploadType?: string;
|
|
8665
|
+
},
|
|
8666
|
+
body: GoogleCloudContactcenterinsightsV1QaQuestionTag,
|
|
8667
|
+
): Request<GoogleLongrunningOperation>;
|
|
8668
|
+
}
|
|
8296
8669
|
interface QaQuestionsResource {
|
|
8297
8670
|
/** Create a QaQuestion. */
|
|
8298
8671
|
create(request: {
|
|
@@ -9573,6 +9946,64 @@ declare namespace gapi.client {
|
|
|
9573
9946
|
},
|
|
9574
9947
|
body: GoogleCloudContactcenterinsightsV1QueryMetricsRequest,
|
|
9575
9948
|
): Request<GoogleLongrunningOperation>;
|
|
9949
|
+
/** Generates a summary of predefined performance metrics for a set of conversations. Conversations can be specified by specifying a time window and an agent id, for now. The summary includes a comparison of metrics computed for conversations in the previous time period, and also a comparison with peers in the same time period. */
|
|
9950
|
+
queryPerformanceOverview(request: {
|
|
9951
|
+
/** V1 error format. */
|
|
9952
|
+
'$.xgafv'?: string;
|
|
9953
|
+
/** OAuth access token. */
|
|
9954
|
+
access_token?: string;
|
|
9955
|
+
/** Data format for response. */
|
|
9956
|
+
alt?: string;
|
|
9957
|
+
/** JSONP */
|
|
9958
|
+
callback?: string;
|
|
9959
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9960
|
+
fields?: string;
|
|
9961
|
+
/** 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. */
|
|
9962
|
+
key?: string;
|
|
9963
|
+
/** OAuth 2.0 token for the current user. */
|
|
9964
|
+
oauth_token?: string;
|
|
9965
|
+
/** Required. The parent resource of the conversations to derive performance stats from. "projects/{project}/locations/{location}" */
|
|
9966
|
+
parent: string;
|
|
9967
|
+
/** Returns response with indentations and line breaks. */
|
|
9968
|
+
prettyPrint?: boolean;
|
|
9969
|
+
/** 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. */
|
|
9970
|
+
quotaUser?: string;
|
|
9971
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9972
|
+
upload_protocol?: string;
|
|
9973
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9974
|
+
uploadType?: string;
|
|
9975
|
+
/** Request body */
|
|
9976
|
+
resource: GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequest;
|
|
9977
|
+
}): Request<GoogleLongrunningOperation>;
|
|
9978
|
+
queryPerformanceOverview(
|
|
9979
|
+
request: {
|
|
9980
|
+
/** V1 error format. */
|
|
9981
|
+
'$.xgafv'?: string;
|
|
9982
|
+
/** OAuth access token. */
|
|
9983
|
+
access_token?: string;
|
|
9984
|
+
/** Data format for response. */
|
|
9985
|
+
alt?: string;
|
|
9986
|
+
/** JSONP */
|
|
9987
|
+
callback?: string;
|
|
9988
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9989
|
+
fields?: string;
|
|
9990
|
+
/** 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. */
|
|
9991
|
+
key?: string;
|
|
9992
|
+
/** OAuth 2.0 token for the current user. */
|
|
9993
|
+
oauth_token?: string;
|
|
9994
|
+
/** Required. The parent resource of the conversations to derive performance stats from. "projects/{project}/locations/{location}" */
|
|
9995
|
+
parent: string;
|
|
9996
|
+
/** Returns response with indentations and line breaks. */
|
|
9997
|
+
prettyPrint?: boolean;
|
|
9998
|
+
/** 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. */
|
|
9999
|
+
quotaUser?: string;
|
|
10000
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10001
|
+
upload_protocol?: string;
|
|
10002
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10003
|
+
uploadType?: string;
|
|
10004
|
+
},
|
|
10005
|
+
body: GoogleCloudContactcenterinsightsV1QueryPerformanceOverviewRequest,
|
|
10006
|
+
): Request<GoogleLongrunningOperation>;
|
|
9576
10007
|
/** Updates project-level settings. */
|
|
9577
10008
|
updateSettings(request: {
|
|
9578
10009
|
/** V1 error format. */
|
|
@@ -9645,6 +10076,7 @@ declare namespace gapi.client {
|
|
|
9645
10076
|
issueModels: IssueModelsResource;
|
|
9646
10077
|
operations: OperationsResource;
|
|
9647
10078
|
phraseMatchers: PhraseMatchersResource;
|
|
10079
|
+
qaQuestionTags: QaQuestionTagsResource;
|
|
9648
10080
|
qaScorecards: QaScorecardsResource;
|
|
9649
10081
|
views: ViewsResource;
|
|
9650
10082
|
}
|