@maxim_mazurok/gapi.client.fcmdata-v1beta1 0.0.20240530 → 0.0.20240602
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.
- package/index.d.ts +5 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://fcmdata.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240602
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -71,6 +71,8 @@ declare namespace gapi.client {
|
|
|
71
71
|
priorityLowered?: number;
|
|
72
72
|
}
|
|
73
73
|
interface GoogleFirebaseFcmDataV1beta1MessageOutcomePercents {
|
|
74
|
+
/** 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. */
|
|
75
|
+
collapsed?: number;
|
|
74
76
|
/** The percentage of all accepted messages that were successfully delivered to the device. */
|
|
75
77
|
delivered?: number;
|
|
76
78
|
/** 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. */
|
|
@@ -79,6 +81,8 @@ declare namespace gapi.client {
|
|
|
79
81
|
droppedDeviceInactive?: number;
|
|
80
82
|
/** 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. */
|
|
81
83
|
droppedTooManyPendingMessages?: number;
|
|
84
|
+
/** 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. */
|
|
85
|
+
droppedTtlExpired?: number;
|
|
82
86
|
/** 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. */
|
|
83
87
|
pending?: number;
|
|
84
88
|
}
|