@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20250203 → 0.0.20250217
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 +27 -15
- 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: 20250217
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -242,7 +242,7 @@ declare namespace gapi.client {
|
|
|
242
242
|
latestSummary?: GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData;
|
|
243
243
|
/** Immutable. The conversation medium, if unspecified will default to PHONE_CALL. */
|
|
244
244
|
medium?: string;
|
|
245
|
-
/** Input only. JSON metadata encoded as a string. This field is primarily used by Insights integrations with various
|
|
245
|
+
/** 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. */
|
|
246
246
|
metadataJson?: string;
|
|
247
247
|
/** Immutable. The resource name of the conversation. Format: projects/{project}/locations/{location}/conversations/{conversation} */
|
|
248
248
|
name?: string;
|
|
@@ -529,10 +529,14 @@ declare namespace gapi.client {
|
|
|
529
529
|
type?: string;
|
|
530
530
|
}
|
|
531
531
|
interface GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataMetadata {
|
|
532
|
+
/** The number of conversations that were exported successfully. */
|
|
533
|
+
completedExportCount?: number;
|
|
532
534
|
/** Output only. The time the operation was created. */
|
|
533
535
|
createTime?: string;
|
|
534
536
|
/** Output only. The time the operation finished running. */
|
|
535
537
|
endTime?: string;
|
|
538
|
+
/** The number of conversations that failed to be exported. */
|
|
539
|
+
failedExportCount?: number;
|
|
536
540
|
/** Partial errors during export operation that might cause the operation output to be incomplete. */
|
|
537
541
|
partialErrors?: GoogleRpcStatus[];
|
|
538
542
|
/** The original request for export. */
|
|
@@ -541,6 +545,8 @@ declare namespace gapi.client {
|
|
|
541
545
|
interface GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequest {
|
|
542
546
|
/** Specified if sink is a BigQuery table. */
|
|
543
547
|
bigQueryDestination?: GoogleCloudContactcenterinsightsV1alpha1ExportInsightsDataRequestBigQueryDestination;
|
|
548
|
+
/** Optional. Version of the export schema. */
|
|
549
|
+
exportSchemaVersion?: string;
|
|
544
550
|
/** A filter to reduce results to a specific subset. Useful for exporting conversations with specific properties. */
|
|
545
551
|
filter?: string;
|
|
546
552
|
/** A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version} */
|
|
@@ -595,13 +601,13 @@ declare namespace gapi.client {
|
|
|
595
601
|
interface GoogleCloudContactcenterinsightsV1alpha1FeedbackLabel {
|
|
596
602
|
/** Output only. Create time of the label. */
|
|
597
603
|
createTime?: string;
|
|
598
|
-
/** String label. */
|
|
604
|
+
/** String label used for Topic Modeling. */
|
|
599
605
|
label?: string;
|
|
600
|
-
/** Resource name of the resource to be labeled. */
|
|
606
|
+
/** Resource name of the resource to be labeled. Supported resources: - qaScorecards/{scorecard}/revisions/{revision}/qaQuestions/{question} - issueModels/{issue_model} */
|
|
601
607
|
labeledResource?: string;
|
|
602
608
|
/** Immutable. Resource name of the FeedbackLabel. Format: projects/{project}/locations/{location}/conversations/{conversation}/feedbackLabels/{feedback_label} */
|
|
603
609
|
name?: string;
|
|
604
|
-
/** QaAnswer label. */
|
|
610
|
+
/** QaAnswer label used for Quality AI example conversations. */
|
|
605
611
|
qaAnswerLabel?: GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue;
|
|
606
612
|
/** Output only. Update time of the label. */
|
|
607
613
|
updateTime?: string;
|
|
@@ -739,7 +745,7 @@ declare namespace gapi.client {
|
|
|
739
745
|
updateTime?: string;
|
|
740
746
|
}
|
|
741
747
|
interface GoogleCloudContactcenterinsightsV1alpha1IssueAssignment {
|
|
742
|
-
/** Immutable. Display name of the assigned issue. This field is set at time of
|
|
748
|
+
/** Immutable. Display name of the assigned issue. This field is set at time of analysis and immutable since then. */
|
|
743
749
|
displayName?: string;
|
|
744
750
|
/** Resource name of the assigned issue. */
|
|
745
751
|
issue?: string;
|
|
@@ -1007,7 +1013,7 @@ declare namespace gapi.client {
|
|
|
1007
1013
|
querySource?: string;
|
|
1008
1014
|
}
|
|
1009
1015
|
interface GoogleCloudContactcenterinsightsV1alpha1SentimentData {
|
|
1010
|
-
/** A non-negative number from 0 to infinity which represents the
|
|
1016
|
+
/** A non-negative number from 0 to infinity which represents the absolute magnitude of sentiment regardless of score. */
|
|
1011
1017
|
magnitude?: number;
|
|
1012
1018
|
/** The sentiment score between -1.0 (negative) and 1.0 (positive). */
|
|
1013
1019
|
score?: number;
|
|
@@ -1403,7 +1409,7 @@ declare namespace gapi.client {
|
|
|
1403
1409
|
latestSummary?: GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData;
|
|
1404
1410
|
/** Immutable. The conversation medium, if unspecified will default to PHONE_CALL. */
|
|
1405
1411
|
medium?: string;
|
|
1406
|
-
/** Input only. JSON metadata encoded as a string. This field is primarily used by Insights integrations with various
|
|
1412
|
+
/** 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. */
|
|
1407
1413
|
metadataJson?: string;
|
|
1408
1414
|
/** Immutable. The resource name of the conversation. Format: projects/{project}/locations/{location}/conversations/{conversation} */
|
|
1409
1415
|
name?: string;
|
|
@@ -1695,10 +1701,14 @@ declare namespace gapi.client {
|
|
|
1695
1701
|
caseSensitive?: boolean;
|
|
1696
1702
|
}
|
|
1697
1703
|
interface GoogleCloudContactcenterinsightsV1ExportInsightsDataMetadata {
|
|
1704
|
+
/** The number of conversations that were exported successfully. */
|
|
1705
|
+
completedExportCount?: number;
|
|
1698
1706
|
/** Output only. The time the operation was created. */
|
|
1699
1707
|
createTime?: string;
|
|
1700
1708
|
/** Output only. The time the operation finished running. */
|
|
1701
1709
|
endTime?: string;
|
|
1710
|
+
/** The number of conversations that failed to be exported. */
|
|
1711
|
+
failedExportCount?: number;
|
|
1702
1712
|
/** Partial errors during export operation that might cause the operation output to be incomplete. */
|
|
1703
1713
|
partialErrors?: GoogleRpcStatus[];
|
|
1704
1714
|
/** The original request for export. */
|
|
@@ -1707,6 +1717,8 @@ declare namespace gapi.client {
|
|
|
1707
1717
|
interface GoogleCloudContactcenterinsightsV1ExportInsightsDataRequest {
|
|
1708
1718
|
/** Specified if sink is a BigQuery table. */
|
|
1709
1719
|
bigQueryDestination?: GoogleCloudContactcenterinsightsV1ExportInsightsDataRequestBigQueryDestination;
|
|
1720
|
+
/** Optional. Version of the export schema. */
|
|
1721
|
+
exportSchemaVersion?: string;
|
|
1710
1722
|
/** A filter to reduce results to a specific subset. Useful for exporting conversations with specific properties. */
|
|
1711
1723
|
filter?: string;
|
|
1712
1724
|
/** A fully qualified KMS key name for BigQuery tables protected by CMEK. Format: projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}/cryptoKeyVersions/{version} */
|
|
@@ -1761,13 +1773,13 @@ declare namespace gapi.client {
|
|
|
1761
1773
|
interface GoogleCloudContactcenterinsightsV1FeedbackLabel {
|
|
1762
1774
|
/** Output only. Create time of the label. */
|
|
1763
1775
|
createTime?: string;
|
|
1764
|
-
/** String label. */
|
|
1776
|
+
/** String label used for Topic Modeling. */
|
|
1765
1777
|
label?: string;
|
|
1766
|
-
/** Resource name of the resource to be labeled. */
|
|
1778
|
+
/** Resource name of the resource to be labeled. Supported resources: - qaScorecards/{scorecard}/revisions/{revision}/qaQuestions/{question} - issueModels/{issue_model} */
|
|
1767
1779
|
labeledResource?: string;
|
|
1768
1780
|
/** Immutable. Resource name of the FeedbackLabel. Format: projects/{project}/locations/{location}/conversations/{conversation}/feedbackLabels/{feedback_label} */
|
|
1769
1781
|
name?: string;
|
|
1770
|
-
/** QaAnswer label. */
|
|
1782
|
+
/** QaAnswer label used for Quality AI example conversations. */
|
|
1771
1783
|
qaAnswerLabel?: GoogleCloudContactcenterinsightsV1QaAnswerAnswerValue;
|
|
1772
1784
|
/** Output only. Update time of the label. */
|
|
1773
1785
|
updateTime?: string;
|
|
@@ -1905,7 +1917,7 @@ declare namespace gapi.client {
|
|
|
1905
1917
|
updateTime?: string;
|
|
1906
1918
|
}
|
|
1907
1919
|
interface GoogleCloudContactcenterinsightsV1IssueAssignment {
|
|
1908
|
-
/** Immutable. Display name of the assigned issue. This field is set at time of
|
|
1920
|
+
/** Immutable. Display name of the assigned issue. This field is set at time of analysis and immutable since then. */
|
|
1909
1921
|
displayName?: string;
|
|
1910
1922
|
/** Resource name of the assigned issue. */
|
|
1911
1923
|
issue?: string;
|
|
@@ -2355,7 +2367,7 @@ declare namespace gapi.client {
|
|
|
2355
2367
|
querySource?: string;
|
|
2356
2368
|
}
|
|
2357
2369
|
interface GoogleCloudContactcenterinsightsV1SentimentData {
|
|
2358
|
-
/** A non-negative number from 0 to infinity which represents the
|
|
2370
|
+
/** A non-negative number from 0 to infinity which represents the absolute magnitude of sentiment regardless of score. */
|
|
2359
2371
|
magnitude?: number;
|
|
2360
2372
|
/** The sentiment score between -1.0 (negative) and 1.0 (positive). */
|
|
2361
2373
|
score?: number;
|
|
@@ -5693,7 +5705,7 @@ declare namespace gapi.client {
|
|
|
5693
5705
|
): Request<GoogleCloudContactcenterinsightsV1View>;
|
|
5694
5706
|
}
|
|
5695
5707
|
interface LocationsResource {
|
|
5696
|
-
/** Download feedback labels in bulk. */
|
|
5708
|
+
/** Download feedback labels in bulk from an external source. Currently supports exporting Quality AI example conversations with transcripts and question bodies. */
|
|
5697
5709
|
bulkDownloadFeedbackLabels(request: {
|
|
5698
5710
|
/** V1 error format. */
|
|
5699
5711
|
'$.xgafv'?: string;
|
|
@@ -5751,7 +5763,7 @@ declare namespace gapi.client {
|
|
|
5751
5763
|
},
|
|
5752
5764
|
body: GoogleCloudContactcenterinsightsV1BulkDownloadFeedbackLabelsRequest,
|
|
5753
5765
|
): Request<GoogleLongrunningOperation>;
|
|
5754
|
-
/** Upload feedback labels in bulk. */
|
|
5766
|
+
/** Upload feedback labels from an external source in bulk. Currently supports labeling Quality AI example conversations. */
|
|
5755
5767
|
bulkUploadFeedbackLabels(request: {
|
|
5756
5768
|
/** V1 error format. */
|
|
5757
5769
|
'$.xgafv'?: string;
|