Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

expo-server-sdk

Package Overview
Dependencies
Maintainers
17
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-server-sdk - npm Package Compare versions

Comparing version 3.2.0 to 3.3.0

6

build/ExpoClient.d.ts

@@ -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';

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc