Skip to content

Commit f7c50fd

Browse files
feat(fcmdata): update the api
#### fcmdata:v1beta1 The following keys were added: - schemas.GoogleFirebaseFcmDataV1beta1MessageOutcomePercents.properties.collapsed (Total Keys: 2) - schemas.GoogleFirebaseFcmDataV1beta1MessageOutcomePercents.properties.droppedTtlExpired (Total Keys: 2)
1 parent a06827e commit f7c50fd

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

docs/dyn/fcmdata_v1beta1.projects.androidApps.deliveryData.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,12 @@ <h3>Method Details</h3>
124124
&quot;priorityLowered&quot;: 3.14, # The percentage of accepted messages that had their priority lowered from high to normal. See [documentation for setting message priority](https://firebase.google.com/docs/cloud-messaging/android/message-priority).
125125
},
126126
&quot;messageOutcomePercents&quot;: { # Percentage breakdown of message delivery outcomes. These categories are mutually exclusive. All percentages are calculated with countMessagesAccepted as the denominator. These categories may not account for all message outcomes. # Mutually exclusive breakdown of message delivery outcomes.
127+
&quot;collapsed&quot;: 3.14, # The percentage of accepted messages that were [collapsed](https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages) by another message.
127128
&quot;delivered&quot;: 3.14, # The percentage of all accepted messages that were successfully delivered to the device.
128129
&quot;droppedAppForceStopped&quot;: 3.14, # The percentage of accepted messages that were dropped because the application was force stopped on the device at the time of delivery and retries were unsuccessful.
129130
&quot;droppedDeviceInactive&quot;: 3.14, # The percentage of accepted messages that were dropped because the target device is inactive. FCM will drop messages if the target device is deemed inactive by our servers. If a device does reconnect, we call [OnDeletedMessages()](https://firebase.google.com/docs/cloud-messaging/android/receive#override-ondeletedmessages) in our SDK instead of delivering the messages.
130131
&quot;droppedTooManyPendingMessages&quot;: 3.14, # The percentage of accepted messages that were dropped due to [too many undelivered non-collapsible messages](https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages). Specifically, each app instance can only have 100 pending messages stored on our servers for a device which is disconnected. When that device reconnects, those messages are delivered. When there are more than the maximum pending messages, we call [OnDeletedMessages()](https://firebase.google.com/docs/cloud-messaging/android/receive#override-ondeletedmessages) in our SDK instead of delivering the messages.
132+
&quot;droppedTtlExpired&quot;: 3.14, # The percentage of accepted messages that expired because [Time To Live (TTL)](https://firebase.google.com/docs/cloud-messaging/concept-options#ttl) elapsed before the target device reconnected.
131133
&quot;pending&quot;: 3.14, # The percentage of messages accepted on this day that were not dropped and not delivered, due to the device being disconnected (as of the end of the America/Los_Angeles day when the message was sent to FCM). A portion of these messages will be delivered the next day when the device connects but others may be destined to devices that ultimately never reconnect.
132134
},
133135
&quot;proxyNotificationInsightPercents&quot;: { # Additional information about proxy notification delivery. All percentages are calculated with countNotificationsAccepted as the denominator. # Additional insights about proxy notification delivery.

googleapiclient/discovery_cache/documents/fcmdata.v1beta1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
}
155155
}
156156
},
157-
"revision": "20240526",
157+
"revision": "20240602",
158158
"rootUrl": "https://fcmdata.googleapis.com/",
159159
"schemas": {
160160
"GoogleFirebaseFcmDataV1beta1AndroidDeliveryData": {
@@ -279,6 +279,11 @@
279279
"description": "Percentage breakdown of message delivery outcomes. These categories are mutually exclusive. All percentages are calculated with countMessagesAccepted as the denominator. These categories may not account for all message outcomes.",
280280
"id": "GoogleFirebaseFcmDataV1beta1MessageOutcomePercents",
281281
"properties": {
282+
"collapsed": {
283+
"description": "The percentage of accepted messages that were [collapsed](https://firebase.google.com/docs/cloud-messaging/concept-options#collapsible_and_non-collapsible_messages) by another message.",
284+
"format": "float",
285+
"type": "number"
286+
},
282287
"delivered": {
283288
"description": "The percentage of all accepted messages that were successfully delivered to the device.",
284289
"format": "float",
@@ -299,6 +304,11 @@
299304
"format": "float",
300305
"type": "number"
301306
},
307+
"droppedTtlExpired": {
308+
"description": "The percentage of accepted messages that expired because [Time To Live (TTL)](https://firebase.google.com/docs/cloud-messaging/concept-options#ttl) elapsed before the target device reconnected.",
309+
"format": "float",
310+
"type": "number"
311+
},
302312
"pending": {
303313
"description": "The percentage of messages accepted on this day that were not dropped and not delivered, due to the device being disconnected (as of the end of the America/Los_Angeles day when the message was sent to FCM). A portion of these messages will be delivered the next day when the device connects but others may be destined to devices that ultimately never reconnect.",
304314
"format": "float",

0 commit comments

Comments
 (0)