Skip to content
Draft
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 librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ libraries:
nodejs:
mixins: google.longrunning.Operations;google.cloud.location.Locations
copyright_year: "2026"
skip_generate: true

nodejs:
default_version: v3
- name: google-cloud-discoveryengine
Expand Down
19 changes: 0 additions & 19 deletions packages/google-cloud-dialogflow-cx/.OwlBot.yaml

This file was deleted.

31 changes: 15 additions & 16 deletions packages/google-cloud-dialogflow-cx/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{
"default_version": "v3",
"release_level": "stable",
"requires_billing": true,
"client_documentation": "https://googleapis.dev/nodejs/dialogflow-cx/latest",
"codeowner_team": "@googleapis/ml-apis",
"language": "nodejs",
"issue_tracker": "https://issuetracker.google.com/savedsearches/5300385",
"product_documentation": "https://cloud.google.com/dialogflow-enterprise/",
"name": "dialogflow-cx",
"distribution_name": "@google-cloud/dialogflow-cx",
"name_pretty": "Dialogflow CX API",
"api_id": "dialogflow.googleapis.com",
"repo": "googleapis/google-cloud-node",
"api_shortname": "dialogflow",
"library_type": "GAPIC_AUTO"
}
"api_description": "Builds conversational interfaces (for example, chatbots, and voice-powered\napps and devices).",
"api_id": "dialogflow.googleapis.com",
"api_shortname": "dialogflow",
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/dialogflow-cx/latest",
"default_version": "v3",
"distribution_name": "@google-cloud/dialogflow-cx",
"issue_tracker": "https://issuetracker.google.com/savedsearches/5300385",
"language": "nodejs",
"library_type": "GAPIC_AUTO",
"name": "dialogflow",
"name_pretty": "Dialogflow",
Comment on lines +11 to +12

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Changing "name" to "dialogflow" and "name_pretty" to "Dialogflow" will cause conflicts with the @google-cloud/dialogflow package (which represents Dialogflow ES). For Dialogflow CX, these fields should remain "dialogflow-cx" and "Dialogflow CX API" to ensure correct documentation routing and display.

Suggested change
"name": "dialogflow",
"name_pretty": "Dialogflow",
"name": "dialogflow-cx",
"name_pretty": "Dialogflow CX API",

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a concern, looking into this.

"product_documentation": "https://cloud.google.com/dialogflow/cx/docs",
"release_level": "stable",
"repo": "googleapis/google-cloud-node"
}
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
Loading