@googleapis/texttospeech 2.0.0 → 2.0.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/texttospeech-v2.0.0...texttospeech-v2.0.1) (2025-05-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **texttospeech:** update the API ([3275bbb](https://github.com/googleapis/google-api-nodejs-client/commit/3275bbb67c37875565897bb3ecc957f0525d1082))
9
+
3
10
  ## [2.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/texttospeech-v1.5.0...texttospeech-v2.0.0) (2025-02-04)
4
11
 
5
12
 
package/build/v1.d.ts CHANGED
@@ -104,7 +104,7 @@ export declare namespace texttospeech_v1 {
104
104
  */
105
105
  sampleRateHertz?: number | null;
106
106
  /**
107
- * Optional. Input only. 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.
107
+ * Optional. Input only. Speaking rate/speed, in the range [0.25, 2.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 \> 2.0 will return an error.
108
108
  */
109
109
  speakingRate?: number | null;
110
110
  /**
@@ -262,7 +262,7 @@ export declare namespace texttospeech_v1 {
262
262
  */
263
263
  export interface Schema$SynthesisInput {
264
264
  /**
265
- * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for English, French, Italian, German, and Spanish (EFIGS) languages, as provided in VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
265
+ * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for en-us, with plans to expand to other locales in the future. Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
266
266
  */
267
267
  customPronunciations?: Schema$CustomPronunciations;
268
268
  /**
@@ -103,7 +103,7 @@ export declare namespace texttospeech_v1beta1 {
103
103
  */
104
104
  sampleRateHertz?: number | null;
105
105
  /**
106
- * Optional. Input only. 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.
106
+ * Optional. Input only. Speaking rate/speed, in the range [0.25, 2.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 \> 2.0 will return an error.
107
107
  */
108
108
  speakingRate?: number | null;
109
109
  /**
@@ -251,7 +251,7 @@ export declare namespace texttospeech_v1beta1 {
251
251
  */
252
252
  export interface Schema$SynthesisInput {
253
253
  /**
254
- * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for English, French, Italian, German, and Spanish (EFIGS) languages, as provided in VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
254
+ * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for en-us, with plans to expand to other locales in the future. Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
255
255
  */
256
256
  customPronunciations?: Schema$CustomPronunciations;
257
257
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/texttospeech",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "texttospeech",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
package/v1.ts CHANGED
@@ -160,7 +160,7 @@ export namespace texttospeech_v1 {
160
160
  */
161
161
  sampleRateHertz?: number | null;
162
162
  /**
163
- * Optional. Input only. 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.
163
+ * Optional. Input only. Speaking rate/speed, in the range [0.25, 2.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 \> 2.0 will return an error.
164
164
  */
165
165
  speakingRate?: number | null;
166
166
  /**
@@ -310,7 +310,7 @@ export namespace texttospeech_v1 {
310
310
  */
311
311
  export interface Schema$SynthesisInput {
312
312
  /**
313
- * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for English, French, Italian, German, and Spanish (EFIGS) languages, as provided in VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
313
+ * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for en-us, with plans to expand to other locales in the future. Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
314
314
  */
315
315
  customPronunciations?: Schema$CustomPronunciations;
316
316
  /**
package/v1beta1.ts CHANGED
@@ -158,7 +158,7 @@ export namespace texttospeech_v1beta1 {
158
158
  */
159
159
  sampleRateHertz?: number | null;
160
160
  /**
161
- * Optional. Input only. 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.
161
+ * Optional. Input only. Speaking rate/speed, in the range [0.25, 2.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 \> 2.0 will return an error.
162
162
  */
163
163
  speakingRate?: number | null;
164
164
  /**
@@ -300,7 +300,7 @@ export namespace texttospeech_v1beta1 {
300
300
  */
301
301
  export interface Schema$SynthesisInput {
302
302
  /**
303
- * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for English, French, Italian, German, and Spanish (EFIGS) languages, as provided in VoiceSelectionParams. Journey and Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
303
+ * Optional. The pronunciation customizations are applied to the input. If this is set, the input is synthesized using the given pronunciation customizations. The initial support is for en-us, with plans to expand to other locales in the future. Instant Clone voices aren't supported. In order to customize the pronunciation of a phrase, there must be an exact match of the phrase in the input types. If using SSML, the phrase must not be inside a phoneme tag.
304
304
  */
305
305
  customPronunciations?: Schema$CustomPronunciations;
306
306
  /**