@maxim_mazurok/gapi.client.documentai-v1 0.0.20230914 → 0.0.20231001
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 +4 -4
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://documentai.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231001
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3324,7 +3324,7 @@ declare namespace gapi.client {
|
|
|
3324
3324
|
/** Turn on font identification model and return font style information. Deprecated, use PremiumFeatures.compute_style_info instead. */
|
|
3325
3325
|
computeStyleInfo?:
|
|
3326
3326
|
boolean;
|
|
3327
|
-
/** Turn off character box detector in OCR engine. Character box detection is enabled by default in OCR 2.0
|
|
3327
|
+
/** Turn off character box detector in OCR engine. Character box detection is enabled by default in OCR 2.0 (and later) processors. */
|
|
3328
3328
|
disableCharacterBoxesDetection?:
|
|
3329
3329
|
boolean;
|
|
3330
3330
|
/**
|
|
@@ -3362,7 +3362,7 @@ declare namespace gapi.client {
|
|
|
3362
3362
|
/** Turn on the model that can extract LaTeX math formulas. */
|
|
3363
3363
|
enableMathOcr?:
|
|
3364
3364
|
boolean;
|
|
3365
|
-
/** Turn on selection mark detector in OCR engine. Only available in OCR 2.0
|
|
3365
|
+
/** Turn on selection mark detector in OCR engine. Only available in OCR 2.0 (and later) processors. */
|
|
3366
3366
|
enableSelectionMarkDetection?:
|
|
3367
3367
|
boolean;
|
|
3368
3368
|
}
|
|
@@ -3370,7 +3370,7 @@ declare namespace gapi.client {
|
|
|
3370
3370
|
/** Only process certain pages from the end, same as above. */
|
|
3371
3371
|
fromEnd?:
|
|
3372
3372
|
number;
|
|
3373
|
-
/** Only process certain pages from the start
|
|
3373
|
+
/** Only process certain pages from the start. Process all if the document has fewer pages. */
|
|
3374
3374
|
fromStart?:
|
|
3375
3375
|
number;
|
|
3376
3376
|
/** Which pages to process (1-indexed). */
|
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: 20231001
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|