Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/google-cloud-dialogflow-cx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ A comprehensive list of changes in each version may be found in
[the CHANGELOG][homepage_changelog].

* [Dialogflow API Nodejs Client API Reference](https://cloud.google.com/nodejs/docs/reference/cx/latest)

* [Dialogflow API Documentation](https://docs.cloud.google.com/dialogflow/docs)

Read more about the client libraries for Cloud APIs, including the older
Google APIs Client Libraries, in [Client Libraries Explained][explained].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ enum OutputAudioEncoding {
// LINT: LEGACY_NAMES
OUTPUT_AUDIO_ENCODING_LINEAR_16 = 1;

// MP3 audio at 32kbps.
OUTPUT_AUDIO_ENCODING_MP3 = 2;
// MP3 audio at 64kbps.
OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];

// MP3 audio at 64kbps.
// LINT: LEGACY_NAMES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1406,6 +1406,11 @@ enum DetectIntentResponseView {
// Basic response view omits the following fields:
// -
// [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3.QueryResult.diagnostic_info]
// - [QueryResult.generative_info][]
// -
// [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3.QueryResult.trace_blocks]
// -
// [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3.QueryResult.data_store_connection_signals]
DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;

// Default response view omits the following fields:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ enum OutputAudioEncoding {
// LINT: LEGACY_NAMES
OUTPUT_AUDIO_ENCODING_LINEAR_16 = 1;

// MP3 audio at 32kbps.
OUTPUT_AUDIO_ENCODING_MP3 = 2;
// MP3 audio at 64kbps.
OUTPUT_AUDIO_ENCODING_MP3 = 2 [deprecated = true];

// MP3 audio at 64kbps.
// LINT: LEGACY_NAMES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1443,6 +1443,10 @@ enum DetectIntentResponseView {
// [QueryResult.diagnostic_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.diagnostic_info]
// -
// [QueryResult.generative_info][google.cloud.dialogflow.cx.v3beta1.QueryResult.generative_info]
// -
// [QueryResult.trace_blocks][google.cloud.dialogflow.cx.v3beta1.QueryResult.trace_blocks]
// -
// [QueryResult.data_store_connection_signals][google.cloud.dialogflow.cx.v3beta1.QueryResult.data_store_connection_signals]
DETECT_INTENT_RESPONSE_VIEW_BASIC = 2;

// Default response view omits the following fields:
Expand Down
10 changes: 10 additions & 0 deletions packages/google-cloud-dialogflow-cx/protos/protos.json
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,11 @@
}
},
"OutputAudioEncoding": {
"valuesOptions": {
"OUTPUT_AUDIO_ENCODING_MP3": {
"deprecated": true
}
},
"values": {
"OUTPUT_AUDIO_ENCODING_UNSPECIFIED": 0,
"OUTPUT_AUDIO_ENCODING_LINEAR_16": 1,
Expand Down Expand Up @@ -13874,6 +13879,11 @@
}
},
"OutputAudioEncoding": {
"valuesOptions": {
"OUTPUT_AUDIO_ENCODING_MP3": {
"deprecated": true
}
},
"values": {
"OUTPUT_AUDIO_ENCODING_UNSPECIFIED": 0,
"OUTPUT_AUDIO_ENCODING_LINEAR_16": 1,
Expand Down
Loading