google-apis-documentai_v1 0.111.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 652256eb0ad48f010b50e4990b31af45debcfb69a98c2da747b94d7e9088fab3
|
|
4
|
+
data.tar.gz: 269e580511fe2b9b390afdfed53a5a92571cb1a9a701d2dc980db3e3a6a3d788
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbc31081380a2d951a245210bf2b1af4c4721de4e31200adac81f6825d7954e662412a1aa38677bd96d96b5381288dcf2260724afbfcd0f3a7e66fa2d17fc0f8
|
|
7
|
+
data.tar.gz: 9070cc230929b5654f464b2f3b71a1da9c72229ef11582954fab6421f4dbad7ac8bef26ddb9146d144d040c0a8ef06abec000b12b4b22d51a55e5fc82a721a9e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
7
|
+
### v0.112.0 (2026-01-11)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260104
|
|
10
|
+
|
|
3
11
|
### v0.111.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251209
|
|
@@ -3850,6 +3850,12 @@ module Google
|
|
|
3850
3850
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityValidationOutput]
|
|
3851
3851
|
attr_accessor :entity_validation_output
|
|
3852
3852
|
|
|
3853
|
+
# Structure to identify provenance relationships between annotations in
|
|
3854
|
+
# different revisions.
|
|
3855
|
+
# Corresponds to the JSON property `provenance`
|
|
3856
|
+
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance]
|
|
3857
|
+
attr_accessor :provenance
|
|
3858
|
+
|
|
3853
3859
|
# The revision id.
|
|
3854
3860
|
# Corresponds to the JSON property `revisionId`
|
|
3855
3861
|
# @return [String]
|
|
@@ -3863,6 +3869,7 @@ module Google
|
|
|
3863
3869
|
def update!(**args)
|
|
3864
3870
|
@entities = args[:entities] if args.key?(:entities)
|
|
3865
3871
|
@entity_validation_output = args[:entity_validation_output] if args.key?(:entity_validation_output)
|
|
3872
|
+
@provenance = args[:provenance] if args.key?(:provenance)
|
|
3866
3873
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
|
3867
3874
|
end
|
|
3868
3875
|
end
|
|
@@ -5451,6 +5458,13 @@ module Google
|
|
|
5451
5458
|
# @return [String]
|
|
5452
5459
|
attr_accessor :display_name
|
|
5453
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
|
+
|
|
5454
5468
|
# Entity types of the schema.
|
|
5455
5469
|
# Corresponds to the JSON property `entityTypes`
|
|
5456
5470
|
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType>]
|
|
@@ -5469,6 +5483,7 @@ module Google
|
|
|
5469
5483
|
def update!(**args)
|
|
5470
5484
|
@description = args[:description] if args.key?(:description)
|
|
5471
5485
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
5486
|
+
@document_prompt = args[:document_prompt] if args.key?(:document_prompt)
|
|
5472
5487
|
@entity_types = args[:entity_types] if args.key?(:entity_types)
|
|
5473
5488
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
5474
5489
|
end
|
|
@@ -8723,6 +8738,13 @@ module Google
|
|
|
8723
8738
|
# @return [String]
|
|
8724
8739
|
attr_accessor :display_name
|
|
8725
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
|
+
|
|
8726
8748
|
# Entity types of the schema.
|
|
8727
8749
|
# Corresponds to the JSON property `entityTypes`
|
|
8728
8750
|
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType>]
|
|
@@ -8741,6 +8763,7 @@ module Google
|
|
|
8741
8763
|
def update!(**args)
|
|
8742
8764
|
@description = args[:description] if args.key?(:description)
|
|
8743
8765
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
8766
|
+
@document_prompt = args[:document_prompt] if args.key?(:document_prompt)
|
|
8744
8767
|
@entity_types = args[:entity_types] if args.key?(:entity_types)
|
|
8745
8768
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
8746
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.
|
|
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 = "
|
|
25
|
+
REVISION = "20260118"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3176,6 +3176,8 @@ module Google
|
|
|
3176
3176
|
|
|
3177
3177
|
property :entity_validation_output, as: 'entityValidationOutput', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityValidationOutput, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityValidationOutput::Representation
|
|
3178
3178
|
|
|
3179
|
+
property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance::Representation
|
|
3180
|
+
|
|
3179
3181
|
property :revision_id, as: 'revisionId'
|
|
3180
3182
|
end
|
|
3181
3183
|
end
|
|
@@ -3617,6 +3619,7 @@ module Google
|
|
|
3617
3619
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3618
3620
|
property :description, as: 'description'
|
|
3619
3621
|
property :display_name, as: 'displayName'
|
|
3622
|
+
property :document_prompt, as: 'documentPrompt'
|
|
3620
3623
|
collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaEntityType::Representation
|
|
3621
3624
|
|
|
3622
3625
|
property :metadata, as: 'metadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchemaMetadata::Representation
|
|
@@ -4606,6 +4609,7 @@ module Google
|
|
|
4606
4609
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4607
4610
|
property :description, as: 'description'
|
|
4608
4611
|
property :display_name, as: 'displayName'
|
|
4612
|
+
property :document_prompt, as: 'documentPrompt'
|
|
4609
4613
|
collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityType::Representation
|
|
4610
4614
|
|
|
4611
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.
|
|
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.
|
|
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:
|