google-apis-documentai_v1 0.112.0 → 0.113.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: 542e02cc96c8a24c2ac9401eed356249441ebfa6454a2b55d993c7e60c3cb50e
4
- data.tar.gz: 8f49c4b0dafddb28cb74b60310b49a7fe7dce34fef5b40fc80df0de4fa62fb55
3
+ metadata.gz: 652256eb0ad48f010b50e4990b31af45debcfb69a98c2da747b94d7e9088fab3
4
+ data.tar.gz: 269e580511fe2b9b390afdfed53a5a92571cb1a9a701d2dc980db3e3a6a3d788
5
5
  SHA512:
6
- metadata.gz: e4182e63d40ebc196693eab006906004bf97c2ccd2dd2cbd21d3d91fc8bd2a3964722dbd075aecf93fd7aa978c3a46abf09d4a2eb238e9490e29e8030c258310
7
- data.tar.gz: caf4bc5b442ed0d59d8667c37375961d06eb9eaaa4e197c1db71e92627953af0c3403b911f9d28b7e293f29d2233e2d0f5384e8a5c37a031bf5efad3fed54d80
6
+ metadata.gz: bbc31081380a2d951a245210bf2b1af4c4721de4e31200adac81f6825d7954e662412a1aa38677bd96d96b5381288dcf2260724afbfcd0f3a7e66fa2d17fc0f8
7
+ data.tar.gz: 9070cc230929b5654f464b2f3b71a1da9c72229ef11582954fab6421f4dbad7ac8bef26ddb9146d144d040c0a8ef06abec000b12b4b22d51a55e5fc82a721a9e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.113.0 (2026-01-25)
4
+
5
+ * Regenerated from discovery document revision 20260118
6
+
3
7
  ### v0.112.0 (2026-01-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20260104
@@ -5458,6 +5458,13 @@ module Google
5458
5458
  # @return [String]
5459
5459
  attr_accessor :display_name
5460
5460
 
5461
+ # Optional. Document level prompt provided by the user. This custom text is
5462
+ # injected into the AI model's prompt to provide extra, document-wide guidance
5463
+ # for processing.
5464
+ # Corresponds to the JSON property `documentPrompt`
5465
+ # @return [String]
5466
+ attr_accessor :document_prompt
5467
+
5461
5468
  # Entity types of the schema.
5462
5469
  # Corresponds to the JSON property `entityTypes`
5463
5470
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType>]
@@ -5476,6 +5483,7 @@ module Google
5476
5483
  def update!(**args)
5477
5484
  @description = args[:description] if args.key?(:description)
5478
5485
  @display_name = args[:display_name] if args.key?(:display_name)
5486
+ @document_prompt = args[:document_prompt] if args.key?(:document_prompt)
5479
5487
  @entity_types = args[:entity_types] if args.key?(:entity_types)
5480
5488
  @metadata = args[:metadata] if args.key?(:metadata)
5481
5489
  end
@@ -8730,6 +8738,13 @@ module Google
8730
8738
  # @return [String]
8731
8739
  attr_accessor :display_name
8732
8740
 
8741
+ # Optional. Document level prompt provided by the user. This custom text is
8742
+ # injected into the AI model's prompt to provide extra, document-wide guidance
8743
+ # for processing.
8744
+ # Corresponds to the JSON property `documentPrompt`
8745
+ # @return [String]
8746
+ attr_accessor :document_prompt
8747
+
8733
8748
  # Entity types of the schema.
8734
8749
  # Corresponds to the JSON property `entityTypes`
8735
8750
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType>]
@@ -8748,6 +8763,7 @@ module Google
8748
8763
  def update!(**args)
8749
8764
  @description = args[:description] if args.key?(:description)
8750
8765
  @display_name = args[:display_name] if args.key?(:display_name)
8766
+ @document_prompt = args[:document_prompt] if args.key?(:document_prompt)
8751
8767
  @entity_types = args[:entity_types] if args.key?(:entity_types)
8752
8768
  @metadata = args[:metadata] if args.key?(:metadata)
8753
8769
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1
18
18
  # Version of the google-apis-documentai_v1 gem
19
- GEM_VERSION = "0.112.0"
19
+ GEM_VERSION = "0.113.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260104"
25
+ REVISION = "20260118"
26
26
  end
27
27
  end
28
28
  end
@@ -3619,6 +3619,7 @@ module Google
3619
3619
  class Representation < Google::Apis::Core::JsonRepresentation
3620
3620
  property :description, as: 'description'
3621
3621
  property :display_name, as: 'displayName'
3622
+ property :document_prompt, as: 'documentPrompt'
3622
3623
  collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType::Representation
3623
3624
 
3624
3625
  property :metadata, as: 'metadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata::Representation
@@ -4608,6 +4609,7 @@ module Google
4608
4609
  class Representation < Google::Apis::Core::JsonRepresentation
4609
4610
  property :description, as: 'description'
4610
4611
  property :display_name, as: 'displayName'
4612
+ property :document_prompt, as: 'documentPrompt'
4611
4613
  collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType::Representation
4612
4614
 
4613
4615
  property :metadata, as: 'metadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaMetadata::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.112.0
4
+ version: 0.113.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.112.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.113.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1
62
62
  rdoc_options: []
63
63
  require_paths: