Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
134
node_modules/@firebase/messaging-compat/dist/esm/index.esm2017.js
generated
vendored
Normal file
134
node_modules/@firebase/messaging-compat/dist/esm/index.esm2017.js
generated
vendored
Normal file
|
@ -0,0 +1,134 @@
|
|||
import firebase from '@firebase/app-compat';
|
||||
import { Component } from '@firebase/component';
|
||||
import { getToken, deleteToken, onMessage } from '@firebase/messaging';
|
||||
import { isIndexedDBAvailable, areCookiesEnabled } from '@firebase/util';
|
||||
import { onBackgroundMessage } from '@firebase/messaging/sw';
|
||||
|
||||
const name = "@firebase/messaging-compat";
|
||||
const version = "0.2.13";
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
function isSupported() {
|
||||
if (self && 'ServiceWorkerGlobalScope' in self) {
|
||||
// Running in ServiceWorker context
|
||||
return isSwSupported();
|
||||
}
|
||||
else {
|
||||
// Assume we are in the window context.
|
||||
return isWindowSupported();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Checks to see if the required APIs exist.
|
||||
* Unlike the modular version, it does not check if IndexedDB.open() is allowed
|
||||
* in order to keep isSupported() synchronous and maintain v8 compatibility.
|
||||
*/
|
||||
function isWindowSupported() {
|
||||
return (typeof window !== 'undefined' &&
|
||||
isIndexedDBAvailable() &&
|
||||
areCookiesEnabled() &&
|
||||
'serviceWorker' in navigator &&
|
||||
'PushManager' in window &&
|
||||
'Notification' in window &&
|
||||
'fetch' in window &&
|
||||
ServiceWorkerRegistration.prototype.hasOwnProperty('showNotification') &&
|
||||
PushSubscription.prototype.hasOwnProperty('getKey'));
|
||||
}
|
||||
/**
|
||||
* Checks to see if the required APIs exist within SW Context.
|
||||
*/
|
||||
function isSwSupported() {
|
||||
return (isIndexedDBAvailable() &&
|
||||
'PushManager' in self &&
|
||||
'Notification' in self &&
|
||||
ServiceWorkerRegistration.prototype.hasOwnProperty('showNotification') &&
|
||||
PushSubscription.prototype.hasOwnProperty('getKey'));
|
||||
}
|
||||
class MessagingCompatImpl {
|
||||
constructor(app, _delegate) {
|
||||
this.app = app;
|
||||
this._delegate = _delegate;
|
||||
this.app = app;
|
||||
this._delegate = _delegate;
|
||||
}
|
||||
async getToken(options) {
|
||||
return getToken(this._delegate, options);
|
||||
}
|
||||
async deleteToken() {
|
||||
return deleteToken(this._delegate);
|
||||
}
|
||||
onMessage(nextOrObserver) {
|
||||
return onMessage(this._delegate, nextOrObserver);
|
||||
}
|
||||
onBackgroundMessage(nextOrObserver) {
|
||||
return onBackgroundMessage(this._delegate, nextOrObserver);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
const messagingCompatFactory = (container) => {
|
||||
if (self && 'ServiceWorkerGlobalScope' in self) {
|
||||
// in sw
|
||||
return new MessagingCompatImpl(container.getProvider('app-compat').getImmediate(), container.getProvider('messaging-sw').getImmediate());
|
||||
}
|
||||
else {
|
||||
// in window
|
||||
return new MessagingCompatImpl(container.getProvider('app-compat').getImmediate(), container.getProvider('messaging').getImmediate());
|
||||
}
|
||||
};
|
||||
const NAMESPACE_EXPORTS = {
|
||||
isSupported
|
||||
};
|
||||
function registerMessagingCompat() {
|
||||
firebase.INTERNAL.registerComponent(new Component('messaging-compat', messagingCompatFactory, "PUBLIC" /* ComponentType.PUBLIC */).setServiceProps(NAMESPACE_EXPORTS));
|
||||
}
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
registerMessagingCompat();
|
||||
firebase.registerVersion(name, version);
|
||||
//# sourceMappingURL=index.esm2017.js.map
|
1
node_modules/@firebase/messaging-compat/dist/esm/index.esm2017.js.map
generated
vendored
Normal file
1
node_modules/@firebase/messaging-compat/dist/esm/index.esm2017.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/@firebase/messaging-compat/dist/esm/package.json
generated
vendored
Normal file
1
node_modules/@firebase/messaging-compat/dist/esm/package.json
generated
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
{"type":"module"}
|
31
node_modules/@firebase/messaging-compat/dist/esm/src/index.d.ts
generated
vendored
Normal file
31
node_modules/@firebase/messaging-compat/dist/esm/src/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { MessagingCompat } from './messaging-compat';
|
||||
/**
|
||||
* Define extension behavior of `registerMessaging`
|
||||
*/
|
||||
declare module '@firebase/app-compat' {
|
||||
interface FirebaseNamespace {
|
||||
messaging: {
|
||||
(app?: FirebaseApp): MessagingCompat;
|
||||
isSupported(): boolean;
|
||||
};
|
||||
}
|
||||
interface FirebaseApp {
|
||||
messaging(): MessagingCompat;
|
||||
}
|
||||
}
|
41
node_modules/@firebase/messaging-compat/dist/esm/src/messaging-compat.d.ts
generated
vendored
Normal file
41
node_modules/@firebase/messaging-compat/dist/esm/src/messaging-compat.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { FirebaseApp as AppCompat, _FirebaseService } from '@firebase/app-compat';
|
||||
import { Messaging, MessagePayload } from '@firebase/messaging';
|
||||
import { NextFn, Observer, Unsubscribe } from '@firebase/util';
|
||||
export interface MessagingCompat {
|
||||
getToken(options?: {
|
||||
vapidKey?: string;
|
||||
serviceWorkerRegistration?: ServiceWorkerRegistration;
|
||||
}): Promise<string>;
|
||||
deleteToken(): Promise<boolean>;
|
||||
onMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
onBackgroundMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
}
|
||||
export declare function isSupported(): boolean;
|
||||
export declare class MessagingCompatImpl implements MessagingCompat, _FirebaseService {
|
||||
readonly app: AppCompat;
|
||||
readonly _delegate: Messaging;
|
||||
constructor(app: AppCompat, _delegate: Messaging);
|
||||
getToken(options?: {
|
||||
vapidKey?: string;
|
||||
serviceWorkerRegistration?: ServiceWorkerRegistration;
|
||||
}): Promise<string>;
|
||||
deleteToken(): Promise<boolean>;
|
||||
onMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
onBackgroundMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
}
|
23
node_modules/@firebase/messaging-compat/dist/esm/src/registerMessagingCompat.d.ts
generated
vendored
Normal file
23
node_modules/@firebase/messaging-compat/dist/esm/src/registerMessagingCompat.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { MessagingCompatImpl } from './messaging-compat';
|
||||
declare module '@firebase/component' {
|
||||
interface NameServiceMapping {
|
||||
'messaging-compat': MessagingCompatImpl;
|
||||
}
|
||||
}
|
||||
export declare function registerMessagingCompat(): void;
|
20
node_modules/@firebase/messaging-compat/dist/esm/test/fakes.d.ts
generated
vendored
Normal file
20
node_modules/@firebase/messaging-compat/dist/esm/test/fakes.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { FirebaseApp } from '@firebase/app-compat';
|
||||
import { Messaging } from '@firebase/messaging';
|
||||
export declare function getFakeApp(): FirebaseApp;
|
||||
export declare function getFakeModularMessaging(): Messaging;
|
17
node_modules/@firebase/messaging-compat/dist/esm/test/messaging-compat.test.d.ts
generated
vendored
Normal file
17
node_modules/@firebase/messaging-compat/dist/esm/test/messaging-compat.test.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
export {};
|
140
node_modules/@firebase/messaging-compat/dist/index.cjs.js
generated
vendored
Normal file
140
node_modules/@firebase/messaging-compat/dist/index.cjs.js
generated
vendored
Normal file
|
@ -0,0 +1,140 @@
|
|||
'use strict';
|
||||
|
||||
var firebase = require('@firebase/app-compat');
|
||||
var component = require('@firebase/component');
|
||||
var messaging = require('@firebase/messaging');
|
||||
var util = require('@firebase/util');
|
||||
var sw = require('@firebase/messaging/sw');
|
||||
|
||||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
||||
|
||||
var firebase__default = /*#__PURE__*/_interopDefaultLegacy(firebase);
|
||||
|
||||
const name = "@firebase/messaging-compat";
|
||||
const version = "0.2.13";
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
function isSupported() {
|
||||
if (self && 'ServiceWorkerGlobalScope' in self) {
|
||||
// Running in ServiceWorker context
|
||||
return isSwSupported();
|
||||
}
|
||||
else {
|
||||
// Assume we are in the window context.
|
||||
return isWindowSupported();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Checks to see if the required APIs exist.
|
||||
* Unlike the modular version, it does not check if IndexedDB.open() is allowed
|
||||
* in order to keep isSupported() synchronous and maintain v8 compatibility.
|
||||
*/
|
||||
function isWindowSupported() {
|
||||
return (typeof window !== 'undefined' &&
|
||||
util.isIndexedDBAvailable() &&
|
||||
util.areCookiesEnabled() &&
|
||||
'serviceWorker' in navigator &&
|
||||
'PushManager' in window &&
|
||||
'Notification' in window &&
|
||||
'fetch' in window &&
|
||||
ServiceWorkerRegistration.prototype.hasOwnProperty('showNotification') &&
|
||||
PushSubscription.prototype.hasOwnProperty('getKey'));
|
||||
}
|
||||
/**
|
||||
* Checks to see if the required APIs exist within SW Context.
|
||||
*/
|
||||
function isSwSupported() {
|
||||
return (util.isIndexedDBAvailable() &&
|
||||
'PushManager' in self &&
|
||||
'Notification' in self &&
|
||||
ServiceWorkerRegistration.prototype.hasOwnProperty('showNotification') &&
|
||||
PushSubscription.prototype.hasOwnProperty('getKey'));
|
||||
}
|
||||
class MessagingCompatImpl {
|
||||
constructor(app, _delegate) {
|
||||
this.app = app;
|
||||
this._delegate = _delegate;
|
||||
this.app = app;
|
||||
this._delegate = _delegate;
|
||||
}
|
||||
async getToken(options) {
|
||||
return messaging.getToken(this._delegate, options);
|
||||
}
|
||||
async deleteToken() {
|
||||
return messaging.deleteToken(this._delegate);
|
||||
}
|
||||
onMessage(nextOrObserver) {
|
||||
return messaging.onMessage(this._delegate, nextOrObserver);
|
||||
}
|
||||
onBackgroundMessage(nextOrObserver) {
|
||||
return sw.onBackgroundMessage(this._delegate, nextOrObserver);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
const messagingCompatFactory = (container) => {
|
||||
if (self && 'ServiceWorkerGlobalScope' in self) {
|
||||
// in sw
|
||||
return new MessagingCompatImpl(container.getProvider('app-compat').getImmediate(), container.getProvider('messaging-sw').getImmediate());
|
||||
}
|
||||
else {
|
||||
// in window
|
||||
return new MessagingCompatImpl(container.getProvider('app-compat').getImmediate(), container.getProvider('messaging').getImmediate());
|
||||
}
|
||||
};
|
||||
const NAMESPACE_EXPORTS = {
|
||||
isSupported
|
||||
};
|
||||
function registerMessagingCompat() {
|
||||
firebase__default["default"].INTERNAL.registerComponent(new component.Component('messaging-compat', messagingCompatFactory, "PUBLIC" /* ComponentType.PUBLIC */).setServiceProps(NAMESPACE_EXPORTS));
|
||||
}
|
||||
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
registerMessagingCompat();
|
||||
firebase__default["default"].registerVersion(name, version);
|
||||
//# sourceMappingURL=index.cjs.js.map
|
1
node_modules/@firebase/messaging-compat/dist/index.cjs.js.map
generated
vendored
Normal file
1
node_modules/@firebase/messaging-compat/dist/index.cjs.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
40
node_modules/@firebase/messaging-compat/dist/src/index.d.ts
generated
vendored
Normal file
40
node_modules/@firebase/messaging-compat/dist/src/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,40 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { MessagingCompat } from './messaging-compat';
|
||||
/**
|
||||
* Define extension behavior of `registerMessaging`
|
||||
*/
|
||||
declare module '@firebase/app-compat' {
|
||||
interface FirebaseNamespace {
|
||||
messaging: {
|
||||
(app?: FirebaseApp): MessagingCompat;
|
||||
isSupported(): boolean;
|
||||
};
|
||||
}
|
||||
interface FirebaseApp {
|
||||
messaging(): MessagingCompat;
|
||||
}
|
||||
}
|
||||
|
||||
import { FirebaseApp as FirebaseAppCompat } from "@firebase/app-compat";
|
||||
import { type Messaging, type GetTokenOptions, type NextFn, type MessagePayload, type Observer, type Unsubscribe } from "@firebase/messaging";
|
||||
declare module "@firebase/messaging" {
|
||||
function deleteToken(messaging: MessagingCompat): Promise<boolean>;
|
||||
function getMessaging(app?: FirebaseAppCompat): Messaging;
|
||||
function getToken(messaging: MessagingCompat, options?: GetTokenOptions): Promise<string>;
|
||||
function onMessage(messaging: MessagingCompat, nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
}
|
41
node_modules/@firebase/messaging-compat/dist/src/messaging-compat.d.ts
generated
vendored
Normal file
41
node_modules/@firebase/messaging-compat/dist/src/messaging-compat.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,41 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { FirebaseApp as AppCompat, _FirebaseService } from '@firebase/app-compat';
|
||||
import { Messaging, MessagePayload } from '@firebase/messaging';
|
||||
import { NextFn, Observer, Unsubscribe } from '@firebase/util';
|
||||
export interface MessagingCompat {
|
||||
getToken(options?: {
|
||||
vapidKey?: string;
|
||||
serviceWorkerRegistration?: ServiceWorkerRegistration;
|
||||
}): Promise<string>;
|
||||
deleteToken(): Promise<boolean>;
|
||||
onMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
onBackgroundMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
}
|
||||
export declare function isSupported(): boolean;
|
||||
export declare class MessagingCompatImpl implements MessagingCompat, _FirebaseService {
|
||||
readonly app: AppCompat;
|
||||
readonly _delegate: Messaging;
|
||||
constructor(app: AppCompat, _delegate: Messaging);
|
||||
getToken(options?: {
|
||||
vapidKey?: string;
|
||||
serviceWorkerRegistration?: ServiceWorkerRegistration;
|
||||
}): Promise<string>;
|
||||
deleteToken(): Promise<boolean>;
|
||||
onMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
onBackgroundMessage(nextOrObserver: NextFn<MessagePayload> | Observer<MessagePayload>): Unsubscribe;
|
||||
}
|
23
node_modules/@firebase/messaging-compat/dist/src/registerMessagingCompat.d.ts
generated
vendored
Normal file
23
node_modules/@firebase/messaging-compat/dist/src/registerMessagingCompat.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { MessagingCompatImpl } from './messaging-compat';
|
||||
declare module '@firebase/component' {
|
||||
interface NameServiceMapping {
|
||||
'messaging-compat': MessagingCompatImpl;
|
||||
}
|
||||
}
|
||||
export declare function registerMessagingCompat(): void;
|
20
node_modules/@firebase/messaging-compat/dist/test/fakes.d.ts
generated
vendored
Normal file
20
node_modules/@firebase/messaging-compat/dist/test/fakes.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { FirebaseApp } from '@firebase/app-compat';
|
||||
import { Messaging } from '@firebase/messaging';
|
||||
export declare function getFakeApp(): FirebaseApp;
|
||||
export declare function getFakeModularMessaging(): Messaging;
|
17
node_modules/@firebase/messaging-compat/dist/test/messaging-compat.test.d.ts
generated
vendored
Normal file
17
node_modules/@firebase/messaging-compat/dist/test/messaging-compat.test.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
export {};
|
Loading…
Add table
Add a link
Reference in a new issue