google-apis-documentai_v1beta3 0.101.0 → 0.102.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: d981c08e20d5159c7676f142d88e5f0dfb72d2d014942326a7336594d8d21fdd
4
- data.tar.gz: df5f81266ca3ab8143ce6be16f2be80793b4f17389e2557404ecb03d99819391
3
+ metadata.gz: 791c557d0916d807f93dd00d5725edcd78e0296167cb46ad2c90209f4116ff89
4
+ data.tar.gz: 7d899981c86213c4633f17467716f436f18daa9f5dd994a19758fb4923f59532
5
5
  SHA512:
6
- metadata.gz: 064ab2864c73a0fddcde823e82e9c0528abacff459a2b481da1b047eb86e889512106e968aa29c191d9c4ef8f7f013dbcccd45d7af492c7777c2f9ebfb188746
7
- data.tar.gz: 665ee42f443d217456bac9c9527da9e6bb0bf7a9798825b6fb40c42fed4e78d1bdf45acc35f98a38ecdbec52938fab8b009767d91790df5826f300d19f84659d
6
+ metadata.gz: d8928ea7064b70b8c2182f42690c4858ec60491e87f517c7a66df537b76e386d0a49bde22b5034d026c1767acc1f6dca9d4f8eae10f7c8f3a1389a678b87a70b
7
+ data.tar.gz: 1da8d0ade1298c5502ce1f537083d374a61e2d03bfdcc6398f0f08a659aed40afd9ef1e71f532ad01612f7ff2ba1209cda0d32bf59253fbfc92c037266c198b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.102.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250210
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.101.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241210
@@ -6703,6 +6703,19 @@ module Google
6703
6703
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessOptionsLayoutConfigChunkingConfig]
6704
6704
  attr_accessor :chunking_config
6705
6705
 
6706
+ # Optional. Whether to include bounding boxes in layout parser processor
6707
+ # response.
6708
+ # Corresponds to the JSON property `returnBoundingBoxes`
6709
+ # @return [Boolean]
6710
+ attr_accessor :return_bounding_boxes
6711
+ alias_method :return_bounding_boxes?, :return_bounding_boxes
6712
+
6713
+ # Optional. Whether to include images in layout parser processor response.
6714
+ # Corresponds to the JSON property `returnImages`
6715
+ # @return [Boolean]
6716
+ attr_accessor :return_images
6717
+ alias_method :return_images?, :return_images
6718
+
6706
6719
  def initialize(**args)
6707
6720
  update!(**args)
6708
6721
  end
@@ -6710,6 +6723,8 @@ module Google
6710
6723
  # Update properties of this object
6711
6724
  def update!(**args)
6712
6725
  @chunking_config = args[:chunking_config] if args.key?(:chunking_config)
6726
+ @return_bounding_boxes = args[:return_bounding_boxes] if args.key?(:return_bounding_boxes)
6727
+ @return_images = args[:return_images] if args.key?(:return_images)
6713
6728
  end
6714
6729
  end
6715
6730
 
@@ -6719,7 +6734,7 @@ module Google
6719
6734
 
6720
6735
  # Optional. The percentile of cosine dissimilarity that must be exceeded between
6721
6736
  # a group of tokens and the next. The smaller this number is, the more chunks
6722
- # will be generated.
6737
+ # will be generated. THIS FIELD IS NOT YET USED.
6723
6738
  # Corresponds to the JSON property `breakpointPercentileThreshold`
6724
6739
  # @return [Fixnum]
6725
6740
  attr_accessor :breakpoint_percentile_threshold
@@ -6736,7 +6751,7 @@ module Google
6736
6751
  alias_method :include_ancestor_headings?, :include_ancestor_headings
6737
6752
 
6738
6753
  # Optional. The number of tokens to group together when evaluating semantic
6739
- # similarity.
6754
+ # similarity. THIS FIELD IS NOT YET USED.
6740
6755
  # Corresponds to the JSON property `semanticChunkingGroupSize`
6741
6756
  # @return [Boolean]
6742
6757
  attr_accessor :semantic_chunking_group_size
@@ -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.101.0"
19
+ GEM_VERSION = "0.102.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241210"
25
+ REVISION = "20250210"
26
26
  end
27
27
  end
28
28
  end
@@ -3725,6 +3725,8 @@ module Google
3725
3725
  class Representation < Google::Apis::Core::JsonRepresentation
3726
3726
  property :chunking_config, as: 'chunkingConfig', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessOptionsLayoutConfigChunkingConfig, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3ProcessOptionsLayoutConfigChunkingConfig::Representation
3727
3727
 
3728
+ property :return_bounding_boxes, as: 'returnBoundingBoxes'
3729
+ property :return_images, as: 'returnImages'
3728
3730
  end
3729
3731
  end
3730
3732
 
metadata CHANGED
@@ -1,14 +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.101.0
4
+ version: 0.102.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.101.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.102.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Cloud Document AI API V1beta3
82
79
  test_files: []