@maxim_mazurok/gapi.client.dialogflow-v2beta1 0.0.20250325 → 0.0.20250414
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.
- package/index.d.ts +11 -1
- 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:
|
|
12
|
+
// Revision: 20250414
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2163,6 +2163,14 @@ declare namespace gapi.client {
|
|
|
2163
2163
|
/** Required. Resource identifier of the conversation to create message. Format: `projects//locations//conversations/`. */
|
|
2164
2164
|
parent?: string;
|
|
2165
2165
|
}
|
|
2166
|
+
interface GoogleCloudDialogflowV2beta1CustomPronunciationParams {
|
|
2167
|
+
/** The phonetic encoding of the phrase. */
|
|
2168
|
+
phoneticEncoding?: string;
|
|
2169
|
+
/** The phrase to which the customization is applied. The phrase can be multiple words, such as proper nouns, but shouldn't span the length of the sentence. */
|
|
2170
|
+
phrase?: string;
|
|
2171
|
+
/** The pronunciation of the phrase. This must be in the phonetic encoding specified above. */
|
|
2172
|
+
pronunciation?: string;
|
|
2173
|
+
}
|
|
2166
2174
|
interface GoogleCloudDialogflowV2beta1DetectIntentRequest {
|
|
2167
2175
|
/** The natural language speech audio to be processed. This field should be populated iff `query_input` is set to an input audio config. A single request can contain up to 1 minute of speech audio data. */
|
|
2168
2176
|
inputAudio?: string;
|
|
@@ -3950,6 +3958,8 @@ declare namespace gapi.client {
|
|
|
3950
3958
|
effectsProfileId?: string[];
|
|
3951
3959
|
/** Optional. Speaking pitch, in the range [-20.0, 20.0]. 20 means increase 20 semitones from the original pitch. -20 means decrease 20 semitones from the original pitch. */
|
|
3952
3960
|
pitch?: number;
|
|
3961
|
+
/** Optional. The custom pronunciations for the synthesized audio. */
|
|
3962
|
+
pronunciations?: GoogleCloudDialogflowV2beta1CustomPronunciationParams[];
|
|
3953
3963
|
/** Optional. Speaking rate/speed, in the range [0.25, 4.0]. 1.0 is the normal native speed supported by the specific voice. 2.0 is twice as fast, and 0.5 is half as fast. If unset(0.0), defaults to the native 1.0 speed. Any other values < 0.25 or > 4.0 will return an error. */
|
|
3954
3964
|
speakingRate?: number;
|
|
3955
3965
|
/** Optional. The desired voice of the synthesized audio. */
|