Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions entrypoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
"typings": "./lib/auth/index.d.ts",
"dist": "./lib/auth/index.js"
},
"firebase-admin/phone-number-verification": {
"typings": "./lib/phone-number-verification/index.d.ts",
"dist": "./lib/phone-number-verification/index.js"
},
"firebase-admin/database": {
"typings": "./lib/database/index.d.ts",
"dist": "./lib/database/index.js"
Expand Down
33 changes: 33 additions & 0 deletions etc/firebase-admin.phone-number-verification.api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
## API Report File for "firebase-admin.phone-number-verification"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).

```ts

import { Agent } from 'http';

// Warning: (ae-forgotten-export) The symbol "App" needs to be exported by the entry point index.d.ts
Comment thread
lahirumaramba marked this conversation as resolved.
//
// @public
export function getPhoneNumberVerification(app?: App): PhoneNumberVerification;

// @public
export class PhoneNumberVerification {
get app(): App;
verifyToken(jwt: string): Promise<PhoneNumberVerificationToken>;
}

// @public
export interface PhoneNumberVerificationToken {
[key: string]: any;
aud: string[];
exp: number;
iat: number;
iss: string;
jti: string;
nonce: string;
phoneNumber: string;
sub: string;
}

```
Loading
Loading