Skip to content

Commit

Permalink
feat(texttospeech): update the API
Browse files Browse the repository at this point in the history
#### texttospeech:v1beta1

The following keys were added:
- schemas.CustomVoiceParams.properties.reportedUsage.deprecated

The following keys were changed:
- schemas.CustomVoiceParams.properties.reportedUsage.description

#### texttospeech:v1

The following keys were added:
- schemas.CustomVoiceParams.properties.reportedUsage.deprecated

The following keys were changed:
- schemas.CustomVoiceParams.properties.reportedUsage.description
  • Loading branch information
yoshi-automation authored and sofisl committed Nov 27, 2023
1 parent fb01dcd commit 12a90cf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions discovery/texttospeech-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@
}
}
},
"revision": "20230803",
"revision": "20231113",
"rootUrl": "https://texttospeech.googleapis.com/",
"schemas": {
"AudioConfig": {
Expand Down Expand Up @@ -390,7 +390,8 @@
"type": "string"
},
"reportedUsage": {
"description": "Optional. The usage of the synthesized audio to be reported.",
"deprecated": true,
"description": "Optional. Deprecated. The usage of the synthesized audio to be reported.",
"enum": [
"REPORTED_USAGE_UNSPECIFIED",
"REALTIME",
Expand Down
5 changes: 3 additions & 2 deletions discovery/texttospeech-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
}
}
},
"revision": "20230803",
"revision": "20231113",
"rootUrl": "https://texttospeech.googleapis.com/",
"schemas": {
"AudioConfig": {
Expand Down Expand Up @@ -329,7 +329,8 @@
"type": "string"
},
"reportedUsage": {
"description": "Optional. The usage of the synthesized audio to be reported.",
"deprecated": true,
"description": "Optional. Deprecated. The usage of the synthesized audio to be reported.",
"enum": [
"REPORTED_USAGE_UNSPECIFIED",
"REALTIME",
Expand Down
2 changes: 1 addition & 1 deletion src/apis/texttospeech/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export namespace texttospeech_v1 {
*/
model?: string | null;
/**
* Optional. The usage of the synthesized audio to be reported.
* Optional. Deprecated. The usage of the synthesized audio to be reported.
*/
reportedUsage?: string | null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/apis/texttospeech/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export namespace texttospeech_v1beta1 {
*/
model?: string | null;
/**
* Optional. The usage of the synthesized audio to be reported.
* Optional. Deprecated. The usage of the synthesized audio to be reported.
*/
reportedUsage?: string | null;
}
Expand Down

0 comments on commit 12a90cf

Please sign in to comment.