expo-server-sdk
Advanced tools
Comparing version 3.2.0 to 3.3.0
@@ -66,7 +66,11 @@ /// <reference types="node" /> | ||
badge?: number; | ||
channelId?: string; | ||
}; | ||
export declare type ExpoPushReceiptId = string; | ||
export declare type ExpoPushTicket = { | ||
declare type ExpoPushSuccessTicket = { | ||
status: 'ok'; | ||
id: ExpoPushReceiptId; | ||
}; | ||
declare type ExpoPushErrorTicket = ExpoPushErrorReceipt; | ||
export declare type ExpoPushTicket = ExpoPushSuccessTicket | ExpoPushErrorTicket; | ||
declare type ExpoPushSuccessReceipt = { | ||
@@ -73,0 +77,0 @@ status: 'ok'; |
{ | ||
"name": "expo-server-sdk", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"description": "Server side library for working with Expo using Node.js", | ||
@@ -5,0 +5,0 @@ "main": "build/ExpoClient.js", |
@@ -298,2 +298,3 @@ /** | ||
badge?: number; | ||
channelId?: string; | ||
}; | ||
@@ -303,6 +304,11 @@ | ||
export type ExpoPushTicket = { | ||
type ExpoPushSuccessTicket = { | ||
status: 'ok'; | ||
id: ExpoPushReceiptId; | ||
}; | ||
type ExpoPushErrorTicket = ExpoPushErrorReceipt; | ||
export type ExpoPushTicket = ExpoPushSuccessTicket | ExpoPushErrorTicket; | ||
type ExpoPushSuccessReceipt = { | ||
@@ -309,0 +315,0 @@ status: 'ok'; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39774
690