google-apis-sheets_v4 0.20.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/sheets_v4/gem_version.rb +3 -3
- data/lib/google/apis/sheets_v4/service.rb +16 -14
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 152359c2f6536061756ea28bb2641b7650c88df3b0222dc4f021fc17a868e9f0
|
4
|
+
data.tar.gz: fd44cb4505fef0701e1b98b87082893c6ca63d868b0b4703e1b4fabbcbd1e714
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 834b22fdb1051e29fe0dfdc27b0b6c38907a1b70c6e9aa828e61addf96f4b8e96ac0b5b1b29bbde3eff8817c4234c8d8c17618abf6fc64ddf3c66c4a320f6cd8
|
7
|
+
data.tar.gz: 847fd7871a5f26f18cb8a0b28d03ca58451b2caf73ef3de361d38c9186e4df166033e41fd95369fd6dc675396c08d687918b047d9fb8d0eb28912e62a7901196
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sheets_v4
|
2
2
|
|
3
|
+
### v0.22.0 (2023-02-15)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.12.0
|
6
|
+
|
7
|
+
### v0.21.0 (2022-12-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221216
|
10
|
+
|
3
11
|
### v0.20.0 (2022-10-28)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.11.0
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SheetsV4
|
18
18
|
# Version of the google-apis-sheets_v4 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221216"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -125,18 +125,19 @@ module Google
|
|
125
125
|
|
126
126
|
# Returns the spreadsheet at the given ID. The caller must specify the
|
127
127
|
# spreadsheet ID. By default, data within grids is not returned. You can include
|
128
|
-
# grid data in one of 2 ways: * Specify a field mask
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
128
|
+
# grid data in one of 2 ways: * Specify a [field mask](https://developers.google.
|
129
|
+
# com/sheets/api/guides/field-masks) listing your desired fields using the `
|
130
|
+
# fields` URL parameter in HTTP * Set the includeGridData URL parameter to true.
|
131
|
+
# If a field mask is set, the `includeGridData` parameter is ignored For large
|
132
|
+
# spreadsheets, as a best practice, retrieve only the specific spreadsheet
|
133
|
+
# fields that you want. To retrieve only subsets of spreadsheet data, use the
|
134
|
+
# ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/
|
135
|
+
# guides/concepts#cell). You can define a single cell (for example, `A1`) or
|
136
|
+
# multiple cells (for example, `A1:D5`). You can also get cells from other
|
137
|
+
# sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve
|
138
|
+
# multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`).
|
139
|
+
# Limiting the range returns only the portions of the spreadsheet that intersect
|
140
|
+
# the requested ranges.
|
140
141
|
# @param [String] spreadsheet_id
|
141
142
|
# The spreadsheet to request.
|
142
143
|
# @param [Boolean] include_grid_data
|
@@ -179,8 +180,9 @@ module Google
|
|
179
180
|
# dataFilters parameter. Multiple DataFilters can be specified. Specifying one
|
180
181
|
# or more data filters returns the portions of the spreadsheet that intersect
|
181
182
|
# ranges matched by any of the filters. By default, data within grids is not
|
182
|
-
# returned. You can include grid data one of 2 ways: * Specify a field mask
|
183
|
-
# listing your
|
183
|
+
# returned. You can include grid data one of 2 ways: * Specify a [field mask](
|
184
|
+
# https://developers.google.com/sheets/api/guides/field-masks) listing your
|
185
|
+
# desired fields using the `fields` URL parameter in HTTP * Set the
|
184
186
|
# includeGridData parameter to true. If a field mask is set, the `
|
185
187
|
# includeGridData` parameter is ignored For large spreadsheets, as a best
|
186
188
|
# practice, retrieve only the specific spreadsheet fields that you want.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-sheets_v4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.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:
|
11
|
+
date: 2023-02-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.
|
19
|
+
version: 0.11.0
|
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.
|
29
|
+
version: 0.11.0
|
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-sheets_v4/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sheets_v4/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sheets_v4
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Sheets API V4
|