google-apis-docs_v1 0.13.0 → 0.14.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/docs_v1/classes.rb +15 -0
- data/lib/google/apis/docs_v1/gem_version.rb +2 -2
- data/lib/google/apis/docs_v1/representations.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b9627e0ff54742e69253027eda1dff7ad10f9b2e4cf078b9874c0aa550974d
|
|
4
|
+
data.tar.gz: 2274b58c442c29fd304a8a60dd6491ba0efc2f5106e974f42e4488f8a8eba157
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad379d08b43ba8a83d9ac2a014e86a47807ce8e1f9caef4efb0e542d20d7ba5c7b0df0a31a08c9ad53b78aa1a7d6d038fec47a42c5c9e9a5fefa5b23284eb487
|
|
7
|
+
data.tar.gz: 1a1efc3224b29c66b8ca8ce1161e1f21b9183799c1d50db77383370d31837097ead0108db431aed47d5107e6eaab50f9ef48c639b1c561fd378e9416500174ed
|
data/CHANGELOG.md
CHANGED
|
@@ -3312,6 +3312,13 @@ module Google
|
|
|
3312
3312
|
# @return [String]
|
|
3313
3313
|
attr_accessor :named_style_type
|
|
3314
3314
|
|
|
3315
|
+
# Whether the current paragraph should always start at the beginning of a page.
|
|
3316
|
+
# If unset, the value is inherited from the parent.
|
|
3317
|
+
# Corresponds to the JSON property `pageBreakBefore`
|
|
3318
|
+
# @return [Boolean]
|
|
3319
|
+
attr_accessor :page_break_before
|
|
3320
|
+
alias_method :page_break_before?, :page_break_before
|
|
3321
|
+
|
|
3315
3322
|
# The shading of a paragraph.
|
|
3316
3323
|
# Corresponds to the JSON property `shading`
|
|
3317
3324
|
# @return [Google::Apis::DocsV1::Shading]
|
|
@@ -3360,6 +3367,7 @@ module Google
|
|
|
3360
3367
|
@keep_with_next = args[:keep_with_next] if args.key?(:keep_with_next)
|
|
3361
3368
|
@line_spacing = args[:line_spacing] if args.key?(:line_spacing)
|
|
3362
3369
|
@named_style_type = args[:named_style_type] if args.key?(:named_style_type)
|
|
3370
|
+
@page_break_before = args[:page_break_before] if args.key?(:page_break_before)
|
|
3363
3371
|
@shading = args[:shading] if args.key?(:shading)
|
|
3364
3372
|
@space_above = args[:space_above] if args.key?(:space_above)
|
|
3365
3373
|
@space_below = args[:space_below] if args.key?(:space_below)
|
|
@@ -3470,6 +3478,12 @@ module Google
|
|
|
3470
3478
|
attr_accessor :named_style_type_suggested
|
|
3471
3479
|
alias_method :named_style_type_suggested?, :named_style_type_suggested
|
|
3472
3480
|
|
|
3481
|
+
# Indicates if there was a suggested change to page_break_before.
|
|
3482
|
+
# Corresponds to the JSON property `pageBreakBeforeSuggested`
|
|
3483
|
+
# @return [Boolean]
|
|
3484
|
+
attr_accessor :page_break_before_suggested
|
|
3485
|
+
alias_method :page_break_before_suggested?, :page_break_before_suggested
|
|
3486
|
+
|
|
3473
3487
|
# A mask that indicates which of the fields on the base Shading have been
|
|
3474
3488
|
# changed in this suggested change. For any field set to true, there is a new
|
|
3475
3489
|
# suggested value.
|
|
@@ -3517,6 +3531,7 @@ module Google
|
|
|
3517
3531
|
@keep_with_next_suggested = args[:keep_with_next_suggested] if args.key?(:keep_with_next_suggested)
|
|
3518
3532
|
@line_spacing_suggested = args[:line_spacing_suggested] if args.key?(:line_spacing_suggested)
|
|
3519
3533
|
@named_style_type_suggested = args[:named_style_type_suggested] if args.key?(:named_style_type_suggested)
|
|
3534
|
+
@page_break_before_suggested = args[:page_break_before_suggested] if args.key?(:page_break_before_suggested)
|
|
3520
3535
|
@shading_suggestion_state = args[:shading_suggestion_state] if args.key?(:shading_suggestion_state)
|
|
3521
3536
|
@space_above_suggested = args[:space_above_suggested] if args.key?(:space_above_suggested)
|
|
3522
3537
|
@space_below_suggested = args[:space_below_suggested] if args.key?(:space_below_suggested)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DocsV1
|
|
18
18
|
# Version of the google-apis-docs_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.14.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220505"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1857,6 +1857,7 @@ module Google
|
|
|
1857
1857
|
property :keep_with_next, as: 'keepWithNext'
|
|
1858
1858
|
property :line_spacing, as: 'lineSpacing'
|
|
1859
1859
|
property :named_style_type, as: 'namedStyleType'
|
|
1860
|
+
property :page_break_before, as: 'pageBreakBefore'
|
|
1860
1861
|
property :shading, as: 'shading', class: Google::Apis::DocsV1::Shading, decorator: Google::Apis::DocsV1::Shading::Representation
|
|
1861
1862
|
|
|
1862
1863
|
property :space_above, as: 'spaceAbove', class: Google::Apis::DocsV1::Dimension, decorator: Google::Apis::DocsV1::Dimension::Representation
|
|
@@ -1888,6 +1889,7 @@ module Google
|
|
|
1888
1889
|
property :keep_with_next_suggested, as: 'keepWithNextSuggested'
|
|
1889
1890
|
property :line_spacing_suggested, as: 'lineSpacingSuggested'
|
|
1890
1891
|
property :named_style_type_suggested, as: 'namedStyleTypeSuggested'
|
|
1892
|
+
property :page_break_before_suggested, as: 'pageBreakBeforeSuggested'
|
|
1891
1893
|
property :shading_suggestion_state, as: 'shadingSuggestionState', class: Google::Apis::DocsV1::ShadingSuggestionState, decorator: Google::Apis::DocsV1::ShadingSuggestionState::Representation
|
|
1892
1894
|
|
|
1893
1895
|
property :space_above_suggested, as: 'spaceAboveSuggested'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-docs_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.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-
|
|
11
|
+
date: 2022-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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-docs_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-docs_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-docs_v1/v0.14.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-docs_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|