google-apis-playdeveloperreporting_v1alpha1 0.9.0 → 0.11.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d9ba0758fbfc8d3282898609cb6d6c642fd7fbfdbcf51b6113e28dc0a79a54d
|
4
|
+
data.tar.gz: 29de16d6df4f9e349c40ed605b48b12e3d7af44ebb8c4a39b0fabe36f2523420
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4924954c1d206f1e512386d516bd9e408ff811ec28a823f47fe368f7684482efc9fca1793123a3f17ad134075a0ef3a87ab2fb6ece552c449055167bce92ac4
|
7
|
+
data.tar.gz: f8e7a07ff7f6695a89b0de85d7eedad4dc39610076f1ec3f42421e13fbb97bda2dcfe4e89510b9b27d3ee791215af38592abfe564a70ddf586216ad0282c112c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
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
|
+
|
8
|
+
### v0.10.0 (2022-09-22)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.10.0
|
11
|
+
|
3
12
|
### v0.9.0 (2022-09-17)
|
4
13
|
|
5
14
|
* Unspecified changes
|
@@ -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.
|
1598
|
-
#
|
1599
|
-
#
|
1600
|
-
#
|
1601
|
-
#
|
1602
|
-
#
|
1603
|
-
#
|
1604
|
-
#
|
1605
|
-
#
|
1606
|
-
#
|
1607
|
-
#
|
1608
|
-
#
|
1609
|
-
#
|
1610
|
-
#
|
1611
|
-
#
|
1612
|
-
#
|
1613
|
-
#
|
1614
|
-
# supported
|
1615
|
-
#
|
1616
|
-
#
|
1617
|
-
#
|
1618
|
-
# '
|
1619
|
-
#
|
1620
|
-
#
|
1621
|
-
#
|
1622
|
-
#
|
1623
|
-
#
|
1624
|
-
#
|
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.
|
19
|
+
GEM_VERSION = "0.11.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_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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.
|
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.
|
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.
|
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: []
|