@googleapis/translate 1.1.1 → 2.0.0
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 +18 -0
- package/build/v3.d.ts +1 -1
- package/build/v3beta1.d.ts +1 -1
- package/package.json +1 -1
- package/v3.ts +1 -1
- package/v3beta1.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/translate-v1.1.1...translate-v2.0.0) (2023-10-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* This release has breaking changes.
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* run the generator ([#3355](https://github.com/googleapis/google-api-nodejs-client/issues/3355)) ([5504c86](https://github.com/googleapis/google-api-nodejs-client/commit/5504c86fd61740886047320e2ed70f02a164acd7))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **deps:** update dependency googleapis-common to v7 ([9491ec1](https://github.com/googleapis/google-api-nodejs-client/commit/9491ec1cdc3c413e7d73edcfcd59cf5c28a7c855))
|
|
18
|
+
* **translate:** update the API ([5789f48](https://github.com/googleapis/google-api-nodejs-client/commit/5789f485eae7d8b17c353e7f24185b0b31b6b80d))
|
|
19
|
+
* **translate:** update the API ([e11cc5e](https://github.com/googleapis/google-api-nodejs-client/commit/e11cc5eea636bd504866a61225bbefd8c7c98878))
|
|
20
|
+
|
|
3
21
|
## [1.1.1](https://github.com/googleapis/google-api-nodejs-client/compare/translate-v1.1.0...translate-v1.1.1) (2023-08-25)
|
|
4
22
|
|
|
5
23
|
|
package/build/v3.d.ts
CHANGED
|
@@ -106,7 +106,7 @@ export declare namespace translate_v3 {
|
|
|
106
106
|
*/
|
|
107
107
|
enableShadowRemovalNativePdf?: boolean | null;
|
|
108
108
|
/**
|
|
109
|
-
* Optional.
|
|
109
|
+
* Optional. The file format conversion map that is applied to all input files. The map key is the original mime_type. The map value is the target mime_type of translated documents. Supported file format conversion includes: - `application/pdf` to `application/vnd.openxmlformats-officedocument.wordprocessingml.document` If nothing specified, output files will be in the same format as the original file.
|
|
110
110
|
*/
|
|
111
111
|
formatConversions?: {
|
|
112
112
|
[key: string]: string;
|
package/build/v3beta1.d.ts
CHANGED
|
@@ -106,7 +106,7 @@ export declare namespace translate_v3beta1 {
|
|
|
106
106
|
*/
|
|
107
107
|
enableShadowRemovalNativePdf?: boolean | null;
|
|
108
108
|
/**
|
|
109
|
-
* Optional.
|
|
109
|
+
* Optional. File format conversion map to be applied to all input files. Map's key is the original mime_type. Map's value is the target mime_type of translated documents. Supported file format conversion includes: - `application/pdf` to `application/vnd.openxmlformats-officedocument.wordprocessingml.document` If nothing specified, output files will be in the same format as the original file.
|
|
110
110
|
*/
|
|
111
111
|
formatConversions?: {
|
|
112
112
|
[key: string]: string;
|
package/package.json
CHANGED
package/v3.ts
CHANGED
|
@@ -159,7 +159,7 @@ export namespace translate_v3 {
|
|
|
159
159
|
*/
|
|
160
160
|
enableShadowRemovalNativePdf?: boolean | null;
|
|
161
161
|
/**
|
|
162
|
-
* Optional.
|
|
162
|
+
* Optional. The file format conversion map that is applied to all input files. The map key is the original mime_type. The map value is the target mime_type of translated documents. Supported file format conversion includes: - `application/pdf` to `application/vnd.openxmlformats-officedocument.wordprocessingml.document` If nothing specified, output files will be in the same format as the original file.
|
|
163
163
|
*/
|
|
164
164
|
formatConversions?: {[key: string]: string} | null;
|
|
165
165
|
/**
|
package/v3beta1.ts
CHANGED
|
@@ -159,7 +159,7 @@ export namespace translate_v3beta1 {
|
|
|
159
159
|
*/
|
|
160
160
|
enableShadowRemovalNativePdf?: boolean | null;
|
|
161
161
|
/**
|
|
162
|
-
* Optional.
|
|
162
|
+
* Optional. File format conversion map to be applied to all input files. Map's key is the original mime_type. Map's value is the target mime_type of translated documents. Supported file format conversion includes: - `application/pdf` to `application/vnd.openxmlformats-officedocument.wordprocessingml.document` If nothing specified, output files will be in the same format as the original file.
|
|
163
163
|
*/
|
|
164
164
|
formatConversions?: {[key: string]: string} | null;
|
|
165
165
|
/**
|