61 lines
2.3 KiB
JavaScript
61 lines
2.3 KiB
JavaScript
/*! firebase-admin v13.8.0 */
|
|
"use strict";
|
|
/*!
|
|
* @license
|
|
* Copyright 2025 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.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.PhoneNumberVerification = void 0;
|
|
exports.getPhoneNumberVerification = getPhoneNumberVerification;
|
|
/**
|
|
* Firebase Phone Number Verification.
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
const app_1 = require("../app");
|
|
const phone_number_verification_1 = require("./phone-number-verification");
|
|
var phone_number_verification_2 = require("./phone-number-verification");
|
|
Object.defineProperty(exports, "PhoneNumberVerification", { enumerable: true, get: function () { return phone_number_verification_2.PhoneNumberVerification; } });
|
|
/**
|
|
* Gets the {@link PhoneNumberVerification} service for the default app or a
|
|
* given app.
|
|
*
|
|
* `getPhoneNumberVerification()` can be called with no arguments to access the default app's
|
|
* {@link PhoneNumberVerification} service or as `getPhoneNumberVerification(app)` to access the
|
|
* {@link PhoneNumberVerification} service associated with a specific app.
|
|
*
|
|
* @example
|
|
* ```javascript
|
|
* // Get the PhoneNumberVerification service for the default app
|
|
* const defaultPnv = getPhoneNumberVerification();
|
|
* ```
|
|
*
|
|
* @example
|
|
* ```javascript
|
|
* // Get the PhoneNumberVerification service for a given app
|
|
* const otherPnv = getPhoneNumberVerification(otherApp);
|
|
* ```
|
|
*
|
|
* @returns The {@link PhoneNumberVerification} service associated with the provided app.
|
|
*
|
|
*/
|
|
function getPhoneNumberVerification(app) {
|
|
if (typeof app === 'undefined') {
|
|
app = (0, app_1.getApp)();
|
|
}
|
|
const firebaseApp = app;
|
|
return firebaseApp.getOrInitService('phone-number-verification', (app) => new phone_number_verification_1.PhoneNumberVerification(app));
|
|
}
|