google-apis-documentai_v1 0.109.0 → 0.110.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: 9b1252bf6fe12d5218ab8f1fa0f71037ffc9924538aea00ab218b3825ca4af2b
|
|
4
|
+
data.tar.gz: 35fa04015fd6268e15c2ad911cdc01a22e7d336cc2f9efe7b9768c3e1bbd6d84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b0b37e879bb9e88fbae3482bd36d6943a5a6ad131de16d5183d58648a29f613f0f8c31b1ef612600b9ccf5aefa8d38f71727fc3481a987cc04aeb84bb6e8148
|
|
7
|
+
data.tar.gz: 96515e324cafafae0f4b9dbc364c6a331ab7f0092a8690e54f044a8a00e1de65f332c5ef35b51ecc8269e5f3c3183f001182a5cd9ef01e0b8892b2f56298889a
|
data/CHANGELOG.md
CHANGED
|
@@ -942,6 +942,13 @@ module Google
|
|
|
942
942
|
# @return [String]
|
|
943
943
|
attr_accessor :display_name
|
|
944
944
|
|
|
945
|
+
# Optional. Document level prompt provided by the user. This custom text is
|
|
946
|
+
# injected into the AI model's prompt to provide extra, document-wide guidance
|
|
947
|
+
# for processing.
|
|
948
|
+
# Corresponds to the JSON property `documentPrompt`
|
|
949
|
+
# @return [String]
|
|
950
|
+
attr_accessor :document_prompt
|
|
951
|
+
|
|
945
952
|
# Entity types of the schema.
|
|
946
953
|
# Corresponds to the JSON property `entityTypes`
|
|
947
954
|
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType>]
|
|
@@ -960,6 +967,7 @@ module Google
|
|
|
960
967
|
def update!(**args)
|
|
961
968
|
@description = args[:description] if args.key?(:description)
|
|
962
969
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
970
|
+
@document_prompt = args[:document_prompt] if args.key?(:document_prompt)
|
|
963
971
|
@entity_types = args[:entity_types] if args.key?(:entity_types)
|
|
964
972
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
965
973
|
end
|
|
@@ -10139,8 +10147,9 @@ module Google
|
|
|
10139
10147
|
attr_accessor :operations
|
|
10140
10148
|
|
|
10141
10149
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
10142
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
10143
|
-
# when attempting to list all resources across all supported
|
|
10150
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
10151
|
+
# For example, when attempting to list all resources across all supported
|
|
10152
|
+
# locations.
|
|
10144
10153
|
# Corresponds to the JSON property `unreachable`
|
|
10145
10154
|
# @return [Array<String>]
|
|
10146
10155
|
attr_accessor :unreachable
|
|
@@ -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.110.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 = "20251202"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2258,6 +2258,7 @@ module Google
|
|
|
2258
2258
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2259
2259
|
property :description, as: 'description'
|
|
2260
2260
|
property :display_name, as: 'displayName'
|
|
2261
|
+
property :document_prompt, as: 'documentPrompt'
|
|
2261
2262
|
collection :entity_types, as: 'entityTypes', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentSchemaEntityType::Representation
|
|
2262
2263
|
|
|
2263
2264
|
property :metadata, as: 'metadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentSchemaMetadata::Representation
|
|
@@ -275,11 +275,12 @@ module Google
|
|
|
275
275
|
# The standard list page token.
|
|
276
276
|
# @param [Boolean] return_partial_success
|
|
277
277
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
278
|
-
# those that are unreachable are returned in the
|
|
279
|
-
# unreachable
|
|
280
|
-
#
|
|
281
|
-
# by default
|
|
282
|
-
# explicitly documented otherwise in service or product specific
|
|
278
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
279
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
280
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
281
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
282
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
283
|
+
# documentation.
|
|
283
284
|
# @param [String] fields
|
|
284
285
|
# Selector specifying which fields to include in a partial response.
|
|
285
286
|
# @param [String] quota_user
|
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.110.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.110.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:
|