Skip to content

Commit

Permalink
feat(fcm): update the api
Browse files Browse the repository at this point in the history
#### fcm:v1

The following keys were added:
- schemas.AndroidNotification.properties.bypassProxyNotification.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Mar 15, 2022
1 parent 39cd4bd commit d9a7eb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/dyn/fcm_v1.projects.messages.html
Expand Up @@ -112,6 +112,7 @@ <h3>Method Details</h3>
&quot;A String&quot;,
],
&quot;bodyLocKey&quot;: &quot;A String&quot;, # The key to the body string in the app&#x27;s string resources to use to localize the body text to the user&#x27;s current localization. See [String Resources](https://goo.gl/NdFZGI) for more information.
&quot;bypassProxyNotification&quot;: True or False, # If set, display notifications delivered to the device will be handled by the app instead of the proxy.
&quot;channelId&quot;: &quot;A String&quot;, # The [notification&#x27;s channel id](https://developer.android.com/guide/topics/ui/notifiers/notifications#ManageChannels) (new in Android O). The app must create a channel with this channel ID before any notification with this channel ID is received. If you don&#x27;t send this channel ID in the request, or if the channel ID provided has not yet been created by the app, FCM uses the channel ID specified in the app manifest.
&quot;clickAction&quot;: &quot;A String&quot;, # The action associated with a user click on the notification. If specified, an activity with a matching intent filter is launched when a user clicks on the notification.
&quot;color&quot;: &quot;A String&quot;, # The notification&#x27;s icon color, expressed in #rrggbb format.
Expand Down Expand Up @@ -222,6 +223,7 @@ <h3>Method Details</h3>
&quot;A String&quot;,
],
&quot;bodyLocKey&quot;: &quot;A String&quot;, # The key to the body string in the app&#x27;s string resources to use to localize the body text to the user&#x27;s current localization. See [String Resources](https://goo.gl/NdFZGI) for more information.
&quot;bypassProxyNotification&quot;: True or False, # If set, display notifications delivered to the device will be handled by the app instead of the proxy.
&quot;channelId&quot;: &quot;A String&quot;, # The [notification&#x27;s channel id](https://developer.android.com/guide/topics/ui/notifiers/notifications#ManageChannels) (new in Android O). The app must create a channel with this channel ID before any notification with this channel ID is received. If you don&#x27;t send this channel ID in the request, or if the channel ID provided has not yet been created by the app, FCM uses the channel ID specified in the app manifest.
&quot;clickAction&quot;: &quot;A String&quot;, # The action associated with a user click on the notification. If specified, an activity with a matching intent filter is launched when a user clicks on the notification.
&quot;color&quot;: &quot;A String&quot;, # The notification&#x27;s icon color, expressed in #rrggbb format.
Expand Down
6 changes: 5 additions & 1 deletion googleapiclient/discovery_cache/documents/fcm.v1.json
Expand Up @@ -146,7 +146,7 @@
}
}
},
"revision": "20220228",
"revision": "20220307",
"rootUrl": "https://fcm.googleapis.com/",
"schemas": {
"AndroidConfig": {
Expand Down Expand Up @@ -230,6 +230,10 @@
"description": "The key to the body string in the app's string resources to use to localize the body text to the user's current localization. See [String Resources](https://goo.gl/NdFZGI) for more information.",
"type": "string"
},
"bypassProxyNotification": {
"description": "If set, display notifications delivered to the device will be handled by the app instead of the proxy.",
"type": "boolean"
},
"channelId": {
"description": "The [notification's channel id](https://developer.android.com/guide/topics/ui/notifiers/notifications#ManageChannels) (new in Android O). The app must create a channel with this channel ID before any notification with this channel ID is received. If you don't send this channel ID in the request, or if the channel ID provided has not yet been created by the app, FCM uses the channel ID specified in the app manifest.",
"type": "string"
Expand Down

0 comments on commit d9a7eb4

Please sign in to comment.