@maxim_mazurok/gapi.client.documentai-v1beta3 0.0.20250421 → 0.0.20250427
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 +10 -1
- package/package.json +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=v1beta3
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250427
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -668,6 +668,8 @@ declare namespace gapi.client {
|
|
|
668
668
|
pageStart?: number;
|
|
669
669
|
}
|
|
670
670
|
interface GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock {
|
|
671
|
+
/** Annotation of the table block. */
|
|
672
|
+
annotations?: GoogleCloudDocumentaiV1beta3DocumentAnnotations;
|
|
671
673
|
/** Body rows containing main table content. */
|
|
672
674
|
bodyRows?: GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow[];
|
|
673
675
|
/** Table caption/title. */
|
|
@@ -734,6 +736,7 @@ declare namespace gapi.client {
|
|
|
734
736
|
integerValue?: number;
|
|
735
737
|
/** Money value. See also: https://github.com/googleapis/googleapis/blob/master/google/type/money.proto */
|
|
736
738
|
moneyValue?: GoogleTypeMoney;
|
|
739
|
+
signatureValue?: boolean;
|
|
737
740
|
/** Optional. An optional field to store a normalized string. For some entity types, one of respective `structured_value` fields may also be populated. Also not all the types of `structured_value` will be normalized. For example, some processors may not generate `float` or `integer` normalized text by default. Below are sample formats mapped to structured values. - Money/Currency type (`money_value`) is in the ISO 4217 text format. - Date type (`date_value`) is in the ISO 8601 text format. - Datetime type (`datetime_value`) is in the ISO 8601 text format. */
|
|
738
741
|
text?: string;
|
|
739
742
|
}
|
|
@@ -1486,8 +1489,14 @@ declare namespace gapi.client {
|
|
|
1486
1489
|
interface GoogleCloudDocumentaiV1beta3ProcessOptionsLayoutConfig {
|
|
1487
1490
|
/** Optional. Config for chunking in layout parser processor. */
|
|
1488
1491
|
chunkingConfig?: GoogleCloudDocumentaiV1beta3ProcessOptionsLayoutConfigChunkingConfig;
|
|
1492
|
+
/** Optional. Whether to include image annotations in layout parser response. */
|
|
1493
|
+
enableImageAnnotation?: boolean;
|
|
1494
|
+
/** Optional. Whether to extract images in layout parser response. */
|
|
1495
|
+
enableImageExtraction?: boolean;
|
|
1489
1496
|
/** Optional. Whether to refine PDF layout using LLM. */
|
|
1490
1497
|
enableLlmLayoutParsing?: boolean;
|
|
1498
|
+
/** Optional. Whether to include table annotations in layout parser response. */
|
|
1499
|
+
enableTableAnnotation?: boolean;
|
|
1491
1500
|
/** Optional. Whether to include bounding boxes in layout parser processor response. */
|
|
1492
1501
|
returnBoundingBoxes?: boolean;
|
|
1493
1502
|
/** Optional. Whether to include images in layout parser processor response. */
|