google-cloud-document_ai-v1beta3 0.6.0 → 0.7.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: 284c6b035a05602acb0a3bc4c8981ae24369eda2c8866a53cbc37ff5a543d8f6
|
|
4
|
+
data.tar.gz: dd785962308d427f0b908b2d69ebf8da5429a4222d284da5a26e6c439c649bb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f559f55a0378dda25d76a3be056b47fe9221d68e0bf4b51e1f4a0936bff8c1998f941397e6eb56f9764767be0be6e6da922ff52836be7c0944ddb1088013aa2
|
|
7
|
+
data.tar.gz: f7d7255bfa027a772dda0b7a6499b08f320c097733ff68cf0c4b2032dcf746ff32a4e8f26c3e9c4a0eda87d8798c89173d9861c5bfec7a38399467ac66a4a2a9
|
|
@@ -227,6 +227,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
|
227
227
|
value :REPLACE, 3
|
|
228
228
|
value :EVAL_REQUESTED, 4
|
|
229
229
|
value :EVAL_APPROVED, 5
|
|
230
|
+
value :EVAL_SKIPPED, 6
|
|
230
231
|
end
|
|
231
232
|
add_message "google.cloud.documentai.v1beta3.Document.Revision" do
|
|
232
233
|
optional :id, :string, 1
|
|
@@ -28,14 +28,14 @@ module Google
|
|
|
28
28
|
# optimize for quality.
|
|
29
29
|
# @!attribute [rw] uri
|
|
30
30
|
# @return [::String]
|
|
31
|
-
# Currently supports Google Cloud Storage URI of the form
|
|
31
|
+
# Optional. Currently supports Google Cloud Storage URI of the form
|
|
32
32
|
# `gs://bucket_name/object_name`. Object versioning is not supported.
|
|
33
33
|
# See [Google Cloud Storage Request
|
|
34
34
|
# URIs](https://cloud.google.com/storage/docs/reference-uris) for more
|
|
35
35
|
# info.
|
|
36
36
|
# @!attribute [rw] content
|
|
37
37
|
# @return [::String]
|
|
38
|
-
# Inline document content, represented as a stream of bytes.
|
|
38
|
+
# Optional. Inline document content, represented as a stream of bytes.
|
|
39
39
|
# Note: As with all `bytes` fields, protobuffers use a pure binary
|
|
40
40
|
# representation, whereas JSON representations use base64.
|
|
41
41
|
# @!attribute [rw] mime_type
|
|
@@ -45,7 +45,7 @@ module Google
|
|
|
45
45
|
# https://www.iana.org/assignments/media-types/media-types.xhtml.
|
|
46
46
|
# @!attribute [rw] text
|
|
47
47
|
# @return [::String]
|
|
48
|
-
# UTF-8 encoded text in reading order from the document.
|
|
48
|
+
# Optional. UTF-8 encoded text in reading order from the document.
|
|
49
49
|
# @!attribute [rw] text_styles
|
|
50
50
|
# @return [::Array<::Google::Cloud::DocumentAI::V1beta3::Document::Style>]
|
|
51
51
|
# Styles for the {::Google::Cloud::DocumentAI::V1beta3::Document#text Document.text}.
|
|
@@ -485,17 +485,17 @@ module Google
|
|
|
485
485
|
# organization, or location.
|
|
486
486
|
# @!attribute [rw] text_anchor
|
|
487
487
|
# @return [::Google::Cloud::DocumentAI::V1beta3::Document::TextAnchor]
|
|
488
|
-
# Provenance of the entity.
|
|
488
|
+
# Optional. Provenance of the entity.
|
|
489
489
|
# Text anchor indexing into the {::Google::Cloud::DocumentAI::V1beta3::Document#text Document.text}.
|
|
490
490
|
# @!attribute [rw] type
|
|
491
491
|
# @return [::String]
|
|
492
492
|
# Entity type from a schema e.g. `Address`.
|
|
493
493
|
# @!attribute [rw] mention_text
|
|
494
494
|
# @return [::String]
|
|
495
|
-
# Text value in the document e.g. `1600 Amphitheatre Pkwy`.
|
|
495
|
+
# Optional. Text value in the document e.g. `1600 Amphitheatre Pkwy`.
|
|
496
496
|
# @!attribute [rw] mention_id
|
|
497
497
|
# @return [::String]
|
|
498
|
-
# Deprecated. Use `id` field instead.
|
|
498
|
+
# Optional. Deprecated. Use `id` field instead.
|
|
499
499
|
# @!attribute [rw] confidence
|
|
500
500
|
# @return [::Float]
|
|
501
501
|
# Optional. Confidence of detected Schema entity. Range [0, 1].
|
|
@@ -531,27 +531,19 @@ module Google
|
|
|
531
531
|
# @!attribute [rw] money_value
|
|
532
532
|
# @return [::Google::Type::Money]
|
|
533
533
|
# Money value. See also:
|
|
534
|
-
#
|
|
535
|
-
# https:
|
|
536
|
-
# github.com/googleapis/googleapis/blob/master/google/type/money.proto
|
|
534
|
+
# https://github.com/googleapis/googleapis/blob/master/google/type/money.proto
|
|
537
535
|
# @!attribute [rw] date_value
|
|
538
536
|
# @return [::Google::Type::Date]
|
|
539
537
|
# Date value. Includes year, month, day. See also:
|
|
540
|
-
#
|
|
541
|
-
# https:
|
|
542
|
-
# github.com/googleapis/googleapis/blob/master/google/type/date.proto
|
|
538
|
+
# https://github.com/googleapis/googleapis/blob/master/google/type/date.proto
|
|
543
539
|
# @!attribute [rw] datetime_value
|
|
544
540
|
# @return [::Google::Type::DateTime]
|
|
545
541
|
# DateTime value. Includes date, time, and timezone. See also:
|
|
546
|
-
#
|
|
547
|
-
# https:
|
|
548
|
-
# github.com/googleapis/googleapis/blob/master/google/type/datetime.proto
|
|
542
|
+
# https://github.com/googleapis/googleapis/blob/master/google/type/datetime.proto
|
|
549
543
|
# @!attribute [rw] address_value
|
|
550
544
|
# @return [::Google::Type::PostalAddress]
|
|
551
545
|
# Postal address. See also:
|
|
552
|
-
#
|
|
553
|
-
# https:
|
|
554
|
-
# github.com/googleapis/googleapis/blob/master/google/type/postal_address.proto
|
|
546
|
+
# https://github.com/googleapis/googleapis/blob/master/google/type/postal_address.proto
|
|
555
547
|
# @!attribute [rw] boolean_value
|
|
556
548
|
# @return [::Boolean]
|
|
557
549
|
# Boolean value. Can be used for entities with binary values, or for
|
|
@@ -721,9 +713,12 @@ module Google
|
|
|
721
713
|
# Element is requested for human review.
|
|
722
714
|
EVAL_REQUESTED = 4
|
|
723
715
|
|
|
724
|
-
# Element is
|
|
725
|
-
# to 1.0
|
|
716
|
+
# Element is reviewed and approved at human review, confidence will be
|
|
717
|
+
# set to 1.0.
|
|
726
718
|
EVAL_APPROVED = 5
|
|
719
|
+
|
|
720
|
+
# Element is skipped in the validation process.
|
|
721
|
+
EVAL_SKIPPED = 6
|
|
727
722
|
end
|
|
728
723
|
end
|
|
729
724
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-document_ai-v1beta3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-03-
|
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
19
|
+
version: '0.4'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0.
|
|
26
|
+
version: '0.4'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: google-cloud-errors
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|