Skip to content

Commit 57c0441

Browse files
feat: [dialogflow] added support for AssistQueryParameters and SynthesizeSpeechConfig (#3995)
* feat: added support for AssistQueryParameters and SynthesizeSpeechConfig docs: add more meaningful comments PiperOrigin-RevId: 510042252 Source-Link: googleapis/googleapis@7b30db7 Source-Link: googleapis/googleapis-gen@17beb99 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRpYWxvZ2Zsb3cvLk93bEJvdC55YW1sIiwiaCI6IjE3YmViOTk0MTc1MGIzMWZhYTQyM2EyOWQ3YTAxODM0NmE2Yjg4YjUifQ== * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent aa185bb commit 57c0441

14 files changed

Lines changed: 103 additions & 3 deletions

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/agent.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import "google/cloud/dialogflow/v2/validation_result.proto";
2424
import "google/longrunning/operations.proto";
2525
import "google/protobuf/empty.proto";
2626
import "google/protobuf/field_mask.proto";
27+
import "google/protobuf/struct.proto";
2728

2829
option cc_enable_arenas = true;
2930
option csharp_namespace = "Google.Cloud.Dialogflow.V2";

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/conversation.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,9 @@ message SuggestConversationSummaryRequest {
418418
// [latest_message] to use as context when compiling the
419419
// suggestion. By default 500 and at most 1000.
420420
int32 context_size = 4;
421+
422+
// Parameters for a human assist query.
423+
AssistQueryParameters assist_query_params = 5;
421424
}
422425

423426
// The response message for

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/conversation_dataset.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import "google/api/field_behavior.proto";
2222
import "google/api/resource.proto";
2323
import "google/cloud/dialogflow/v2/gcs.proto";
2424
import "google/longrunning/operations.proto";
25+
import "google/protobuf/empty.proto";
2526
import "google/protobuf/timestamp.proto";
2627
import "google/rpc/status.proto";
2728

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/conversation_model.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import "google/api/client.proto";
2121
import "google/api/field_behavior.proto";
2222
import "google/api/resource.proto";
2323
import "google/longrunning/operations.proto";
24+
import "google/protobuf/empty.proto";
2425
import "google/protobuf/timestamp.proto";
2526

2627
option cc_enable_arenas = true;

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/conversation_profile.proto

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,12 @@ message ConversationProfile {
252252
string security_settings = 13 [(google.api.resource_reference) = {
253253
type: "dialogflow.googleapis.com/CXSecuritySettings"
254254
}];
255+
256+
// Configuration for Text-to-Speech synthesization.
257+
//
258+
// Used by Phone Gateway to specify synthesization options. If agent defines
259+
// synthesization options as well, agent settings overrides the option here.
260+
SynthesizeSpeechConfig tts_config = 18;
255261
}
256262

257263
// The request message for

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/document.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import "google/api/field_behavior.proto";
2222
import "google/api/resource.proto";
2323
import "google/cloud/dialogflow/v2/gcs.proto";
2424
import "google/longrunning/operations.proto";
25+
import "google/protobuf/empty.proto";
2526
import "google/protobuf/field_mask.proto";
2627
import "google/protobuf/timestamp.proto";
2728
import "google/rpc/status.proto";

packages/google-cloud-dialogflow/protos/google/cloud/dialogflow/v2/entity_type.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import "google/api/resource.proto";
2323
import "google/longrunning/operations.proto";
2424
import "google/protobuf/empty.proto";
2525
import "google/protobuf/field_mask.proto";
26+
import "google/protobuf/struct.proto";
2627

2728
option cc_enable_arenas = true;
2829
option csharp_namespace = "Google.Cloud.Dialogflow.V2";

packages/google-cloud-dialogflow/protos/protos.d.ts

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-dialogflow/protos/protos.js

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-cloud-dialogflow/protos/protos.json

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)