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

@firebase/messaging

Package Overview
Dependencies
Maintainers
4
Versions
3322
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@firebase/messaging - npm Package Compare versions

Comparing version 0.12.13-canary.4db3d3e7b to 0.12.13-canary.612335d76

2

dist/esm/index.esm2017.js

@@ -997,3 +997,3 @@ import '@firebase/installations';

const name = "@firebase/messaging";
const version = "0.12.13-canary.4db3d3e7b";
const version = "0.12.13-canary.612335d76";

@@ -1000,0 +1000,0 @@ /**

@@ -0,0 +0,0 @@ import '@firebase/installations';

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -27,4 +27,22 @@ /**

}
export interface NotificationPayloadInternal extends NotificationOptions {
interface NotificationAction {
action: string;
icon?: string;
title: string;
}
/**
* This interface defines experimental properties of NotificationOptions, that are not part of
* the interface in the generated DOM types at https://github.com/microsoft/TypeScript-DOM-lib-generator/blob/179bdd84a944933a3103f29c2274c9f5a857b693/baselines/dom.generated.d.ts#L1012
* https://developer.mozilla.org/en-US/docs/Web/API/Notification
*/
interface NotificationOptionsExperimental extends NotificationOptions {
readonly maxActions?: number;
readonly actions?: NotificationAction[];
readonly image?: string;
readonly renotify?: boolean;
readonly timestamp?: EpochTimeStamp;
readonly vibrate?: VibratePattern;
}
export interface NotificationPayloadInternal extends NotificationOptionsExperimental {
title: string;
click_action?: string;

@@ -48,1 +66,2 @@ icon?: string;

}
export {};

@@ -138,3 +138,3 @@ /**

*/
export declare type _FirebaseMessagingName = 'messaging';
export type _FirebaseMessagingName = 'messaging';
export { NextFn, Observer, Unsubscribe } from '@firebase/util';

@@ -141,0 +141,0 @@ declare module '@firebase/component' {

@@ -59,6 +59,6 @@ /**

type: string;
NONE: number;
AT_TARGET: number;
BUBBLING_PHASE: number;
CAPTURING_PHASE: number;
NONE: 0;
AT_TARGET: 2;
BUBBLING_PHASE: 3;
CAPTURING_PHASE: 1;
bubbles: boolean;

@@ -69,3 +69,3 @@ cancelable: boolean;

isTrusted: boolean;
eventPhase: number;
eventPhase: 0;
target: null;

@@ -72,0 +72,0 @@ currentTarget: null;

@@ -18,3 +18,3 @@ /**

import { SinonSpy, SinonStub } from 'sinon';
export declare type Stub<T extends (...args: any) => any> = SinonStub<Parameters<T>, ReturnType<T>>;
export declare type Spy<T extends (...args: any) => any> = SinonSpy<Parameters<T>, ReturnType<T>>;
export type Stub<T extends (...args: any) => any> = SinonStub<Parameters<T>, ReturnType<T>>;
export type Spy<T extends (...args: any) => any> = SinonSpy<Parameters<T>, ReturnType<T>>;

@@ -0,0 +0,0 @@ /**

@@ -1001,3 +1001,3 @@ 'use strict';

const name = "@firebase/messaging";
const version = "0.12.13-canary.4db3d3e7b";
const version = "0.12.13-canary.612335d76";

@@ -1004,0 +1004,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -27,4 +27,22 @@ /**

}
export interface NotificationPayloadInternal extends NotificationOptions {
interface NotificationAction {
action: string;
icon?: string;
title: string;
}
/**
* This interface defines experimental properties of NotificationOptions, that are not part of
* the interface in the generated DOM types at https://github.com/microsoft/TypeScript-DOM-lib-generator/blob/179bdd84a944933a3103f29c2274c9f5a857b693/baselines/dom.generated.d.ts#L1012
* https://developer.mozilla.org/en-US/docs/Web/API/Notification
*/
interface NotificationOptionsExperimental extends NotificationOptions {
readonly maxActions?: number;
readonly actions?: NotificationAction[];
readonly image?: string;
readonly renotify?: boolean;
readonly timestamp?: EpochTimeStamp;
readonly vibrate?: VibratePattern;
}
export interface NotificationPayloadInternal extends NotificationOptionsExperimental {
title: string;
click_action?: string;

@@ -48,1 +66,2 @@ icon?: string;

}
export {};

@@ -138,3 +138,3 @@ /**

*/
export declare type _FirebaseMessagingName = 'messaging';
export type _FirebaseMessagingName = 'messaging';
export { NextFn, Observer, Unsubscribe } from '@firebase/util';

@@ -141,0 +141,0 @@ declare module '@firebase/component' {

@@ -59,6 +59,6 @@ /**

type: string;
NONE: number;
AT_TARGET: number;
BUBBLING_PHASE: number;
CAPTURING_PHASE: number;
NONE: 0;
AT_TARGET: 2;
BUBBLING_PHASE: 3;
CAPTURING_PHASE: 1;
bubbles: boolean;

@@ -69,3 +69,3 @@ cancelable: boolean;

isTrusted: boolean;
eventPhase: number;
eventPhase: 0;
target: null;

@@ -72,0 +72,0 @@ currentTarget: null;

@@ -0,0 +0,0 @@ /**

@@ -18,3 +18,3 @@ /**

import { SinonSpy, SinonStub } from 'sinon';
export declare type Stub<T extends (...args: any) => any> = SinonStub<Parameters<T>, ReturnType<T>>;
export declare type Spy<T extends (...args: any) => any> = SinonSpy<Parameters<T>, ReturnType<T>>;
export type Stub<T extends (...args: any) => any> = SinonStub<Parameters<T>, ReturnType<T>>;
export type Spy<T extends (...args: any) => any> = SinonSpy<Parameters<T>, ReturnType<T>>;

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ /**

{
"name": "@firebase/messaging",
"version": "0.12.13-canary.4db3d3e7b",
"version": "0.12.13-canary.612335d76",
"description": "",

@@ -52,9 +52,9 @@ "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",

"peerDependencies": {
"@firebase/app": "0.10.15-canary.4db3d3e7b"
"@firebase/app": "0.10.15-canary.612335d76"
},
"dependencies": {
"@firebase/installations": "0.6.10-canary.4db3d3e7b",
"@firebase/messaging-interop-types": "0.2.2-canary.4db3d3e7b",
"@firebase/util": "1.10.1-canary.4db3d3e7b",
"@firebase/component": "0.6.10-canary.4db3d3e7b",
"@firebase/installations": "0.6.10-canary.612335d76",
"@firebase/messaging-interop-types": "0.2.2-canary.612335d76",
"@firebase/util": "1.10.1-canary.612335d76",
"@firebase/component": "0.6.10-canary.612335d76",
"idb": "7.1.1",

@@ -64,8 +64,8 @@ "tslib": "^2.1.0"

"devDependencies": {
"@firebase/app": "0.10.15-canary.4db3d3e7b",
"@firebase/app": "0.10.15-canary.612335d76",
"rollup": "2.79.1",
"rollup-plugin-typescript2": "0.31.2",
"@rollup/plugin-json": "4.1.0",
"ts-essentials": "9.3.0",
"typescript": "4.7.4"
"ts-essentials": "10.0.2",
"typescript": "5.5.4"
},

@@ -72,0 +72,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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