Skip to content

Commit 857f9fc

Browse files
committed
Accept all options when sending a silent notification
1 parent 43f49b6 commit 857f9fc

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
---
66

7+
## [11.1.0](https://github.com/AndrewBarba/apns2/releases/tag/11.1.0)
8+
9+
1. Accept all options when sending a silent notification
10+
711
## [11.0.1](https://github.com/AndrewBarba/apns2/releases/tag/11.0.1)
812

913
1. Add back support for Node.js 16.x

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apns2",
3-
"version": "11.0.1",
3+
"version": "11.1.0",
44
"description": "Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.",
55
"author": "Andrew Barba <[email protected]>",
66
"main": "dist/index.js",

src/notifications/silent-notification.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { Notification, NotificationOptions, PushType, Priority } from './notification'
22

33
export class SilentNotification extends Notification {
4-
constructor(deviceToken: string, options: Pick<NotificationOptions, 'data'> = {}) {
4+
constructor(
5+
deviceToken: string,
6+
options: Omit<NotificationOptions, 'type' | 'alert' | 'priority' | 'contentAvailable'> = {}
7+
) {
58
super(deviceToken, {
69
contentAvailable: true,
710
type: PushType.background,

0 commit comments

Comments
 (0)