google-apis-playdeveloperreporting_v1alpha1 0.10.0 → 0.11.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: f87162e63e373284810486b4938fd9aed59685ea75308bd14bf9dbbb341b4261
4
- data.tar.gz: 33aa7d699f0bc380556e36c25f55d38848061a447adb33a8af766cb09fdec8b7
3
+ metadata.gz: 5d9ba0758fbfc8d3282898609cb6d6c642fd7fbfdbcf51b6113e28dc0a79a54d
4
+ data.tar.gz: 29de16d6df4f9e349c40ed605b48b12e3d7af44ebb8c4a39b0fabe36f2523420
5
5
  SHA512:
6
- metadata.gz: 90213eb9c20c14ddac4f129c25eea4b7a2c02796ec68cb63b25a3f2d617b51586cd7371a2d8dfa1babe2a471de1ea08a57ad6ca9ddb283fdf77d8a36f7236d0a
7
- data.tar.gz: 4876dd541a61861e1f44c7c54251f85ff16b32f2ca20b0aa24d45eba323069f52885b91cedfb33b63b1e15a86590b1f150a7ce774b0a13c7bb75850b3738c5eb
6
+ metadata.gz: e4924954c1d206f1e512386d516bd9e408ff811ec28a823f47fe368f7684482efc9fca1793123a3f17ad134075a0ef3a87ab2fb6ece552c449055167bce92ac4
7
+ data.tar.gz: f8e7a07ff7f6695a89b0de85d7eedad4dc39610076f1ec3f42421e13fbb97bda2dcfe4e89510b9b27d3ee791215af38592abfe564a70ddf586216ad0282c112c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-playdeveloperreporting_v1alpha1
2
2
 
3
+ ### v0.11.0 (2022-10-31)
4
+
5
+ * Regenerated from discovery document revision 20221024
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.10.0 (2022-09-22)
4
9
 
5
10
  * Regenerated using generator version 0.10.0
@@ -1594,34 +1594,35 @@ module Google
1594
1594
  # The decimal value, as a string. The string representation consists of an
1595
1595
  # optional sign, `+` (`U+002B`) or `-` (`U+002D`), followed by a sequence of
1596
1596
  # zero or more decimal digits ("the integer"), optionally followed by a fraction,
1597
- # optionally followed by an exponent. The fraction consists of a decimal point
1598
- # followed by zero or more decimal digits. The string must contain at least one
1599
- # digit in either the integer or the fraction. The number formed by the sign,
1600
- # the integer and the fraction is referred to as the significand. The exponent
1601
- # consists of the character `e` (`U+0065`) or `E` (`U+0045`) followed by one or
1602
- # more decimal digits. Services **should** normalize decimal values before
1603
- # storing them by: - Removing an explicitly-provided `+` sign (`+2.5` -> `2.5`).
1604
- # - Replacing a zero-length integer value with `0` (`.5` -> `0.5`). - Coercing
1605
- # the exponent character to lower-case (`2.5E8` -> `2.5e8`). - Removing an
1606
- # explicitly-provided zero exponent (`2.5e0` -> `2.5`). Services **may** perform
1607
- # additional normalization based on its own needs and the internal decimal
1608
- # implementation selected, such as shifting the decimal point and exponent value
1609
- # together (example: `2.5e-1` <-> `0.25`). Additionally, services **may**
1610
- # preserve trailing zeroes in the fraction to indicate increased precision, but
1611
- # are not required to do so. Note that only the `.` character is supported to
1612
- # divide the integer and the fraction; `,` **should not** be supported
1613
- # regardless of locale. Additionally, thousand separators **should not** be
1614
- # supported. If a service does support them, values **must** be normalized. The
1615
- # ENBF grammar is: DecimalString = [Sign] Significand [Exponent]; Sign = '+' | '-
1616
- # '; Significand = Digits '.' | [Digits] '.' Digits; Exponent = ('e' | 'E') [
1617
- # Sign] Digits; Digits = ` '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' |
1618
- # '9' `; Services **should** clearly document the range of supported values, the
1619
- # maximum supported precision (total number of digits), and, if applicable, the
1620
- # scale (number of digits after the decimal point), as well as how it behaves
1621
- # when receiving out-of-bounds values. Services **may** choose to accept values
1622
- # passed as input even when the value has a higher precision or scale than the
1623
- # service supports, and **should** round the value to fit the supported scale.
1624
- # Alternatively, the service **may** error with `400 Bad Request` (`
1597
+ # optionally followed by an exponent. An empty string **should** be interpreted
1598
+ # as `0`. The fraction consists of a decimal point followed by zero or more
1599
+ # decimal digits. The string must contain at least one digit in either the
1600
+ # integer or the fraction. The number formed by the sign, the integer and the
1601
+ # fraction is referred to as the significand. The exponent consists of the
1602
+ # character `e` (`U+0065`) or `E` (`U+0045`) followed by one or more decimal
1603
+ # digits. Services **should** normalize decimal values before storing them by: -
1604
+ # Removing an explicitly-provided `+` sign (`+2.5` -> `2.5`). - Replacing a zero-
1605
+ # length integer value with `0` (`.5` -> `0.5`). - Coercing the exponent
1606
+ # character to upper-case, with explicit sign (`2.5e8` -> `2.5E+8`). - Removing
1607
+ # an explicitly-provided zero exponent (`2.5E0` -> `2.5`). Services **may**
1608
+ # perform additional normalization based on its own needs and the internal
1609
+ # decimal implementation selected, such as shifting the decimal point and
1610
+ # exponent value together (example: `2.5E-1` <-> `0.25`). Additionally, services
1611
+ # **may** preserve trailing zeroes in the fraction to indicate increased
1612
+ # precision, but are not required to do so. Note that only the `.` character is
1613
+ # supported to divide the integer and the fraction; `,` **should not** be
1614
+ # supported regardless of locale. Additionally, thousand separators **should not*
1615
+ # * be supported. If a service does support them, values **must** be normalized.
1616
+ # The ENBF grammar is: DecimalString = '' | [Sign] Significand [Exponent]; Sign =
1617
+ # '+' | '-'; Significand = Digits '.' | [Digits] '.' Digits; Exponent = ('e' | '
1618
+ # E') [Sign] Digits; Digits = ` '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '
1619
+ # 8' | '9' `; Services **should** clearly document the range of supported values,
1620
+ # the maximum supported precision (total number of digits), and, if applicable,
1621
+ # the scale (number of digits after the decimal point), as well as how it
1622
+ # behaves when receiving out-of-bounds values. Services **may** choose to accept
1623
+ # values passed as input even when the value has a higher precision or scale
1624
+ # than the service supports, and **should** round the value to fit the supported
1625
+ # scale. Alternatively, the service **may** error with `400 Bad Request` (`
1625
1626
  # INVALID_ARGUMENT` in gRPC) if precision would be lost. Services **should**
1626
1627
  # error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if the service
1627
1628
  # receives a value outside of the supported range.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PlaydeveloperreportingV1alpha1
18
18
  # Version of the google-apis-playdeveloperreporting_v1alpha1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.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_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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-11-07 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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []