google-apis-fcm_v1 0.21.0 → 0.23.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/fcm_v1/classes.rb +10 -10
- data/lib/google/apis/fcm_v1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 905832057cfa630d57bf421ea4a0f899923f2ea4df537a45019fe9b10c4f00c2
|
4
|
+
data.tar.gz: 7fd5834b980d6688b3db163c26c2a2220c7f7fd3bbc7b4b67b345ae57bd24fd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f80795315532e3903a610a7dec77f5a41717226c773821b1351e86c9320a49feedda6fb53abe27e7a4682d0f655c474dfdae03156ec098fc4b2d4d63663692f
|
7
|
+
data.tar.gz: 167e0bf1a420dcc74d22380504fab0180708d7959f72a7afcb8d1c0184014fd67e2e32f6c4e78ec2f4069ec1af8ca1ce9b4757835d93d89d3f385d75c0e1782f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-fcm_v1
|
2
2
|
|
3
|
+
### v0.23.0 (2023-06-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230609
|
6
|
+
|
7
|
+
### v0.22.0 (2023-05-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230522
|
10
|
+
|
3
11
|
### v0.21.0 (2023-04-30)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230421
|
@@ -443,18 +443,18 @@ module Google
|
|
443
443
|
end
|
444
444
|
|
445
445
|
# Represents a color in the RGBA color space. This representation is designed
|
446
|
-
# for simplicity of conversion to
|
446
|
+
# for simplicity of conversion to and from color representations in various
|
447
447
|
# languages over compactness. For example, the fields of this representation can
|
448
448
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
449
449
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
450
450
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
451
|
-
# CSS `rgba()` string in JavaScript. This reference page doesn't
|
451
|
+
# CSS `rgba()` string in JavaScript. This reference page doesn't have
|
452
452
|
# information about the absolute color space that should be used to interpret
|
453
|
-
# the RGB value
|
453
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
454
454
|
# applications should assume the sRGB color space. When color equality needs to
|
455
455
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
456
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
457
|
-
# 1e-5
|
456
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
457
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
458
458
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
459
459
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
460
460
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -554,18 +554,18 @@ module Google
|
|
554
554
|
include Google::Apis::Core::Hashable
|
555
555
|
|
556
556
|
# Represents a color in the RGBA color space. This representation is designed
|
557
|
-
# for simplicity of conversion to
|
557
|
+
# for simplicity of conversion to and from color representations in various
|
558
558
|
# languages over compactness. For example, the fields of this representation can
|
559
559
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
560
560
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
561
561
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
562
|
-
# CSS `rgba()` string in JavaScript. This reference page doesn't
|
562
|
+
# CSS `rgba()` string in JavaScript. This reference page doesn't have
|
563
563
|
# information about the absolute color space that should be used to interpret
|
564
|
-
# the RGB value
|
564
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
565
565
|
# applications should assume the sRGB color space. When color equality needs to
|
566
566
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
567
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
568
|
-
# 1e-5
|
567
|
+
# equal if all their red, green, blue, and alpha values each differ by at most `
|
568
|
+
# 1e-5`. Example (Java): import com.google.type.Color; // ... public static java.
|
569
569
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
570
570
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
571
571
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FcmV1
|
18
18
|
# Version of the google-apis-fcm_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230609"
|
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-fcm_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.23.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: 2023-
|
11
|
+
date: 2023-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-fcm_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-fcm_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-fcm_v1/v0.23.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-fcm_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|