Skip to content

Commit

Permalink
fix(texttospeech): update the API
Browse files Browse the repository at this point in the history
#### texttospeech:v1
The following keys were changed:
- schemas.SynthesisInput.properties.ssml.description

#### texttospeech:v1beta1
The following keys were changed:
- schemas.SynthesisInput.properties.ssml.description
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jun 16, 2020
1 parent bf027a7 commit d179cd1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/texttospeech-v1.json
Expand Up @@ -153,7 +153,7 @@
}
}
},
"revision": "20200501",
"revision": "20200605",
"rootUrl": "https://texttospeech.googleapis.com/",
"schemas": {
"AudioConfig": {
Expand Down Expand Up @@ -225,7 +225,7 @@
"id": "SynthesisInput",
"properties": {
"ssml": {
"description": "The SSML document to be synthesized. The SSML document must be valid\nand well-formed. Otherwise the RPC will fail and return\ngoogle.rpc.Code.INVALID_ARGUMENT. For more information, see\n[SSML](/speech/text-to-speech/docs/ssml).",
"description": "The SSML document to be synthesized. The SSML document must be valid\nand well-formed. Otherwise the RPC will fail and return\ngoogle.rpc.Code.INVALID_ARGUMENT. For more information, see\n[SSML](https://cloud.google.com/text-to-speech/docs/ssml).",
"type": "string"
},
"text": {
Expand Down
4 changes: 2 additions & 2 deletions discovery/texttospeech-v1beta1.json
Expand Up @@ -153,7 +153,7 @@
}
}
},
"revision": "20200501",
"revision": "20200605",
"rootUrl": "https://texttospeech.googleapis.com/",
"schemas": {
"AudioConfig": {
Expand Down Expand Up @@ -225,7 +225,7 @@
"id": "SynthesisInput",
"properties": {
"ssml": {
"description": "The SSML document to be synthesized. The SSML document must be valid\nand well-formed. Otherwise the RPC will fail and return\ngoogle.rpc.Code.INVALID_ARGUMENT. For more information, see\n[SSML](/speech/text-to-speech/docs/ssml).",
"description": "The SSML document to be synthesized. The SSML document must be valid\nand well-formed. Otherwise the RPC will fail and return\ngoogle.rpc.Code.INVALID_ARGUMENT. For more information, see\n[SSML](https://cloud.google.com/text-to-speech/docs/ssml).",
"type": "string"
},
"text": {
Expand Down
2 changes: 1 addition & 1 deletion src/apis/texttospeech/v1.ts
Expand Up @@ -172,7 +172,7 @@ export namespace texttospeech_v1 {
*/
export interface Schema$SynthesisInput {
/**
* The SSML document to be synthesized. The SSML document must be valid and well-formed. Otherwise the RPC will fail and return google.rpc.Code.INVALID_ARGUMENT. For more information, see [SSML](/speech/text-to-speech/docs/ssml).
* The SSML document to be synthesized. The SSML document must be valid and well-formed. Otherwise the RPC will fail and return google.rpc.Code.INVALID_ARGUMENT. For more information, see [SSML](https://cloud.google.com/text-to-speech/docs/ssml).
*/
ssml?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/texttospeech/v1beta1.ts
Expand Up @@ -172,7 +172,7 @@ export namespace texttospeech_v1beta1 {
*/
export interface Schema$SynthesisInput {
/**
* The SSML document to be synthesized. The SSML document must be valid and well-formed. Otherwise the RPC will fail and return google.rpc.Code.INVALID_ARGUMENT. For more information, see [SSML](/speech/text-to-speech/docs/ssml).
* The SSML document to be synthesized. The SSML document must be valid and well-formed. Otherwise the RPC will fail and return google.rpc.Code.INVALID_ARGUMENT. For more information, see [SSML](https://cloud.google.com/text-to-speech/docs/ssml).
*/
ssml?: string | null;
/**
Expand Down

0 comments on commit d179cd1

Please sign in to comment.