@maxim_mazurok/gapi.client.contactcenterinsights-v1 0.0.20250707 → 0.0.20250710
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 +15 -1
- 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: 20250710
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -349,6 +349,8 @@ declare namespace gapi.client {
|
|
|
349
349
|
confidence?: number;
|
|
350
350
|
/** The name of the model that generates this summary. Format: projects/{project}/locations/{location}/conversationModels/{conversation_model} */
|
|
351
351
|
conversationModel?: string;
|
|
352
|
+
/** Agent Assist generator ID. */
|
|
353
|
+
generatorId?: string;
|
|
352
354
|
/** A map that contains metadata about the summarization and the document from which it originates. */
|
|
353
355
|
metadata?: {[P in string]: string};
|
|
354
356
|
/** The summarization content that is concatenated into one string. */
|
|
@@ -1700,6 +1702,8 @@ declare namespace gapi.client {
|
|
|
1700
1702
|
confidence?: number;
|
|
1701
1703
|
/** The name of the model that generates this summary. Format: projects/{project}/locations/{location}/conversationModels/{conversation_model} */
|
|
1702
1704
|
conversationModel?: string;
|
|
1705
|
+
/** Agent Assist generator ID. */
|
|
1706
|
+
generatorId?: string;
|
|
1703
1707
|
/** A map that contains metadata about the summarization and the document from which it originates. */
|
|
1704
1708
|
metadata?: {[P in string]: string};
|
|
1705
1709
|
/** The summarization content that is concatenated into one string. */
|
|
@@ -2447,8 +2451,12 @@ declare namespace gapi.client {
|
|
|
2447
2451
|
name?: string;
|
|
2448
2452
|
/** Defines the order of the question within its parent scorecard revision. */
|
|
2449
2453
|
order?: number;
|
|
2454
|
+
/** The configuration of the predefined question. This field will only be set if the Question Type is predefined. */
|
|
2455
|
+
predefinedQuestionConfig?: GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig;
|
|
2450
2456
|
/** Question text. E.g., "Did the agent greet the customer?" */
|
|
2451
2457
|
questionBody?: string;
|
|
2458
|
+
/** The type of question. */
|
|
2459
|
+
questionType?: string;
|
|
2452
2460
|
/** Questions are tagged for categorization and scoring. Tags can either be: - Default Tags: These are predefined categories. They are identified by their string value (e.g., "BUSINESS", "COMPLIANCE", and "CUSTOMER"). - Custom Tags: These are user-defined categories. They are identified by their full resource name (e.g., projects/{project}/locations/{location}/qaQuestionTags/{qa_question_tag}). Both default and custom tags are used to group questions and to influence the scoring of each question. */
|
|
2453
2461
|
tags?: string[];
|
|
2454
2462
|
/** Metadata about the tuning operation for the question.This field will only be populated if and only if the question is part of a scorecard revision that has been tuned. */
|
|
@@ -2474,6 +2482,10 @@ declare namespace gapi.client {
|
|
|
2474
2482
|
/** Output only. Accuracy of the model. Measures the percentage of correct answers the model gave on the test set. */
|
|
2475
2483
|
accuracy?: number;
|
|
2476
2484
|
}
|
|
2485
|
+
interface GoogleCloudContactcenterinsightsV1QaQuestionPredefinedQuestionConfig {
|
|
2486
|
+
/** The type of the predefined question. */
|
|
2487
|
+
type?: string;
|
|
2488
|
+
}
|
|
2477
2489
|
interface GoogleCloudContactcenterinsightsV1QaQuestionTag {
|
|
2478
2490
|
/** Output only. The time at which the question tag was created. */
|
|
2479
2491
|
createTime?: string;
|
|
@@ -2501,6 +2513,8 @@ declare namespace gapi.client {
|
|
|
2501
2513
|
description?: string;
|
|
2502
2514
|
/** The user-specified display name of the scorecard. */
|
|
2503
2515
|
displayName?: string;
|
|
2516
|
+
/** Whether the scorecard is the default one for the project. A default scorecard cannot be deleted and will always appear first in scorecard selector. */
|
|
2517
|
+
isDefault?: boolean;
|
|
2504
2518
|
/** Identifier. The scorecard name. Format: projects/{project}/locations/{location}/qaScorecards/{qa_scorecard} */
|
|
2505
2519
|
name?: string;
|
|
2506
2520
|
/** Output only. The most recent time at which the scorecard was updated. */
|