@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20230115 → 0.0.20230129
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 +25 -1
- package/package.json +1 -1
- package/tests.ts +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: 20230129
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -167,11 +167,23 @@ declare namespace gapi.client {
|
|
|
167
167
|
createTime?: string;
|
|
168
168
|
/** Output only. The time the operation finished running. */
|
|
169
169
|
endTime?: string;
|
|
170
|
+
/** Output only. Statistics for IngestConversations operation. */
|
|
171
|
+
ingestConversationsStats?: GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats;
|
|
170
172
|
/** Output only. Partial errors during ingest operation that might cause the operation output to be incomplete. */
|
|
171
173
|
partialErrors?: GoogleRpcStatus[];
|
|
172
174
|
/** Output only. The original request for ingest. */
|
|
173
175
|
request?: GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest;
|
|
174
176
|
}
|
|
177
|
+
interface GoogleCloudContactcenterinsightsV1alpha1IngestConversationsMetadataIngestConversationsStats {
|
|
178
|
+
/** Output only. The number of objects skipped because another conversation with the same transcript uri had already been ingested. */
|
|
179
|
+
duplicatesSkippedCount?: number;
|
|
180
|
+
/** Output only. The number of objects which were unable to be ingested due to errors. The errors are populated in the partial_errors field. */
|
|
181
|
+
failedIngestCount?: number;
|
|
182
|
+
/** Output only. The number of objects processed during the ingest operation. */
|
|
183
|
+
processedObjectCount?: number;
|
|
184
|
+
/** Output only. The number of new conversations added during this ingest operation. */
|
|
185
|
+
successfulIngestCount?: number;
|
|
186
|
+
}
|
|
175
187
|
interface GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequest {
|
|
176
188
|
/** Configuration that applies to all conversations. */
|
|
177
189
|
conversationConfig?: GoogleCloudContactcenterinsightsV1alpha1IngestConversationsRequestConversationConfig;
|
|
@@ -703,11 +715,23 @@ declare namespace gapi.client {
|
|
|
703
715
|
createTime?: string;
|
|
704
716
|
/** Output only. The time the operation finished running. */
|
|
705
717
|
endTime?: string;
|
|
718
|
+
/** Output only. Statistics for IngestConversations operation. */
|
|
719
|
+
ingestConversationsStats?: GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats;
|
|
706
720
|
/** Output only. Partial errors during ingest operation that might cause the operation output to be incomplete. */
|
|
707
721
|
partialErrors?: GoogleRpcStatus[];
|
|
708
722
|
/** Output only. The original request for ingest. */
|
|
709
723
|
request?: GoogleCloudContactcenterinsightsV1IngestConversationsRequest;
|
|
710
724
|
}
|
|
725
|
+
interface GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats {
|
|
726
|
+
/** Output only. The number of objects skipped because another conversation with the same transcript uri had already been ingested. */
|
|
727
|
+
duplicatesSkippedCount?: number;
|
|
728
|
+
/** Output only. The number of objects which were unable to be ingested due to errors. The errors are populated in the partial_errors field. */
|
|
729
|
+
failedIngestCount?: number;
|
|
730
|
+
/** Output only. The number of objects processed during the ingest operation. */
|
|
731
|
+
processedObjectCount?: number;
|
|
732
|
+
/** Output only. The number of new conversations added during this ingest operation. */
|
|
733
|
+
successfulIngestCount?: number;
|
|
734
|
+
}
|
|
711
735
|
interface GoogleCloudContactcenterinsightsV1IngestConversationsRequest {
|
|
712
736
|
/** Configuration that applies to all conversations. */
|
|
713
737
|
conversationConfig?: GoogleCloudContactcenterinsightsV1IngestConversationsRequestConversationConfig;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230129
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|