google-apis-fcmdata_v1beta1 0.17.0 → 0.19.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: 47b43b78b44d9a27d1bc823d6b10435e7525803107f3b94aca524f74d726d83f
4
- data.tar.gz: 2ade9492ae6d78cdc39ee947f37252a8d59fc68761c1fa30876e044b923028a6
3
+ metadata.gz: 4fc10f411a69c8d67b7fcb47f0f5e72b3efff08034eb7d84dacff7e05d4647f5
4
+ data.tar.gz: 340f6529b389a2441115692eb00c5c327d1476207599b52d5aa7548bef7426d5
5
5
  SHA512:
6
- metadata.gz: 3eed2fb1e8a565c7f49624816f54ef75af78a1d3aac3857949cb470d93cf76971597adb61df771b129cde0258b97d464d35977d350587e8e8e53ab389200b63b
7
- data.tar.gz: da75711560fe80dd031e66e8707005134d07f68eb1e60a29f999ad6e384d32edc8e65a812e49609ffb30dd8d3ea088c8b79d6588cd8745129ca8f0763db85324
6
+ metadata.gz: 8d7d155f231536f8ea4a4bc1601a0e47eaa11bf9008ac705d5af8b2c154210f53f76386923e698f08c48bc8e5aab2089b3d61f4a4a900d7c62e196d9f15c2c10
7
+ data.tar.gz: baef5e96f4a06333570c86fc04b7b7ba5125ccf710ba861e101a9c752b0f8f0556c57e40f07f9a5ca53cb7725a24db9dc2a0e8a399fc9aaada3eddc48411ab9a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-fcmdata_v1beta1
2
2
 
3
+ ### v0.19.0 (2025-05-04)
4
+
5
+ * Regenerated using generator version 0.17.0
6
+
7
+ ### v0.18.0 (2024-06-09)
8
+
9
+ * Regenerated from discovery document revision 20240605
10
+
3
11
  ### v0.17.0 (2024-05-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20240519
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://firebase.google.com/docs/cloud-messaging) ma
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -106,8 +106,9 @@ module Google
106
106
  # @return [Google::Apis::FcmdataV1beta1::GoogleFirebaseFcmDataV1beta1MessageOutcomePercents]
107
107
  attr_accessor :message_outcome_percents
108
108
 
109
- # Additional information about proxy notification delivery. All percentages are
110
- # calculated with countNotificationsAccepted as the denominator.
109
+ # Additional information about [proxy notification](https://firebase.google.com/
110
+ # docs/cloud-messaging/android/message-priority#proxy) delivery. All percentages
111
+ # are calculated with countNotificationsAccepted as the denominator.
111
112
  # Corresponds to the JSON property `proxyNotificationInsightPercents`
112
113
  # @return [Google::Apis::FcmdataV1beta1::GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents]
113
114
  attr_accessor :proxy_notification_insight_percents
@@ -242,6 +243,13 @@ module Google
242
243
  class GoogleFirebaseFcmDataV1beta1MessageOutcomePercents
243
244
  include Google::Apis::Core::Hashable
244
245
 
246
+ # The percentage of accepted messages that were [collapsed](https://firebase.
247
+ # google.com/docs/cloud-messaging/concept-options#collapsible_and_non-
248
+ # collapsible_messages) by another message.
249
+ # Corresponds to the JSON property `collapsed`
250
+ # @return [Float]
251
+ attr_accessor :collapsed
252
+
245
253
  # The percentage of all accepted messages that were successfully delivered to
246
254
  # the device.
247
255
  # Corresponds to the JSON property `delivered`
@@ -278,6 +286,13 @@ module Google
278
286
  # @return [Float]
279
287
  attr_accessor :dropped_too_many_pending_messages
280
288
 
289
+ # The percentage of accepted messages that expired because [Time To Live (TTL)](
290
+ # https://firebase.google.com/docs/cloud-messaging/concept-options#ttl) elapsed
291
+ # before the target device reconnected.
292
+ # Corresponds to the JSON property `droppedTtlExpired`
293
+ # @return [Float]
294
+ attr_accessor :dropped_ttl_expired
295
+
281
296
  # The percentage of messages accepted on this day that were not dropped and not
282
297
  # delivered, due to the device being disconnected (as of the end of the America/
283
298
  # Los_Angeles day when the message was sent to FCM). A portion of these messages
@@ -293,16 +308,19 @@ module Google
293
308
 
294
309
  # Update properties of this object
295
310
  def update!(**args)
311
+ @collapsed = args[:collapsed] if args.key?(:collapsed)
296
312
  @delivered = args[:delivered] if args.key?(:delivered)
297
313
  @dropped_app_force_stopped = args[:dropped_app_force_stopped] if args.key?(:dropped_app_force_stopped)
298
314
  @dropped_device_inactive = args[:dropped_device_inactive] if args.key?(:dropped_device_inactive)
299
315
  @dropped_too_many_pending_messages = args[:dropped_too_many_pending_messages] if args.key?(:dropped_too_many_pending_messages)
316
+ @dropped_ttl_expired = args[:dropped_ttl_expired] if args.key?(:dropped_ttl_expired)
300
317
  @pending = args[:pending] if args.key?(:pending)
301
318
  end
302
319
  end
303
320
 
304
- # Additional information about proxy notification delivery. All percentages are
305
- # calculated with countNotificationsAccepted as the denominator.
321
+ # Additional information about [proxy notification](https://firebase.google.com/
322
+ # docs/cloud-messaging/android/message-priority#proxy) delivery. All percentages
323
+ # are calculated with countNotificationsAccepted as the denominator.
306
324
  class GoogleFirebaseFcmDataV1beta1ProxyNotificationInsightPercents
307
325
  include Google::Apis::Core::Hashable
308
326
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FcmdataV1beta1
18
18
  # Version of the google-apis-fcmdata_v1beta1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240519"
25
+ REVISION = "20240605"
26
26
  end
27
27
  end
28
28
  end
@@ -128,10 +128,12 @@ module Google
128
128
  class GoogleFirebaseFcmDataV1beta1MessageOutcomePercents
129
129
  # @private
130
130
  class Representation < Google::Apis::Core::JsonRepresentation
131
+ property :collapsed, as: 'collapsed'
131
132
  property :delivered, as: 'delivered'
132
133
  property :dropped_app_force_stopped, as: 'droppedAppForceStopped'
133
134
  property :dropped_device_inactive, as: 'droppedDeviceInactive'
134
135
  property :dropped_too_many_pending_messages, as: 'droppedTooManyPendingMessages'
136
+ property :dropped_ttl_expired, as: 'droppedTtlExpired'
135
137
  property :pending, as: 'pending'
136
138
  end
137
139
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-fcmdata_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-05-26 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-fcmdata_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-fcmdata_v1beta1/v0.17.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-fcmdata_v1beta1/v0.19.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-fcmdata_v1beta1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
66
  requirements:
69
67
  - - ">="
70
68
  - !ruby/object:Gem::Version
71
- version: '2.7'
69
+ version: '3.1'
72
70
  required_rubygems_version: !ruby/object:Gem::Requirement
73
71
  requirements:
74
72
  - - ">="
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.6
79
- signing_key:
76
+ rubygems_version: 3.6.8
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Firebase Cloud Messaging Data API V1beta1
82
79
  test_files: []