google-apis-fcm_v1 0.20.0 → 0.22.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/fcm_v1/classes.rb +16 -10
- data/lib/google/apis/fcm_v1/gem_version.rb +2 -2
- data/lib/google/apis/fcm_v1/representations.rb +1 -0
- 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: e02af7da113f300c6bef685a84463903ead1b588bb98f6facbfbc0015e029faf
|
4
|
+
data.tar.gz: a4c8c0446e678292700e4a10518f46dd736c4269a63e7fb4debf2b56f70efbd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c6cf3019db7cf3149454c9f208a5a5cd73830ced26b88ba71273b9cc24e2cb7337e3d1607497eeb651c08542553a743095df2c92ba5f3b3d94fc571d69841bd
|
7
|
+
data.tar.gz: c49721ae58ee94d88bf831ac16a827e23c0154d9afbc9103210c3f332a5945e8e586fd071d5209b1ab26de071f4bee45ad70a33fac39b1be6d6234fdace70fe3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-fcm_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2023-05-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230522
|
6
|
+
|
7
|
+
### v0.21.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230421
|
10
|
+
|
3
11
|
### v0.20.0 (2023-02-15)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.12.0
|
@@ -265,6 +265,11 @@ module Google
|
|
265
265
|
# @return [String]
|
266
266
|
attr_accessor :notification_priority
|
267
267
|
|
268
|
+
# Setting to control when a notification may be proxied.
|
269
|
+
# Corresponds to the JSON property `proxy`
|
270
|
+
# @return [String]
|
271
|
+
attr_accessor :proxy
|
272
|
+
|
268
273
|
# The sound to play when the device receives the notification. Supports "default"
|
269
274
|
# or the filename of a sound resource bundled in the app. Sound files must
|
270
275
|
# reside in /res/raw/.
|
@@ -357,6 +362,7 @@ module Google
|
|
357
362
|
@local_only = args[:local_only] if args.key?(:local_only)
|
358
363
|
@notification_count = args[:notification_count] if args.key?(:notification_count)
|
359
364
|
@notification_priority = args[:notification_priority] if args.key?(:notification_priority)
|
365
|
+
@proxy = args[:proxy] if args.key?(:proxy)
|
360
366
|
@sound = args[:sound] if args.key?(:sound)
|
361
367
|
@sticky = args[:sticky] if args.key?(:sticky)
|
362
368
|
@tag = args[:tag] if args.key?(:tag)
|
@@ -437,18 +443,18 @@ module Google
|
|
437
443
|
end
|
438
444
|
|
439
445
|
# Represents a color in the RGBA color space. This representation is designed
|
440
|
-
# for simplicity of conversion to
|
446
|
+
# for simplicity of conversion to and from color representations in various
|
441
447
|
# languages over compactness. For example, the fields of this representation can
|
442
448
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
443
449
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
444
450
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
445
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
451
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
446
452
|
# information about the absolute color space that should be used to interpret
|
447
|
-
# the RGB value
|
453
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
448
454
|
# applications should assume the sRGB color space. When color equality needs to
|
449
455
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
450
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
451
|
-
# 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.
|
452
458
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
453
459
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
454
460
|
# getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); ` public static
|
@@ -548,18 +554,18 @@ module Google
|
|
548
554
|
include Google::Apis::Core::Hashable
|
549
555
|
|
550
556
|
# Represents a color in the RGBA color space. This representation is designed
|
551
|
-
# for simplicity of conversion to
|
557
|
+
# for simplicity of conversion to and from color representations in various
|
552
558
|
# languages over compactness. For example, the fields of this representation can
|
553
559
|
# be trivially provided to the constructor of `java.awt.Color` in Java; it can
|
554
560
|
# also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
555
561
|
# method in iOS; and, with just a little work, it can be easily formatted into a
|
556
|
-
# CSS `rgba()` string in JavaScript. This reference page
|
562
|
+
# CSS `rgba()` string in JavaScript. This reference page does not have
|
557
563
|
# information about the absolute color space that should be used to interpret
|
558
|
-
# the RGB value
|
564
|
+
# the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default,
|
559
565
|
# applications should assume the sRGB color space. When color equality needs to
|
560
566
|
# be decided, implementations, unless documented otherwise, treat two colors as
|
561
|
-
# equal if all their red, green, blue, and alpha values each differ by at most
|
562
|
-
# 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.
|
563
569
|
# awt.Color fromProto(Color protocolor) ` float alpha = protocolor.hasAlpha() ?
|
564
570
|
# protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.
|
565
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.22.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 = "20230522"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -144,6 +144,7 @@ module Google
|
|
144
144
|
property :local_only, as: 'localOnly'
|
145
145
|
property :notification_count, as: 'notificationCount'
|
146
146
|
property :notification_priority, as: 'notificationPriority'
|
147
|
+
property :proxy, as: 'proxy'
|
147
148
|
property :sound, as: 'sound'
|
148
149
|
property :sticky, as: 'sticky'
|
149
150
|
property :tag, as: 'tag'
|
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.22.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-05-28 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.22.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: []
|