@maxim_mazurok/gapi.client.translate-v3beta1 0.0.20220916 → 0.0.20221021
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 +3 -2
- package/package.json +1 -1
- package/tests.ts +2 -1
package/index.d.ts
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
// Nick Amoscato <https://github.com/namoscato>
|
|
5
5
|
// Declan Vong <https://github.com/declanvong>
|
|
6
6
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
7
|
-
// TypeScript Version: 2.8
|
|
8
7
|
|
|
9
8
|
// IMPORTANT
|
|
10
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
11
|
// Generated from: https://translation.googleapis.com/$discovery/rest?version=v3beta1
|
|
13
|
-
// Revision:
|
|
12
|
+
// Revision: 20221021
|
|
14
13
|
|
|
15
14
|
/// <reference types="gapi.client" />
|
|
16
15
|
|
|
@@ -367,6 +366,8 @@ declare namespace gapi.client {
|
|
|
367
366
|
documentOutputConfig?: DocumentOutputConfig;
|
|
368
367
|
/** Optional. Glossary to be applied. The glossary must be within the same region (have the same location-id) as the model, otherwise an INVALID_ARGUMENT (400) error is returned. */
|
|
369
368
|
glossaryConfig?: TranslateTextGlossaryConfig;
|
|
369
|
+
/** Optional. is_translate_native_pdf_only field for external customers. If true, the page limit of online native pdf translation is 300 and only native pdf pages will be translated. */
|
|
370
|
+
isTranslateNativePdfOnly?: boolean;
|
|
370
371
|
/**
|
|
371
372
|
* Optional. The labels with user-defined metadata for the request. Label keys and values can be no longer than 63 characters (Unicode codepoints), can only contain lowercase letters,
|
|
372
373
|
* numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter. See
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20221021
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -192,6 +192,7 @@ gapi.load('client', async () => {
|
|
|
192
192
|
glossary: "Test string",
|
|
193
193
|
ignoreCase: true,
|
|
194
194
|
},
|
|
195
|
+
isTranslateNativePdfOnly: true,
|
|
195
196
|
labels: {
|
|
196
197
|
A: "Test string"
|
|
197
198
|
},
|