google-apis-documentai_v1beta2 0.46.0 → 0.47.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: 62d117e0bae35e29d0f32d2ef5791fba6376701f42b08e3333e20f35cc4a8872
4
- data.tar.gz: 9d03b8c0bdbf419be7375d2bb9af3442128372bb8dd183a06d8102a3e7f882d9
3
+ metadata.gz: be88410ebe8aa05434c25073fdf06514a78e232baca966d3d275062b8b98b428
4
+ data.tar.gz: 6e9be52cda1118eb451926b2ad09d284d6e0408ec8ea9ad8d3d52e4b47778a90
5
5
  SHA512:
6
- metadata.gz: 0a58e4ded6b20df61638f2b4201905ed6ed9b0899ccdc02f12292bf03c24cbd04130e6ab77224123af8b690da6cfb41569f168846e9b38b45ed82b7a51ab6dad
7
- data.tar.gz: acda36656fb1ab2e912ba3bf07f3aeadbc898526653efc97af7265adba6ea253e839a94744107c47dc0d6e6996e501bd58002227b7b50bd467f27fce00f4c422
6
+ metadata.gz: 820e6c72d3d70c8fac019a9913c69f28a3c3edb7aeb86873da0bc53a2634d2b2271783f201ede2d13862fa7b94d5389b396e939244dc9d4cd3a6ef60d54c50b1
7
+ data.tar.gz: 9a8f2f11b25e3bdf808fc384acebff6a9ae45cdc1421f54167b9dde50e32c0164d58edf7adf30fc1e93d29830e91dc965a362c65d65db8bea15ce5f0fdc99a0a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.47.0 (2022-09-18)
4
+
5
+ * Regenerated from discovery document revision 20220912
6
+
3
7
  ### v0.46.0 (2022-08-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20220824
@@ -3086,6 +3086,12 @@ module Google
3086
3086
  # @return [Google::Apis::DocumentaiV1beta2::GoogleTypeColor]
3087
3087
  attr_accessor :color
3088
3088
 
3089
+ # Font family such as "Arial", "Times New Roman". https://www.w3schools.com/
3090
+ # cssref/pr_font_font-family.asp
3091
+ # Corresponds to the JSON property `fontFamily`
3092
+ # @return [String]
3093
+ attr_accessor :font_family
3094
+
3089
3095
  # Font size with unit.
3090
3096
  # Corresponds to the JSON property `fontSize`
3091
3097
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentStyleFontSize]
@@ -3122,6 +3128,7 @@ module Google
3122
3128
  def update!(**args)
3123
3129
  @background_color = args[:background_color] if args.key?(:background_color)
3124
3130
  @color = args[:color] if args.key?(:color)
3131
+ @font_family = args[:font_family] if args.key?(:font_family)
3125
3132
  @font_size = args[:font_size] if args.key?(:font_size)
3126
3133
  @font_weight = args[:font_weight] if args.key?(:font_weight)
3127
3134
  @text_anchor = args[:text_anchor] if args.key?(:text_anchor)
@@ -4992,6 +4999,12 @@ module Google
4992
4999
  # @return [Google::Apis::DocumentaiV1beta2::GoogleTypeColor]
4993
5000
  attr_accessor :color
4994
5001
 
5002
+ # Font family such as "Arial", "Times New Roman". https://www.w3schools.com/
5003
+ # cssref/pr_font_font-family.asp
5004
+ # Corresponds to the JSON property `fontFamily`
5005
+ # @return [String]
5006
+ attr_accessor :font_family
5007
+
4995
5008
  # Font size with unit.
4996
5009
  # Corresponds to the JSON property `fontSize`
4997
5010
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentStyleFontSize]
@@ -5028,6 +5041,7 @@ module Google
5028
5041
  def update!(**args)
5029
5042
  @background_color = args[:background_color] if args.key?(:background_color)
5030
5043
  @color = args[:color] if args.key?(:color)
5044
+ @font_family = args[:font_family] if args.key?(:font_family)
5031
5045
  @font_size = args[:font_size] if args.key?(:font_size)
5032
5046
  @font_weight = args[:font_weight] if args.key?(:font_weight)
5033
5047
  @text_anchor = args[:text_anchor] if args.key?(:text_anchor)
@@ -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.46.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220824"
25
+ REVISION = "20220912"
26
26
  end
27
27
  end
28
28
  end
@@ -2180,6 +2180,7 @@ module Google
2180
2180
 
2181
2181
  property :color, as: 'color', class: Google::Apis::DocumentaiV1beta2::GoogleTypeColor, decorator: Google::Apis::DocumentaiV1beta2::GoogleTypeColor::Representation
2182
2182
 
2183
+ property :font_family, as: 'fontFamily'
2183
2184
  property :font_size, as: 'fontSize', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentStyleFontSize, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentStyleFontSize::Representation
2184
2185
 
2185
2186
  property :font_weight, as: 'fontWeight'
@@ -2727,6 +2728,7 @@ module Google
2727
2728
 
2728
2729
  property :color, as: 'color', class: Google::Apis::DocumentaiV1beta2::GoogleTypeColor, decorator: Google::Apis::DocumentaiV1beta2::GoogleTypeColor::Representation
2729
2730
 
2731
+ property :font_family, as: 'fontFamily'
2730
2732
  property :font_size, as: 'fontSize', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentStyleFontSize, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentStyleFontSize::Representation
2731
2733
 
2732
2734
  property :font_weight, as: 'fontWeight'
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.46.0
4
+ version: 0.47.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-09-05 00:00:00.000000000 Z
11
+ date: 2022-09-19 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.7'
19
+ version: 0.7.2
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.7'
29
+ version: 0.7.2
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.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.47.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: []