@maxim_mazurok/gapi.client.dialogflow-v2beta1 0.12.20250926 → 0.12.20250930

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 +219 -3
  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://dialogflow.googleapis.com/$discovery/rest?version=v2beta1
12
- // Revision: 20250926
12
+ // Revision: 20250930
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1730,6 +1730,74 @@ declare namespace gapi.client {
1730
1730
  /** Required. The name of [Service Directory](https://cloud.google.com/service-directory) service. Format: `projects//locations//namespaces//services/`. `Location ID` of the service directory must be the same as the location of the agent. */
1731
1731
  service?: string;
1732
1732
  }
1733
+ interface GoogleCloudDialogflowV2AgentCoachingInstruction {
1734
+ /** Optional. The action that human agent should take. For example, "apologize for the slow shipping". If the users only want to use agent coaching for intent detection, agent_action can be empty */
1735
+ agentAction?: string;
1736
+ /** Optional. The condition of the instruction. For example, "the customer wants to cancel an order". If the users want the instruction to be triggered unconditionally, the condition can be empty. */
1737
+ condition?: string;
1738
+ /** Optional. The detailed description of this instruction. */
1739
+ displayDetails?: string;
1740
+ /** Optional. Display name for the instruction. */
1741
+ displayName?: string;
1742
+ /** Output only. Duplication check for the AgentCoachingInstruction. */
1743
+ duplicateCheckResult?: GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult;
1744
+ /** Optional. The action that system should take. For example, "call GetOrderTime with order_number={order number provided by the customer}". If the users don't have plugins or don't want to trigger plugins, the system_action can be empty */
1745
+ systemAction?: string;
1746
+ }
1747
+ interface GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult {
1748
+ /** Output only. The duplicate suggestions. */
1749
+ duplicateSuggestions?: GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion[];
1750
+ }
1751
+ interface GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion {
1752
+ /** Output only. The answer record id of the past duplicate suggestion. */
1753
+ answerRecord?: string;
1754
+ /** Output only. The similarity score of between the past and current suggestion. */
1755
+ similarityScore?: number;
1756
+ /** Output only. The index of the duplicate suggestion in the past suggestion list. */
1757
+ suggestionIndex?: number;
1758
+ }
1759
+ interface GoogleCloudDialogflowV2AgentCoachingSuggestion {
1760
+ /** Optional. Suggested actions for the agent to take. */
1761
+ agentActionSuggestions?: GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion[];
1762
+ /** Optional. Instructions applicable based on the current context. */
1763
+ applicableInstructions?: GoogleCloudDialogflowV2AgentCoachingInstruction[];
1764
+ /** Optional. Sample response for the Agent. */
1765
+ sampleResponses?: GoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponse[];
1766
+ }
1767
+ interface GoogleCloudDialogflowV2AgentCoachingSuggestionAgentActionSuggestion {
1768
+ /** Optional. The suggested action for the agent. */
1769
+ agentAction?: string;
1770
+ /** Output only. Duplicate check result for the agent action suggestion. */
1771
+ duplicateCheckResult?: GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult;
1772
+ /** Output only. Sources for the agent action suggestion. */
1773
+ sources?: GoogleCloudDialogflowV2AgentCoachingSuggestionSources;
1774
+ }
1775
+ interface GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult {
1776
+ /** Output only. The duplicate suggestions. */
1777
+ duplicateSuggestions?: GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion[];
1778
+ }
1779
+ interface GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion {
1780
+ /** Output only. The answer record id of the past duplicate suggestion. */
1781
+ answerRecord?: string;
1782
+ /** Output only. The similarity score of between the past and current suggestion. */
1783
+ similarityScore?: number;
1784
+ /** Output only. Sources for the suggestion. */
1785
+ sources?: GoogleCloudDialogflowV2AgentCoachingSuggestionSources;
1786
+ /** Output only. The index of the duplicate suggestion in the past suggestion list. */
1787
+ suggestionIndex?: number;
1788
+ }
1789
+ interface GoogleCloudDialogflowV2AgentCoachingSuggestionSampleResponse {
1790
+ /** Output only. Duplicate check result for the sample response. */
1791
+ duplicateCheckResult?: GoogleCloudDialogflowV2AgentCoachingSuggestionDuplicateCheckResult;
1792
+ /** Optional. Sample response for Agent in text. */
1793
+ responseText?: string;
1794
+ /** Output only. Sources for the Sample Response. */
1795
+ sources?: GoogleCloudDialogflowV2AgentCoachingSuggestionSources;
1796
+ }
1797
+ interface GoogleCloudDialogflowV2AgentCoachingSuggestionSources {
1798
+ /** Output only. Source instruction indexes for the suggestion. This is the index of the applicable_instructions field. */
1799
+ instructionIndexes?: number[];
1800
+ }
1733
1801
  interface GoogleCloudDialogflowV2AnnotatedMessagePart {
1734
1802
  /** The [Dialogflow system entity type](https://cloud.google.com/dialogflow/docs/reference/system-entities) of this message part. If this is empty, Dialogflow could not annotate the phrase part with a system entity. */
1735
1803
  entityType?: string;
@@ -1836,6 +1904,84 @@ declare namespace gapi.client {
1836
1904
  /** Output only. The generator suggestion. */
1837
1905
  generatorSuggestion?: GoogleCloudDialogflowV2beta1GeneratorSuggestion;
1838
1906
  }
1907
+ interface GoogleCloudDialogflowV2beta1AgentCoachingContext {
1908
+ /** Optional. Customized instructions for agent coaching. */
1909
+ instructions?: GoogleCloudDialogflowV2beta1AgentCoachingInstruction[];
1910
+ /** Optional. Output language code. */
1911
+ outputLanguageCode?: string;
1912
+ /** Optional. The overarching guidance for the agent coaching. This should be set only for v1.5 and later versions. */
1913
+ overarchingGuidance?: string;
1914
+ /** Optional. Version of the feature. If not set, default to latest version. Current candidates are ["2.5"]. */
1915
+ version?: string;
1916
+ }
1917
+ interface GoogleCloudDialogflowV2beta1AgentCoachingInstruction {
1918
+ /** Optional. The action that human agent should take. For example, "apologize for the slow shipping". If the users only want to use agent coaching for intent detection, agent_action can be empty */
1919
+ agentAction?: string;
1920
+ /** Optional. The condition of the instruction. For example, "the customer wants to cancel an order". If the users want the instruction to be triggered unconditionally, the condition can be empty. */
1921
+ condition?: string;
1922
+ /** Optional. The detailed description of this instruction. */
1923
+ displayDetails?: string;
1924
+ /** Optional. Display name for the instruction. */
1925
+ displayName?: string;
1926
+ /** Output only. Duplication check for the AgentCoachingInstruction. */
1927
+ duplicateCheckResult?: GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult;
1928
+ /** Optional. The action that system should take. For example, "call GetOrderTime with order_number={order number provided by the customer}". If the users don't have plugins or don't want to trigger plugins, the system_action can be empty */
1929
+ systemAction?: string;
1930
+ }
1931
+ interface GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult {
1932
+ /** Output only. The duplicate suggestions. */
1933
+ duplicateSuggestions?: GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion[];
1934
+ }
1935
+ interface GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResultDuplicateSuggestion {
1936
+ /** Output only. The answer record id of the past duplicate suggestion. */
1937
+ answerRecord?: string;
1938
+ /** Output only. The similarity score of between the past and current suggestion. */
1939
+ similarityScore?: number;
1940
+ /** Output only. The index of the duplicate suggestion in the past suggestion list. */
1941
+ suggestionIndex?: number;
1942
+ }
1943
+ interface GoogleCloudDialogflowV2beta1AgentCoachingSuggestion {
1944
+ /** Optional. Suggested actions for the agent to take. */
1945
+ agentActionSuggestions?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestion[];
1946
+ /** Optional. Instructions applicable based on the current context. */
1947
+ applicableInstructions?: GoogleCloudDialogflowV2beta1AgentCoachingInstruction[];
1948
+ /** Optional. Sample response for the Agent. */
1949
+ sampleResponses?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponse[];
1950
+ }
1951
+ interface GoogleCloudDialogflowV2beta1AgentCoachingSuggestionAgentActionSuggestion {
1952
+ /** Optional. The suggested action for the agent. */
1953
+ agentAction?: string;
1954
+ /** Output only. Duplicate check result for the agent action suggestion. */
1955
+ duplicateCheckResult?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult;
1956
+ /** Output only. Sources for the agent action suggestion. */
1957
+ sources?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources;
1958
+ }
1959
+ interface GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult {
1960
+ /** Output only. The duplicate suggestions. */
1961
+ duplicateSuggestions?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion[];
1962
+ }
1963
+ interface GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResultDuplicateSuggestion {
1964
+ /** Output only. The answer record id of the past duplicate suggestion. */
1965
+ answerRecord?: string;
1966
+ /** Output only. The similarity score of between the past and current suggestion. */
1967
+ similarityScore?: number;
1968
+ /** Output only. Sources for the suggestion. */
1969
+ sources?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources;
1970
+ /** Output only. The index of the duplicate suggestion in the past suggestion list. */
1971
+ suggestionIndex?: number;
1972
+ }
1973
+ interface GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSampleResponse {
1974
+ /** Output only. Duplicate check result for the sample response. */
1975
+ duplicateCheckResult?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionDuplicateCheckResult;
1976
+ /** Optional. Sample response for Agent in text. */
1977
+ responseText?: string;
1978
+ /** Output only. Sources for the Sample Response. */
1979
+ sources?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources;
1980
+ }
1981
+ interface GoogleCloudDialogflowV2beta1AgentCoachingSuggestionSources {
1982
+ /** Output only. Source instruction indexes for the suggestion. This is the index of the applicable_instructions field. */
1983
+ instructionIndexes?: number[];
1984
+ }
1839
1985
  interface GoogleCloudDialogflowV2beta1AnalyzeContentRequest {
1840
1986
  /** Parameters for a human assist query. */
1841
1987
  assistQueryParams?: GoogleCloudDialogflowV2beta1AssistQueryParameters;
@@ -2124,6 +2270,8 @@ declare namespace gapi.client {
2124
2270
  updateMode?: string;
2125
2271
  }
2126
2272
  interface GoogleCloudDialogflowV2beta1ConversationContextReferenceContextContent {
2273
+ /** If the context content was generated from a tool call, specify the answer record associated with the tool call. Format: `projects//locations//answerRecords/`. */
2274
+ answerRecord?: string;
2127
2275
  /** Required. The information ingested in a single request. */
2128
2276
  content?: string;
2129
2277
  /** Required. The format of the ingested string. */
@@ -2520,6 +2668,8 @@ declare namespace gapi.client {
2520
2668
  sourceGenerator?: string;
2521
2669
  }
2522
2670
  interface GoogleCloudDialogflowV2beta1Generator {
2671
+ /** Input of Agent Coaching feature. */
2672
+ agentCoachingContext?: GoogleCloudDialogflowV2beta1AgentCoachingContext;
2523
2673
  /** Output only. Creation time of this generator. */
2524
2674
  createTime?: string;
2525
2675
  /** Optional. Human readable description of the generator. */
@@ -2532,6 +2682,8 @@ declare namespace gapi.client {
2532
2682
  name?: string;
2533
2683
  /** Optional. The published Large Language Model name. * To use the latest model version, specify the model name without version number. Example: `text-bison` * To use a stable model version, specify the version number as well. Example: `text-bison@002`. */
2534
2684
  publishedModel?: string;
2685
+ /** Optional. Configuration for suggestion deduping. This is only applicable to AI Coach feature. */
2686
+ suggestionDedupingConfig?: GoogleCloudDialogflowV2beta1SuggestionDedupingConfig;
2535
2687
  /** Input of Summarization feature. */
2536
2688
  summarizationContext?: GoogleCloudDialogflowV2beta1SummarizationContext;
2537
2689
  /** Optional. Resource names of the tools that the generator can choose from. Format: `projects//locations//tools/`. */
@@ -2556,6 +2708,10 @@ declare namespace gapi.client {
2556
2708
  initialGenerator?: GoogleCloudDialogflowV2beta1Generator;
2557
2709
  /** Output only. Identifier. The resource name of the evaluation. Format: `projects//locations//generators// evaluations/` */
2558
2710
  name?: string;
2711
+ /** Output only. A read only boolean field reflecting Zone Isolation status of the model. The field is an aggregated value of ZI status of its underlying dependencies. See more details in go/zicy-resource-placement#resource-status */
2712
+ satisfiesPzi?: boolean;
2713
+ /** Output only. A read only boolean field reflecting Zone Separation status of the model. The field is an aggregated value of ZS status of its underlying dependencies. See more details in go/zicy-resource-placement#resource-status */
2714
+ satisfiesPzs?: boolean;
2559
2715
  /** Output only. Only available when the summarization generator is provided. */
2560
2716
  summarizationMetrics?: GoogleCloudDialogflowV2beta1SummarizationEvaluationMetrics;
2561
2717
  }
@@ -2608,6 +2764,8 @@ declare namespace gapi.client {
2608
2764
  evaluatorVersion?: string;
2609
2765
  }
2610
2766
  interface GoogleCloudDialogflowV2beta1GeneratorSuggestion {
2767
+ /** Optional. Suggestion to coach the agent. */
2768
+ agentCoachingSuggestion?: GoogleCloudDialogflowV2beta1AgentCoachingSuggestion;
2611
2769
  /** Optional. Free form suggestion. */
2612
2770
  freeFormSuggestion?: GoogleCloudDialogflowV2beta1FreeFormSuggestion;
2613
2771
  /** Optional. Suggested summary. */
@@ -2650,12 +2808,18 @@ declare namespace gapi.client {
2650
2808
  interface GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig {
2651
2809
  /** Optional. When disable_high_latency_features_sync_delivery is true and using the AnalyzeContent API, we will not deliver the responses from high latency features in the API response. The human_agent_assistant_config.notification_config must be configured and enable_event_based_suggestion must be set to true to receive the responses from high latency features in Pub/Sub. High latency feature(s): KNOWLEDGE_ASSIST */
2652
2810
  disableHighLatencyFeaturesSyncDelivery?: boolean;
2811
+ /** Optional. If true, enable asynchronous execution of tools. */
2812
+ enableAsyncToolCall?: boolean;
2653
2813
  /** Configuration of different suggestion features. One feature can have only one config. */
2654
2814
  featureConfigs?: GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionFeatureConfig[];
2655
2815
  /** Optional. List of various generator resource names used in the conversation profile. */
2656
2816
  generators?: string[];
2657
2817
  /** If `group_suggestion_responses` is false, and there are multiple `feature_configs` in `event based suggestion` or StreamingAnalyzeContent, we will try to deliver suggestions to customers as soon as we get new suggestion. Different type of suggestions based on the same context will be in separate Pub/Sub event or `StreamingAnalyzeContentResponse`. If `group_suggestion_responses` set to true. All the suggestions to the same participant based on the same context will be grouped into a single Pub/Sub event or StreamingAnalyzeContentResponse. */
2658
2818
  groupSuggestionResponses?: boolean;
2819
+ /** Optional. Enable skipping event based suggestion if the suggestion is empty. For example, with this field disabled, Knowledge Assist feature sends a Pub/Sub message when there are no suggestions. Enabling this field will change the behavior to skip the Pub/Sub message in this situation. */
2820
+ skipEmptyEventBasedSuggestion?: boolean;
2821
+ /** Optional. If true, use unredacted transcript data (Supported features: AI_COACH) and use unredacted ingested context (Supported features: All Agent Assist features) */
2822
+ useUnredactedConversationData?: boolean;
2659
2823
  }
2660
2824
  interface GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionFeatureConfig {
2661
2825
  /** Configs of custom conversation model. */
@@ -2672,8 +2836,12 @@ declare namespace gapi.client {
2672
2836
  enableQuerySuggestionOnly?: boolean;
2673
2837
  /** Optional. Enable query suggestion even if we can't find its answer. By default, queries are suggested only if we find its answer. Supported features: KNOWLEDGE_ASSIST */
2674
2838
  enableQuerySuggestionWhenNoAnswer?: boolean;
2839
+ /** Optional. Enable returning detailed reasons for suggestion results. For example, with this field disabled, Knowledge Search feature returns NotFound error when no answer is found for the input query. Enabling this field will change the behavior to return an OK response with detailed information indicating the lack of results. Supported features: KNOWLEDGE_SEARCH, KNOWLEDGE_ASSIST */
2840
+ enableResponseDebugInfo?: boolean;
2675
2841
  /** Configs of query. */
2676
2842
  queryConfig?: GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfig;
2843
+ /** Optional. Settings for Responsible AI checks. Supported features: KNOWLEDGE_ASSIST */
2844
+ raiSettings?: GoogleCloudDialogflowV2beta1RaiSettings;
2677
2845
  /** The suggestion feature. */
2678
2846
  suggestionFeature?: GoogleCloudDialogflowV2beta1SuggestionFeature;
2679
2847
  /** Settings of suggestion trigger. Currently, only ARTICLE_SUGGESTION, FAQ, and DIALOGFLOW_ASSIST will use this field. */
@@ -3614,6 +3782,16 @@ declare namespace gapi.client {
3614
3782
  /** If the query was fulfilled by a webhook call, this field is set to the value of the `source` field returned in the webhook response. */
3615
3783
  webhookSource?: string;
3616
3784
  }
3785
+ interface GoogleCloudDialogflowV2beta1RaiSettings {
3786
+ /** Configuration for a set of RAI categories. */
3787
+ raiCategoryConfigs?: GoogleCloudDialogflowV2beta1RaiSettingsRaiCategoryConfig[];
3788
+ }
3789
+ interface GoogleCloudDialogflowV2beta1RaiSettingsRaiCategoryConfig {
3790
+ /** Optional. The RAI category. */
3791
+ category?: string;
3792
+ /** Optional. The sensitivity level for this category. */
3793
+ sensitivityLevel?: string;
3794
+ }
3617
3795
  interface GoogleCloudDialogflowV2beta1ReloadDocumentRequest {
3618
3796
  /** The path for a Cloud Storage source file for reloading document content. If not provided, the Document's existing source will be reloaded. */
3619
3797
  gcsSource?: GoogleCloudDialogflowV2beta1GcsSource;
@@ -3973,6 +4151,12 @@ declare namespace gapi.client {
3973
4151
  /** Output only. The article URI. */
3974
4152
  uri?: string;
3975
4153
  }
4154
+ interface GoogleCloudDialogflowV2beta1SuggestionDedupingConfig {
4155
+ /** Optional. Whether to enable suggestion deduping. */
4156
+ enableDeduping?: boolean;
4157
+ /** Optional. The threshold for similarity between two suggestions. Acceptable value is [0.0, 1.0], default to 0.8 */
4158
+ similarityThreshold?: number;
4159
+ }
3976
4160
  interface GoogleCloudDialogflowV2beta1SuggestionFaqAnswer {
3977
4161
  /** Output only. The piece of text from the `source` knowledge base document. */
3978
4162
  answer?: string;
@@ -3992,12 +4176,16 @@ declare namespace gapi.client {
3992
4176
  type?: string;
3993
4177
  }
3994
4178
  interface GoogleCloudDialogflowV2beta1SuggestionInput {
3995
- /** Required. The ID of a suggestion selected by the human agent. The suggestion(s) were generated in a previous call to request Dialogflow assist. The format is: `projects//locations//answerRecords/` where is an alphanumeric string. */
4179
+ /** Optional. The type of action to take with the tool. */
4180
+ action?: string;
4181
+ /** Required. Format: `projects//locations//answerRecords/` The answer record associated with the tool call. */
3996
4182
  answerRecord?: string;
3997
4183
  /** The intent to be triggered on V3 agent. */
3998
4184
  intentInput?: GoogleCloudDialogflowV2beta1IntentInput;
3999
- /** In Dialogflow assist for v3, the user can submit a form by sending a SuggestionInput. The form is uniquely determined by the answer_record field, which identifies a v3 QueryResult containing the current page. The form parameters are specified via the parameters field. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs: * MapKey type: string * MapKey value: parameter name * MapValue type: If parameter's entity type is a composite entity then use map, otherwise, depending on the parameter value type, it could be one of string, number, boolean, null, list or map. * MapValue value: If parameter's entity type is a composite entity then use map from composite entity property names to property values, otherwise, use parameter value. */
4185
+ /** Parameters to be used for the tool call. If not provided, the tool will be called without any parameters. */
4000
4186
  parameters?: {[P in string]: any};
4187
+ /** Optional. Time when the current suggest input is sent. For tool calls, this timestamp (along with the answer record) will be included in the corresponding tool call result so that it can be identified. */
4188
+ sendTime?: string;
4001
4189
  /** Optional. If the customer edited the suggestion before using it, include the revised text here. */
4002
4190
  textOverride?: GoogleCloudDialogflowV2beta1TextInput;
4003
4191
  }
@@ -4232,16 +4420,26 @@ declare namespace gapi.client {
4232
4420
  interface GoogleCloudDialogflowV2beta1ToolCall {
4233
4421
  /** Optional. The name of the tool's action associated with this call. */
4234
4422
  action?: string;
4423
+ /** Optional. The answer record associated with this tool call. */
4424
+ answerRecord?: string;
4235
4425
  /** Output only. Create time of the tool call. */
4236
4426
  createTime?: string;
4237
4427
  /** Optional. The action's input parameters. */
4238
4428
  inputParameters?: {[P in string]: any};
4429
+ /** Output only. State of the tool call */
4430
+ state?: string;
4239
4431
  /** Optional. The tool associated with this call. Format: `projects//locations//tools/`. */
4240
4432
  tool?: string;
4433
+ /** Optional. A human readable description of the tool. */
4434
+ toolDisplayDetails?: string;
4435
+ /** Optional. A human readable short name of the tool, to be shown on the UI. */
4436
+ toolDisplayName?: string;
4241
4437
  }
4242
4438
  interface GoogleCloudDialogflowV2beta1ToolCallResult {
4243
4439
  /** Optional. The name of the tool's action associated with this call. */
4244
4440
  action?: string;
4441
+ /** Optional. The answer record associated with this tool call result. */
4442
+ answerRecord?: string;
4245
4443
  /** Only populated if the response content is utf-8 encoded. */
4246
4444
  content?: string;
4247
4445
  /** Output only. Create time of the tool call result. */
@@ -4495,6 +4693,8 @@ declare namespace gapi.client {
4495
4693
  sourceGenerator?: string;
4496
4694
  }
4497
4695
  interface GoogleCloudDialogflowV2GeneratorSuggestion {
4696
+ /** Optional. Suggestion to coach the agent. */
4697
+ agentCoachingSuggestion?: GoogleCloudDialogflowV2AgentCoachingSuggestion;
4498
4698
  /** Optional. Free form suggestion. */
4499
4699
  freeFormSuggestion?: GoogleCloudDialogflowV2FreeFormSuggestion;
4500
4700
  /** Optional. Suggested summary. */
@@ -5095,16 +5295,26 @@ declare namespace gapi.client {
5095
5295
  interface GoogleCloudDialogflowV2ToolCall {
5096
5296
  /** Optional. The name of the tool's action associated with this call. */
5097
5297
  action?: string;
5298
+ /** Optional. The answer record associated with this tool call. */
5299
+ answerRecord?: string;
5098
5300
  /** Output only. Create time of the tool call. */
5099
5301
  createTime?: string;
5100
5302
  /** Optional. The action's input parameters. */
5101
5303
  inputParameters?: {[P in string]: any};
5304
+ /** Output only. State of the tool call. */
5305
+ state?: string;
5102
5306
  /** Optional. The tool associated with this call. Format: `projects//locations//tools/`. */
5103
5307
  tool?: string;
5308
+ /** Optional. A human readable description of the tool. */
5309
+ toolDisplayDetails?: string;
5310
+ /** Optional. A human readable short name of the tool, to be shown on the UI. */
5311
+ toolDisplayName?: string;
5104
5312
  }
5105
5313
  interface GoogleCloudDialogflowV2ToolCallResult {
5106
5314
  /** Optional. The name of the tool's action associated with this call. */
5107
5315
  action?: string;
5316
+ /** Optional. The answer record associated with this tool call result. */
5317
+ answerRecord?: string;
5108
5318
  /** Only populated if the response content is utf-8 encoded. */
5109
5319
  content?: string;
5110
5320
  /** Output only. Create time of the tool call result. */
@@ -5205,6 +5415,8 @@ declare namespace gapi.client {
5205
5415
  nextPageToken?: string;
5206
5416
  /** A list of operations that matches the specified filter in the request. */
5207
5417
  operations?: GoogleLongrunningOperation[];
5418
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
5419
+ unreachable?: string[];
5208
5420
  }
5209
5421
  interface GoogleLongrunningOperation {
5210
5422
  /** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
@@ -15787,6 +15999,8 @@ declare namespace gapi.client {
15787
15999
  prettyPrint?: boolean;
15788
16000
  /** 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. */
15789
16001
  quotaUser?: string;
16002
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16003
+ returnPartialSuccess?: boolean;
15790
16004
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15791
16005
  upload_protocol?: string;
15792
16006
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -16662,6 +16876,8 @@ declare namespace gapi.client {
16662
16876
  prettyPrint?: boolean;
16663
16877
  /** 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. */
16664
16878
  quotaUser?: string;
16879
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16880
+ returnPartialSuccess?: boolean;
16665
16881
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16666
16882
  upload_protocol?: string;
16667
16883
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dialogflow-v2beta1",
3
- "version": "0.12.20250926",
3
+ "version": "0.12.20250930",
4
4
  "description": "TypeScript typings for Dialogflow API v2beta1",
5
5
  "repository": {
6
6
  "type": "git",