google-apis-playdeveloperreporting_v1beta1 0.8.0 → 0.9.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a203713d4df16cd573cddcf3826fcf945aa78cbb4208549deddd3b940900142d
|
4
|
+
data.tar.gz: e10df400bd678e05f8db5a5ea83423642b5c7365993d043348e50cae2fcc4b71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e04feef64f514aa66c2a9388ab778ee35db027a75682d15d8d712b7b4f4f4cc879fc62d438ef56ea7218430ecca181f8265116192d10d055ff717624682cff66
|
7
|
+
data.tar.gz: ace447aab85a0b8b050ecf66115eddca6ca7dbd566e11641f065dbd89052b4c17557494699cd38cd3dc551a5d5628f69ad398b0d0cbd5535b43743eec628132a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-playdeveloperreporting_v1beta1
|
2
2
|
|
3
|
+
### v0.9.0 (2022-10-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221024
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
3
8
|
### v0.8.0 (2022-09-21)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.10.0
|
@@ -1261,34 +1261,35 @@ module Google
|
|
1261
1261
|
# The decimal value, as a string. The string representation consists of an
|
1262
1262
|
# optional sign, `+` (`U+002B`) or `-` (`U+002D`), followed by a sequence of
|
1263
1263
|
# zero or more decimal digits ("the integer"), optionally followed by a fraction,
|
1264
|
-
# optionally followed by an exponent.
|
1265
|
-
#
|
1266
|
-
#
|
1267
|
-
#
|
1268
|
-
#
|
1269
|
-
#
|
1270
|
-
#
|
1271
|
-
#
|
1272
|
-
#
|
1273
|
-
#
|
1274
|
-
#
|
1275
|
-
#
|
1276
|
-
#
|
1277
|
-
#
|
1278
|
-
#
|
1279
|
-
#
|
1280
|
-
#
|
1281
|
-
# supported
|
1282
|
-
#
|
1283
|
-
#
|
1284
|
-
#
|
1285
|
-
# '
|
1286
|
-
#
|
1287
|
-
#
|
1288
|
-
#
|
1289
|
-
#
|
1290
|
-
#
|
1291
|
-
#
|
1264
|
+
# optionally followed by an exponent. An empty string **should** be interpreted
|
1265
|
+
# as `0`. The fraction consists of a decimal point followed by zero or more
|
1266
|
+
# decimal digits. The string must contain at least one digit in either the
|
1267
|
+
# integer or the fraction. The number formed by the sign, the integer and the
|
1268
|
+
# fraction is referred to as the significand. The exponent consists of the
|
1269
|
+
# character `e` (`U+0065`) or `E` (`U+0045`) followed by one or more decimal
|
1270
|
+
# digits. Services **should** normalize decimal values before storing them by: -
|
1271
|
+
# Removing an explicitly-provided `+` sign (`+2.5` -> `2.5`). - Replacing a zero-
|
1272
|
+
# length integer value with `0` (`.5` -> `0.5`). - Coercing the exponent
|
1273
|
+
# character to upper-case, with explicit sign (`2.5e8` -> `2.5E+8`). - Removing
|
1274
|
+
# an explicitly-provided zero exponent (`2.5E0` -> `2.5`). Services **may**
|
1275
|
+
# perform additional normalization based on its own needs and the internal
|
1276
|
+
# decimal implementation selected, such as shifting the decimal point and
|
1277
|
+
# exponent value together (example: `2.5E-1` <-> `0.25`). Additionally, services
|
1278
|
+
# **may** preserve trailing zeroes in the fraction to indicate increased
|
1279
|
+
# precision, but are not required to do so. Note that only the `.` character is
|
1280
|
+
# supported to divide the integer and the fraction; `,` **should not** be
|
1281
|
+
# supported regardless of locale. Additionally, thousand separators **should not*
|
1282
|
+
# * be supported. If a service does support them, values **must** be normalized.
|
1283
|
+
# The ENBF grammar is: DecimalString = '' | [Sign] Significand [Exponent]; Sign =
|
1284
|
+
# '+' | '-'; Significand = Digits '.' | [Digits] '.' Digits; Exponent = ('e' | '
|
1285
|
+
# E') [Sign] Digits; Digits = ` '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '
|
1286
|
+
# 8' | '9' `; Services **should** clearly document the range of supported values,
|
1287
|
+
# the maximum supported precision (total number of digits), and, if applicable,
|
1288
|
+
# the scale (number of digits after the decimal point), as well as how it
|
1289
|
+
# behaves when receiving out-of-bounds values. Services **may** choose to accept
|
1290
|
+
# values passed as input even when the value has a higher precision or scale
|
1291
|
+
# than the service supports, and **should** round the value to fit the supported
|
1292
|
+
# scale. Alternatively, the service **may** error with `400 Bad Request` (`
|
1292
1293
|
# INVALID_ARGUMENT` in gRPC) if precision would be lost. Services **should**
|
1293
1294
|
# error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if the service
|
1294
1295
|
# receives a value outside of the supported range.
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PlaydeveloperreportingV1beta1
|
18
18
|
# Version of the google-apis-playdeveloperreporting_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221024"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-playdeveloperreporting_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.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-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.
|
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.
|
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-playdeveloperreporting_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.9.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|