google-apis-documentai_v1beta2 0.49.0 → 0.50.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: 9cfd4929c21b32f1245f5958bfd0bf9545f809823b93cbdaf7f98d4b5ba95ee3
4
- data.tar.gz: edcb4f2a30f72f7165e46efb7913f6ed198ab38f6bd22ba2f9b8b11ff5733e71
3
+ metadata.gz: fa83bae2c5e23ace6319bb65df438f2e10cdf48d7280cbd759978a70df42a0fb
4
+ data.tar.gz: 4f11206c94eeaedf63d2f0393c3aeee352620af54d31e22d31eb7490d77d8c6b
5
5
  SHA512:
6
- metadata.gz: ea4f70b58dc2cdb9e57f2ce81ccc0c1516a91d646854ce3c4ed7f0e99de95c6d4cd058036f2d2cc154bb15d591db428d7390583160df12fa89bf8d81098d10ac
7
- data.tar.gz: c9b681e1986dc45bae979cb02b70ce3a3bead40711d67bf5a6735452699728907502257383f558d1c51d0a8f169aea780c3a727e336456e208f60efc69e2afb9
6
+ metadata.gz: 2721fb6c654b037cd26ece1aa5d1072b8bee9635f547aad87259dc04428288e1e19bc0e2485731959bad7d3ddecc9bab8f0760a0009ca617e58ecb41b41d94bc
7
+ data.tar.gz: 97036e75abf5624a79f4eb2e19400805448929afa0f90598f5457565075fde0cf1ce3ce87e070238eab88292cdd13362130d7bc7d47b9fa89eccac480007554a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.50.0 (2022-10-27)
4
+
5
+ * Regenerated from discovery document revision 20221017
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.49.0 (2022-10-02)
4
9
 
5
10
  * Regenerated from discovery document revision 20220921
@@ -2695,6 +2695,12 @@ module Google
2695
2695
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageLayout]
2696
2696
  attr_accessor :layout
2697
2697
 
2698
+ # Structure to identify provenance relationships between annotations in
2699
+ # different revisions.
2700
+ # Corresponds to the JSON property `provenance`
2701
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance]
2702
+ attr_accessor :provenance
2703
+
2698
2704
  def initialize(**args)
2699
2705
  update!(**args)
2700
2706
  end
@@ -2705,6 +2711,7 @@ module Google
2705
2711
  @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
2706
2712
  @header_rows = args[:header_rows] if args.key?(:header_rows)
2707
2713
  @layout = args[:layout] if args.key?(:layout)
2714
+ @provenance = args[:provenance] if args.key?(:provenance)
2708
2715
  end
2709
2716
  end
2710
2717
 
@@ -4667,6 +4674,12 @@ module Google
4667
4674
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageLayout]
4668
4675
  attr_accessor :layout
4669
4676
 
4677
+ # Structure to identify provenance relationships between annotations in
4678
+ # different revisions.
4679
+ # Corresponds to the JSON property `provenance`
4680
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance]
4681
+ attr_accessor :provenance
4682
+
4670
4683
  def initialize(**args)
4671
4684
  update!(**args)
4672
4685
  end
@@ -4677,6 +4690,7 @@ module Google
4677
4690
  @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
4678
4691
  @header_rows = args[:header_rows] if args.key?(:header_rows)
4679
4692
  @layout = args[:layout] if args.key?(:layout)
4693
+ @provenance = args[:provenance] if args.key?(:provenance)
4680
4694
  end
4681
4695
  end
4682
4696
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1beta2
18
18
  # Version of the google-apis-documentai_v1beta2 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220921"
25
+ REVISION = "20221017"
26
26
  end
27
27
  end
28
28
  end
@@ -2110,6 +2110,8 @@ module Google
2110
2110
 
2111
2111
  property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageLayout::Representation
2112
2112
 
2113
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
2114
+
2113
2115
  end
2114
2116
  end
2115
2117
 
@@ -2677,6 +2679,8 @@ module Google
2677
2679
 
2678
2680
  property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageLayout::Representation
2679
2681
 
2682
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
2683
+
2680
2684
  end
2681
2685
  end
2682
2686
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.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: 2022-10-03 00:00:00.000000000 Z
11
+ date: 2022-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []