google-apis-fcm_v1 0.36.0 → 0.37.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: 1de1538694429e5dfa198198ee5e3d8740e9ca69549a11c7d028f19e52bac8ae
4
- data.tar.gz: 61dff372504d78f0eb1d0a5c2f35ad47710be0da137ef74c2e47702508f893c2
3
+ metadata.gz: 5f47128bcb01bc7d6b0366648a95f4d3010db13ba7d4663766a946076800f6b3
4
+ data.tar.gz: b0be34164823aadd689ca663e6a0d20dea0dfbe0e7ba9c21be5ee209d0e0bf88
5
5
  SHA512:
6
- metadata.gz: 7f45020de9eed1c8654bdf48de47c59dd2a2c81b3cd133567b5846b05ddf83d3a90ba74bcc0aae628e4971641b4961cf99fb91214e948cc227fe40f1d37412b9
7
- data.tar.gz: 7480ca8a56dab11e1ea9999dd17022aa9a9004bf26f6e5dd59c7f137df9edbbb18d3af7df1011fb3ffae8191777b6064b575b98d4cfac77689f42cc50cc13dc4
6
+ metadata.gz: 3d0a68426c49df20a5226543c74b2688623a335338911d5f2150fa426be9dccaf137614dafc798a0ed93ed9e525cb0d1aab68c8723bce92afdd86e761ecfa6a5
7
+ data.tar.gz: be709f742d58ad0c6cb1f11cb34bf2f9b2f385144fb06153808cbdf38656d27c08e2427c4272afc8167c2e080ccfd5b1e220da3fdcfce3d8d9e98379fe5ef249
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Release history for google-apis-fcm_v1
2
2
 
3
- ### v0.36.0 (2026-06-14)
3
+ ### v0.37.0 (2026-06-28)
4
4
 
5
- * Regenerated from discovery document revision 20260529
5
+ * Regenerated from discovery document revision 20260619
6
+
7
+ ### v0.36.0 (2026-06-21)
8
+
9
+ * Regenerated from discovery document revision 20260605
6
10
  * Regenerated using generator version 0.19.0
7
11
 
8
12
  ### v0.35.0 (2026-03-15)
@@ -642,9 +642,9 @@ module Google
642
642
  # @return [Google::Apis::FcmV1::Color]
643
643
  attr_accessor :color
644
644
 
645
- # Required. Along with `light_on_duration `, define the blink rate of LED
646
- # flashes. Resolution defined by [proto.Duration](https://developers.google.com/
647
- # protocol-buffers/docs/reference/google.protobuf#google.protobuf.Duration)
645
+ # Required. Along with `light_on_duration`, define the blink rate of LED flashes.
646
+ # Resolution defined by [proto.Duration](https://developers.google.com/protocol-
647
+ # buffers/docs/reference/google.protobuf#google.protobuf.Duration)
648
648
  # Corresponds to the JSON property `lightOffDuration`
649
649
  # @return [String]
650
650
  attr_accessor :light_off_duration
@@ -703,6 +703,11 @@ module Google
703
703
  # @return [Google::Apis::FcmV1::FcmOptions]
704
704
  attr_accessor :fcm_options
705
705
 
706
+ # Firebase Installation ID to send a message to.
707
+ # Corresponds to the JSON property `fid`
708
+ # @return [String]
709
+ attr_accessor :fid
710
+
706
711
  # Output Only. The identifier of the message sent, in the format of `projects/*/
707
712
  # messages/`message_id``.
708
713
  # Corresponds to the JSON property `name`
@@ -714,7 +719,9 @@ module Google
714
719
  # @return [Google::Apis::FcmV1::Notification]
715
720
  attr_accessor :notification
716
721
 
717
- # Registration token to send a message to.
722
+ # Deprecated: Use `fid` instead. Registration token to send a message to. During
723
+ # the transition period, this field also accepts a Firebase Installation ID (FID)
724
+ # .
718
725
  # Corresponds to the JSON property `token`
719
726
  # @return [String]
720
727
  attr_accessor :token
@@ -741,6 +748,7 @@ module Google
741
748
  @condition = args[:condition] if args.key?(:condition)
742
749
  @data = args[:data] if args.key?(:data)
743
750
  @fcm_options = args[:fcm_options] if args.key?(:fcm_options)
751
+ @fid = args[:fid] if args.key?(:fid)
744
752
  @name = args[:name] if args.key?(:name)
745
753
  @notification = args[:notification] if args.key?(:notification)
746
754
  @token = args[:token] if args.key?(:token)
@@ -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.36.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260529"
25
+ REVISION = "20260619"
26
26
  end
27
27
  end
28
28
  end
@@ -216,6 +216,7 @@ module Google
216
216
  hash :data, as: 'data'
217
217
  property :fcm_options, as: 'fcmOptions', class: Google::Apis::FcmV1::FcmOptions, decorator: Google::Apis::FcmV1::FcmOptions::Representation
218
218
 
219
+ property :fid, as: 'fid'
219
220
  property :name, as: 'name'
220
221
  property :notification, as: 'notification', class: Google::Apis::FcmV1::Notification, decorator: Google::Apis::FcmV1::Notification::Representation
221
222
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-fcm_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-fcm_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-fcm_v1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-fcm_v1/v0.37.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-fcm_v1
62
62
  rdoc_options: []
63
63
  require_paths: