Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [dialogflow] created new boolean fields in conversation dataset for zone isolation and zone separation compliance status #5710

Merged
merged 3 commits into from
Sep 28, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,9 @@ enum AudioEncoding {
// is replaced with a single byte containing the block length. Only Speex
// wideband is supported. `sample_rate_hertz` must be 16000.
AUDIO_ENCODING_SPEEX_WITH_HEADER_BYTE = 7;

// 8-bit samples that compand 13-bit audio samples using G.711 PCMU/a-law.
AUDIO_ENCODING_ALAW = 8;
}

// Variant of the specified [Speech
Expand Down Expand Up @@ -504,4 +507,7 @@ enum OutputAudioEncoding {

// 8-bit samples that compand 14-bit audio samples using G.711 PCMU/mu-law.
OUTPUT_AUDIO_ENCODING_MULAW = 5;

// 8-bit samples that compand 13-bit audio samples using G.711 PCMU/a-law.
OUTPUT_AUDIO_ENCODING_ALAW = 6;
}
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,14 @@ message ConversationDataset {
// Output only. The number of conversations this conversation dataset
// contains.
int64 conversation_count = 7 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. A read only boolean field reflecting Zone Isolation status of
// the dataset.
optional bool satisfies_pzi = 8 [(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. A read only boolean field reflecting Zone Separation status of
// the dataset.
optional bool satisfies_pzs = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// The request message for
Expand Down
24 changes: 22 additions & 2 deletions packages/google-cloud-dialogflow/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 104 additions & 0 deletions packages/google-cloud-dialogflow/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading