UNPKG

@react-native-firebase/installations

Version:
68 lines (61 loc) 2.47 kB
"use strict"; /* * Copyright (c) 2016-present Invertase Limited & Contributors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this library 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 { getApp } from '@react-native-firebase/app'; import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/dist/module/common'; function withModularDeprecationArg(installations) { return installations; } /** * Returns an instance of Installations associated with the given FirebaseApp instance. */ export function getInstallations(app) { if (app) { return getApp(app.name).installations(); } return getApp().installations(); } /** * Deletes the Firebase Installation and all associated data. */ export function deleteInstallations(installations) { const internalInstallations = withModularDeprecationArg(installations); return internalInstallations.delete.call(internalInstallations, MODULAR_DEPRECATION_ARG); } /** * Creates a Firebase Installation if there isn't one for the app and returns the Installation ID. */ export function getId(installations) { const internalInstallations = withModularDeprecationArg(installations); return internalInstallations.getId.call(internalInstallations, MODULAR_DEPRECATION_ARG); } /** * Returns a Firebase Installations auth token, identifying the current Firebase Installation. */ export function getToken(installations, forceRefresh) { const internalInstallations = withModularDeprecationArg(installations); return internalInstallations.getToken.call(internalInstallations, forceRefresh, MODULAR_DEPRECATION_ARG); } /** * Throw an error since react-native-firebase does not support this method. * * Sets a new callback that will get called when Installation ID changes. Returns an unsubscribe function that will remove the callback when called. */ export function onIdChange(_installations, _callback) { throw new Error('onIdChange() is unsupported by the React Native Firebase SDK.'); } //# sourceMappingURL=modular.js.map