google-cloud-document_ai-v1beta3 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e07c84fdd36153f3b5e8e6c1f58f4ab7389f213928510d4c8a55cee22f30f3c
4
- data.tar.gz: 05f1740bbe4f15d7c878c785d3a3d25029f4d418431fe7c3438b40f0feacdbc3
3
+ metadata.gz: 284c6b035a05602acb0a3bc4c8981ae24369eda2c8866a53cbc37ff5a543d8f6
4
+ data.tar.gz: dd785962308d427f0b908b2d69ebf8da5429a4222d284da5a26e6c439c649bb4
5
5
  SHA512:
6
- metadata.gz: f7b66607d57e7058822f8efd0c44d51e06ae9c2cd99de38d47a5ab5c74424190a1ac3ccfdeca36879f5f470c9b51895e9a7c59c38e137cb61c794e2f122d9730
7
- data.tar.gz: 1d30ab4077b15e4f5b7e68970485bf16a0ad4a39298b6dec454a9bb7a3b486f5f3db14d92ece5c97153ea59e5ee94bb15056636a2dbd09a8a14d51db6d34684b
6
+ metadata.gz: 6f559f55a0378dda25d76a3be056b47fe9221d68e0bf4b51e1f4a0936bff8c1998f941397e6eb56f9764767be0be6e6da922ff52836be7c0944ddb1088013aa2
7
+ data.tar.gz: f7d7255bfa027a772dda0b7a6499b08f320c097733ff68cf0c4b2032dcf746ff32a4e8f26c3e9c4a0eda87d8798c89173d9861c5bfec7a38399467ac66a4a2a9
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module DocumentAI
23
23
  module V1beta3
24
- VERSION = "0.6.0"
24
+ VERSION = "0.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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 review and approved at human review, confidence will be set
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.6.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-10 00:00:00.000000000 Z
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.3'
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.3'
26
+ version: '0.4'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-errors
29
29
  requirement: !ruby/object:Gem::Requirement