google-apis-documentai_v1beta3 0.103.0 → 0.104.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1fad5cb56ca19eb7cce1c048fb1a08965ea0ce3ba3315c901711c6e9e30b7c2
|
4
|
+
data.tar.gz: ae7788539eca3cfbd0b54f7eaedc30864056fb4cff4cd99733e5afc19fe8304c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a6ea739c2b6382682df2397e53809b12362ac1601f77c69aa71ddff8131e895b2c7c809c90a962011a5212ba4d7cf9361843b303cacec2bea9c28613b7a0f5e
|
7
|
+
data.tar.gz: f696f3e1b43ab116859ec6fc45e5d3eaa627840cda4ca2f559b390185e6812263d0aee0e9023b2fe714744448542f1173924fee9bdfb9ab5048b3cf5de1ea920
|
data/CHANGELOG.md
CHANGED
@@ -2796,6 +2796,11 @@ module Google
|
|
2796
2796
|
# @return [String]
|
2797
2797
|
attr_accessor :content
|
2798
2798
|
|
2799
|
+
# Optional. An internal identifier for document. Should be loggable (no PII).
|
2800
|
+
# Corresponds to the JSON property `docid`
|
2801
|
+
# @return [String]
|
2802
|
+
attr_accessor :docid
|
2803
|
+
|
2799
2804
|
# Represents the parsed layout of a document as a collection of blocks that the
|
2800
2805
|
# document is divided into.
|
2801
2806
|
# Corresponds to the JSON property `documentLayout`
|
@@ -2878,6 +2883,7 @@ module Google
|
|
2878
2883
|
def update!(**args)
|
2879
2884
|
@chunked_document = args[:chunked_document] if args.key?(:chunked_document)
|
2880
2885
|
@content = args[:content] if args.key?(:content)
|
2886
|
+
@docid = args[:docid] if args.key?(:docid)
|
2881
2887
|
@document_layout = args[:document_layout] if args.key?(:document_layout)
|
2882
2888
|
@entities = args[:entities] if args.key?(:entities)
|
2883
2889
|
@entity_relations = args[:entity_relations] if args.key?(:entity_relations)
|
@@ -3066,6 +3072,11 @@ module Google
|
|
3066
3072
|
# @return [String]
|
3067
3073
|
attr_accessor :block_id
|
3068
3074
|
|
3075
|
+
# A bounding polygon for the detected image annotation.
|
3076
|
+
# Corresponds to the JSON property `boundingBox`
|
3077
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BoundingPoly]
|
3078
|
+
attr_accessor :bounding_box
|
3079
|
+
|
3069
3080
|
# Represents a list type block.
|
3070
3081
|
# Corresponds to the JSON property `listBlock`
|
3071
3082
|
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock]
|
@@ -3093,6 +3104,7 @@ module Google
|
|
3093
3104
|
# Update properties of this object
|
3094
3105
|
def update!(**args)
|
3095
3106
|
@block_id = args[:block_id] if args.key?(:block_id)
|
3107
|
+
@bounding_box = args[:bounding_box] if args.key?(:bounding_box)
|
3096
3108
|
@list_block = args[:list_block] if args.key?(:list_block)
|
3097
3109
|
@page_span = args[:page_span] if args.key?(:page_span)
|
3098
3110
|
@table_block = args[:table_block] if args.key?(:table_block)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DocumentaiV1beta3
|
18
18
|
# Version of the google-apis-documentai_v1beta3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.104.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250416"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2588,6 +2588,7 @@ module Google
|
|
2588
2588
|
property :chunked_document, as: 'chunkedDocument', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentChunkedDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentChunkedDocument::Representation
|
2589
2589
|
|
2590
2590
|
property :content, :base64 => true, as: 'content'
|
2591
|
+
property :docid, as: 'docid'
|
2591
2592
|
property :document_layout, as: 'documentLayout', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayout, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayout::Representation
|
2592
2593
|
|
2593
2594
|
collection :entities, as: 'entities', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntity, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntity::Representation
|
@@ -2673,6 +2674,8 @@ module Google
|
|
2673
2674
|
# @private
|
2674
2675
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2675
2676
|
property :block_id, as: 'blockId'
|
2677
|
+
property :bounding_box, as: 'boundingBox', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BoundingPoly, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3BoundingPoly::Representation
|
2678
|
+
|
2676
2679
|
property :list_block, as: 'listBlock', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutListBlock::Representation
|
2677
2680
|
|
2678
2681
|
property :page_span, as: 'pageSpan', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutPageSpan::Representation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-documentai_v1beta3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.104.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.104.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|