@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20250127 → 0.0.20250210

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 +117 -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: 20250127
12
+ // Revision: 20250210
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -541,6 +541,8 @@ declare namespace gapi.client {
541
541
  interface GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest {
542
542
  /** Specified if sink is a BigQuery table. */
543
543
  bigQueryDestination?: GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination;
544
+ /** Optional. Version of the export schema. */
545
+ exportSchemaVersion?: string;
544
546
  /** A filter to reduce results to a specific subset. Useful for exporting conversations with specific properties. */
545
547
  filter?: string;
546
548
  /** A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version} */
@@ -1707,6 +1709,8 @@ declare namespace gapi.client {
1707
1709
  interface GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest {
1708
1710
  /** Specified if sink is a BigQuery table. */
1709
1711
  bigQueryDestination?: GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination;
1712
+ /** Optional. Version of the export schema. */
1713
+ exportSchemaVersion?: string;
1710
1714
  /** A filter to reduce results to a specific subset. Useful for exporting conversations with specific properties. */
1711
1715
  filter?: string;
1712
1716
  /** A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version} */
@@ -2020,6 +2024,12 @@ declare namespace gapi.client {
2020
2024
  /** The QaQuestions under the parent. */
2021
2025
  qaQuestions?: GoogleCloudContactcenterinsightsV1QaQuestion[];
2022
2026
  }
2027
+ interface GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse {
2028
+ /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2029
+ nextPageToken?: string;
2030
+ /** The parent resource of the questions. */
2031
+ qaQuestionTags?: GoogleCloudContactcenterinsightsV1QaQuestionTag[];
2032
+ }
2023
2033
  interface GoogleCloudContactcenterinsightsV1ListQaScorecardRevisionsResponse {
2024
2034
  /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
2025
2035
  nextPageToken?: string;
@@ -2166,6 +2176,18 @@ declare namespace gapi.client {
2166
2176
  /** Output only. Accuracy of the model. Measures the percentage of correct answers the model gave on the test set. */
2167
2177
  accuracy?: number;
2168
2178
  }
2179
+ interface GoogleCloudContactcenterinsightsV1QaQuestionTag {
2180
+ /** Output only. The time at which the question tag was created. */
2181
+ createTime?: string;
2182
+ /** Required. A user-specified display name for the tag. */
2183
+ displayName?: string;
2184
+ /** 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. */
2185
+ name?: string;
2186
+ /** Optional. The list of QA question IDs that the tag applies to. Optional, a tag may not necessarily be referenced by any questions. */
2187
+ qaQuestionIds?: string[];
2188
+ /** Output only. The most recent time at which the question tag was updated. */
2189
+ updateTime?: string;
2190
+ }
2169
2191
  interface GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata {
2170
2192
  /** A list of any applicable data validation warnings about the question's feedback labels. */
2171
2193
  datasetValidationWarnings?: string[];
@@ -4732,6 +4754,99 @@ declare namespace gapi.client {
4732
4754
  body: GoogleCloudContactcenterinsightsV1PhraseMatcher,
4733
4755
  ): Request<GoogleCloudContactcenterinsightsV1PhraseMatcher>;
4734
4756
  }
4757
+ interface QaQuestionTagsResource {
4758
+ /** Create a QaQuestionTag. */
4759
+ create(request: {
4760
+ /** V1 error format. */
4761
+ '$.xgafv'?: string;
4762
+ /** OAuth access token. */
4763
+ access_token?: string;
4764
+ /** Data format for response. */
4765
+ alt?: string;
4766
+ /** JSONP */
4767
+ callback?: string;
4768
+ /** Selector specifying which fields to include in a partial response. */
4769
+ fields?: string;
4770
+ /** 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. */
4771
+ key?: string;
4772
+ /** OAuth 2.0 token for the current user. */
4773
+ oauth_token?: string;
4774
+ /** Required. The parent resource of the QaQuestionTag. */
4775
+ parent: string;
4776
+ /** Returns response with indentations and line breaks. */
4777
+ prettyPrint?: boolean;
4778
+ /** 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. */
4779
+ quotaUser?: string;
4780
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
4781
+ upload_protocol?: string;
4782
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4783
+ uploadType?: string;
4784
+ /** Request body */
4785
+ resource: GoogleCloudContactcenterinsightsV1QaQuestionTag;
4786
+ }): Request<GoogleCloudContactcenterinsightsV1QaQuestionTag>;
4787
+ create(
4788
+ request: {
4789
+ /** V1 error format. */
4790
+ '$.xgafv'?: string;
4791
+ /** OAuth access token. */
4792
+ access_token?: string;
4793
+ /** Data format for response. */
4794
+ alt?: string;
4795
+ /** JSONP */
4796
+ callback?: string;
4797
+ /** Selector specifying which fields to include in a partial response. */
4798
+ fields?: string;
4799
+ /** 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. */
4800
+ key?: string;
4801
+ /** OAuth 2.0 token for the current user. */
4802
+ oauth_token?: string;
4803
+ /** Required. The parent resource of the QaQuestionTag. */
4804
+ parent: string;
4805
+ /** Returns response with indentations and line breaks. */
4806
+ prettyPrint?: boolean;
4807
+ /** 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. */
4808
+ quotaUser?: string;
4809
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
4810
+ upload_protocol?: string;
4811
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4812
+ uploadType?: string;
4813
+ },
4814
+ body: GoogleCloudContactcenterinsightsV1QaQuestionTag,
4815
+ ): Request<GoogleCloudContactcenterinsightsV1QaQuestionTag>;
4816
+ /** Lists the question tags. */
4817
+ list(request?: {
4818
+ /** V1 error format. */
4819
+ '$.xgafv'?: string;
4820
+ /** OAuth access token. */
4821
+ access_token?: string;
4822
+ /** Data format for response. */
4823
+ alt?: string;
4824
+ /** JSONP */
4825
+ callback?: string;
4826
+ /** Selector specifying which fields to include in a partial response. */
4827
+ fields?: string;
4828
+ /** 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` */
4829
+ filter?: string;
4830
+ /** 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. */
4831
+ key?: string;
4832
+ /** OAuth 2.0 token for the current user. */
4833
+ oauth_token?: string;
4834
+ /** Optional. The maximum number of questions to return in the response. If the value is zero, the service will select a default size. A call might return fewer objects than requested. A non-empty `next_page_token` in the response indicates that more data is available. */
4835
+ pageSize?: number;
4836
+ /** Optional. The value returned by the last `ListQaQuestionTagsResponse`. This value indicates that this is a continuation of a prior `ListQaQuestionTags` call and that the system should return the next page of data. */
4837
+ pageToken?: string;
4838
+ /** Required. The parent resource of the QaQuestionTags. */
4839
+ parent: string;
4840
+ /** Returns response with indentations and line breaks. */
4841
+ prettyPrint?: boolean;
4842
+ /** 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. */
4843
+ quotaUser?: string;
4844
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
4845
+ upload_protocol?: string;
4846
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
4847
+ uploadType?: string;
4848
+ }): Request<GoogleCloudContactcenterinsightsV1ListQaQuestionTagsResponse>;
4849
+ }
4735
4850
  interface QaQuestionsResource {
4736
4851
  /** Create a QaQuestion. */
4737
4852
  create(request: {
@@ -6024,6 +6139,7 @@ declare namespace gapi.client {
6024
6139
  issueModels: IssueModelsResource;
6025
6140
  operations: OperationsResource;
6026
6141
  phraseMatchers: PhraseMatchersResource;
6142
+ qaQuestionTags: QaQuestionTagsResource;
6027
6143
  qaScorecards: QaScorecardsResource;
6028
6144
  views: ViewsResource;
6029
6145
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.contactcenterinsights-v1",
3
- "version": "0.0.20250127",
3
+ "version": "0.0.20250210",
4
4
  "description": "TypeScript typings for Contact Center AI Insights API v1",
5
5
  "repository": {
6
6
  "type": "git",