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: b4a85c66cd7990509ebd1967e4c1361bae8d374efd6b8bb83f54b1dc11796d3b
4
- data.tar.gz: 8fb54639d3bd66ed2d9b8764c8b27eb81bac159eba6a61e195eb5cb82253296c
3
+ metadata.gz: a203713d4df16cd573cddcf3826fcf945aa78cbb4208549deddd3b940900142d
4
+ data.tar.gz: e10df400bd678e05f8db5a5ea83423642b5c7365993d043348e50cae2fcc4b71
5
5
  SHA512:
6
- metadata.gz: 7accd72dd76896a821f27a3f9aaef801fb19942fd0bf4f964a1cf736b051bff0e3ac6171c7e23f17cb140e234ac2b20647f651d11029bbc2669a3466abc0368f
7
- data.tar.gz: 84a9d9dde374c100426cf770f0e626e32118a5eb9e23446a7ba3e5644a1a7742173847743e490dbdfa9b65671db63a02f257f591f26b6d20ce37a2324f97db4b
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. The fraction consists of a decimal point
1265
- # followed by zero or more decimal digits. The string must contain at least one
1266
- # digit in either the integer or the fraction. The number formed by the sign,
1267
- # the integer and the fraction is referred to as the significand. The exponent
1268
- # consists of the character `e` (`U+0065`) or `E` (`U+0045`) followed by one or
1269
- # more decimal digits. Services **should** normalize decimal values before
1270
- # storing them by: - Removing an explicitly-provided `+` sign (`+2.5` -> `2.5`).
1271
- # - Replacing a zero-length integer value with `0` (`.5` -> `0.5`). - Coercing
1272
- # the exponent character to lower-case (`2.5E8` -> `2.5e8`). - Removing an
1273
- # explicitly-provided zero exponent (`2.5e0` -> `2.5`). Services **may** perform
1274
- # additional normalization based on its own needs and the internal decimal
1275
- # implementation selected, such as shifting the decimal point and exponent value
1276
- # together (example: `2.5e-1` <-> `0.25`). Additionally, services **may**
1277
- # preserve trailing zeroes in the fraction to indicate increased precision, but
1278
- # are not required to do so. Note that only the `.` character is supported to
1279
- # divide the integer and the fraction; `,` **should not** be supported
1280
- # regardless of locale. Additionally, thousand separators **should not** be
1281
- # supported. If a service does support them, values **must** be normalized. The
1282
- # ENBF grammar is: DecimalString = [Sign] Significand [Exponent]; Sign = '+' | '-
1283
- # '; Significand = Digits '.' | [Digits] '.' Digits; Exponent = ('e' | 'E') [
1284
- # Sign] Digits; Digits = ` '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' |
1285
- # '9' `; Services **should** clearly document the range of supported values, the
1286
- # maximum supported precision (total number of digits), and, if applicable, the
1287
- # scale (number of digits after the decimal point), as well as how it behaves
1288
- # when receiving out-of-bounds values. Services **may** choose to accept values
1289
- # passed as input even when the value has a higher precision or scale than the
1290
- # service supports, and **should** round the value to fit the supported scale.
1291
- # Alternatively, the service **may** error with `400 Bad Request` (`
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.8.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.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220726"
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.8.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-09-26 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-playdeveloperreporting_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.8.0
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: []