Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
- [BREAKING] Removed deprecated `firebase --open-sesame` and `firebase --close-sesame` commands. Use `firebase experiments:enable` and `firebase experiments:disable` instead.
- [BREAKING] Enforce strict timeout validation for functions. (#9540)
- [BREAKING] Update `dataconnect:\*` commands to use flags instead of positional arguments for `--service` & `--location`. Changed output type of `dataconnect:sql:migrate --json` (#9312)
- [BREAKING] When using 'firebase-tools' as a Node module, `cli.auth.upload` has been renamed to `cli.auth.import` and `cli.appdistribution.testers.delete` has been renamed to `cli.appdistribution.testers.remove`.
4 changes: 2 additions & 2 deletions src/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function load(client: CLIClient): CLIClient {
client.appdistribution.testers = {};
client.appdistribution.testers.list = loadCommand("appdistribution-testers-list");
client.appdistribution.testers.add = loadCommand("appdistribution-testers-add");
client.appdistribution.testers.delete = loadCommand("appdistribution-testers-remove");
client.appdistribution.testers.remove = loadCommand("appdistribution-testers-remove");
client.appdistribution.groups = {};
client.appdistribution.groups.list = loadCommand("appdistribution-groups-list");
client.appdistribution.groups.create = loadCommand("appdistribution-groups-create");
Expand All @@ -55,7 +55,7 @@ export function load(client: CLIClient): CLIClient {
client.apps.android.sha.delete = loadCommand("apps-android-sha-delete");
client.auth = {};
client.auth.export = loadCommand("auth-export");
client.auth.upload = loadCommand("auth-import");
client.auth.import = loadCommand("auth-import");
client.crashlytics = {};
client.crashlytics.symbols = {};
client.crashlytics.symbols.upload = loadCommand("crashlytics-symbols-upload");
Expand Down
Loading