Skip to content

Commit

Permalink
Merge branch 'master' into passkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
pragatimodi authored Jun 27, 2024
2 parents 2c70e61 + b5664ea commit 64203c3
Show file tree
Hide file tree
Showing 43 changed files with 5,640 additions and 3,455 deletions.
6 changes: 3 additions & 3 deletions .github/actions/send-email/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified .github/resources/integ-service-account.json.gpg
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [14.x, 16.x, 18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ requests, code review feedback, and also pull requests.

## Supported Environments

We support Node.js 14 and higher. However, Node.js 14 support is deprecated. We strongly encourage
you to use Node.js 16 or higher as we will drop support for Node.js 14 in the next major version.
We support Node.js 14 and higher. However, Node.js 14 and 16 support is deprecated. We strongly encourage
you to use Node.js 18 or higher as we will drop support for Node.js 14 and 16 in the next major version.

Please also note that the Admin SDK should only
be used in server-side/back-end environments controlled by the app developer.
Expand Down
32 changes: 32 additions & 0 deletions etc/firebase-admin.app.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,32 @@ export interface App {
options: AppOptions;
}

// @public
export class AppErrorCodes {
// (undocumented)
static APP_DELETED: string;
// (undocumented)
static DUPLICATE_APP: string;
// (undocumented)
static INTERNAL_ERROR: string;
// (undocumented)
static INVALID_APP_NAME: string;
// (undocumented)
static INVALID_APP_OPTIONS: string;
// (undocumented)
static INVALID_ARGUMENT: string;
// (undocumented)
static INVALID_CREDENTIAL: string;
// (undocumented)
static NETWORK_ERROR: string;
// (undocumented)
static NETWORK_TIMEOUT: string;
// (undocumented)
static NO_APP: string;
// (undocumented)
static UNABLE_TO_PARSE_RESPONSE: string;
}

// @public
export function applicationDefault(httpAgent?: Agent): Credential;

Expand All @@ -39,6 +65,12 @@ export interface Credential {
// @public
export function deleteApp(app: App): Promise<void>;

// Warning: (ae-forgotten-export) The symbol "PrefixedFirebaseError" needs to be exported by the entry point index.d.ts
//
// @public
export class FirebaseAppError extends PrefixedFirebaseError {
}

// @public
export interface FirebaseArrayIndexError {
error: FirebaseError;
Expand Down
Loading

0 comments on commit 64203c3

Please sign in to comment.