@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20250303 → 0.0.20250311

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 +85 -1
  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: 20250303
12
+ // Revision: 20250311
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -193,6 +193,19 @@ declare namespace gapi.client {
193
193
  parent?: string;
194
194
  }
195
195
  interface GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsResponse {}
196
+ interface GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsMetadata {
197
+ /** Partial errors during deletion operation that might cause the operation output to be incomplete. */
198
+ partialErrors?: GoogleRpcStatus[];
199
+ /** Output only. The original request for delete. */
200
+ request?: GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest;
201
+ }
202
+ interface GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest {
203
+ /** Optional. A filter to reduce results to a specific subset. Supports disjunctions (OR) and conjunctions (AND). Supported fields: * `issue_model_id` * `qa_question_id` * `qa_scorecard_id` * `min_create_time` * `max_create_time` * `min_update_time` * `max_update_time` * `feedback_label_type`: QUALITY_AI, TOPIC_MODELING */
204
+ filter?: string;
205
+ /** Required. The parent resource for new feedback labels. */
206
+ parent?: string;
207
+ }
208
+ interface GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsResponse {}
196
209
  interface GoogleCloudContactcenterinsightsV1alpha1CallAnnotation {
197
210
  /** The boundary in the conversation where the annotation ends, inclusive. */
198
211
  annotationEndBoundary?: GoogleCloudContactcenterinsightsV1alpha1AnnotationBoundary;
@@ -1263,6 +1276,19 @@ declare namespace gapi.client {
1263
1276
  parent?: string;
1264
1277
  }
1265
1278
  interface GoogleCloudContactcenterinsightsV1BulkDeleteConversationsResponse {}
1279
+ interface GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsMetadata {
1280
+ /** Partial errors during deletion operation that might cause the operation output to be incomplete. */
1281
+ partialErrors?: GoogleRpcStatus[];
1282
+ /** Output only. The original request for delete. */
1283
+ request?: GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest;
1284
+ }
1285
+ interface GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest {
1286
+ /** Optional. A filter to reduce results to a specific subset. Supports disjunctions (OR) and conjunctions (AND). Supported fields: * `issue_model_id` * `qa_question_id` * `qa_scorecard_id` * `min_create_time` * `max_create_time` * `min_update_time` * `max_update_time` * `feedback_label_type`: QUALITY_AI, TOPIC_MODELING */
1287
+ filter?: string;
1288
+ /** Required. The parent resource for new feedback labels. */
1289
+ parent?: string;
1290
+ }
1291
+ interface GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsResponse {}
1266
1292
  interface GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsMetadata {
1267
1293
  /** Output only. The time the operation was created. */
1268
1294
  createTime?: string;
@@ -5709,6 +5735,64 @@ declare namespace gapi.client {
5709
5735
  ): Request<GoogleCloudContactcenterinsightsV1View>;
5710
5736
  }
5711
5737
  interface LocationsResource {
5738
+ /** Delete feedback labels in bulk using a filter. */
5739
+ bulkDeleteFeedbackLabels(request: {
5740
+ /** V1 error format. */
5741
+ '$.xgafv'?: string;
5742
+ /** OAuth access token. */
5743
+ access_token?: string;
5744
+ /** Data format for response. */
5745
+ alt?: string;
5746
+ /** JSONP */
5747
+ callback?: string;
5748
+ /** Selector specifying which fields to include in a partial response. */
5749
+ fields?: string;
5750
+ /** 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. */
5751
+ key?: string;
5752
+ /** OAuth 2.0 token for the current user. */
5753
+ oauth_token?: string;
5754
+ /** Required. The parent resource for new feedback labels. */
5755
+ parent: string;
5756
+ /** Returns response with indentations and line breaks. */
5757
+ prettyPrint?: boolean;
5758
+ /** 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. */
5759
+ quotaUser?: string;
5760
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5761
+ upload_protocol?: string;
5762
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5763
+ uploadType?: string;
5764
+ /** Request body */
5765
+ resource: GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest;
5766
+ }): Request<GoogleLongrunningOperation>;
5767
+ bulkDeleteFeedbackLabels(
5768
+ request: {
5769
+ /** V1 error format. */
5770
+ '$.xgafv'?: string;
5771
+ /** OAuth access token. */
5772
+ access_token?: string;
5773
+ /** Data format for response. */
5774
+ alt?: string;
5775
+ /** JSONP */
5776
+ callback?: string;
5777
+ /** Selector specifying which fields to include in a partial response. */
5778
+ fields?: string;
5779
+ /** 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. */
5780
+ key?: string;
5781
+ /** OAuth 2.0 token for the current user. */
5782
+ oauth_token?: string;
5783
+ /** Required. The parent resource for new feedback labels. */
5784
+ parent: string;
5785
+ /** Returns response with indentations and line breaks. */
5786
+ prettyPrint?: boolean;
5787
+ /** 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. */
5788
+ quotaUser?: string;
5789
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
5790
+ upload_protocol?: string;
5791
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5792
+ uploadType?: string;
5793
+ },
5794
+ body: GoogleCloudContactcenterinsightsV1BulkDeleteFeedbackLabelsRequest,
5795
+ ): Request<GoogleLongrunningOperation>;
5712
5796
  /** Download feedback labels in bulk from an external source. Currently supports exporting Quality AI example conversations with transcripts and question bodies. */
5713
5797
  bulkDownloadFeedbackLabels(request: {
5714
5798
  /** V1 error format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.contactcenterinsights-v1",
3
- "version": "0.0.20250303",
3
+ "version": "0.0.20250311",
4
4
  "description": "TypeScript typings for Contact Center AI Insights API v1",
5
5
  "repository": {
6
6
  "type": "git",