We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
firebase init dataconnect
1 parent fa75163 commit 879f023Copy full SHA for 879f023
CHANGELOG.md
@@ -0,0 +1 @@
1
+- Fixed an issue where `firebase init dataconnect` didn't enable the Data Connect API by default (#8927).
src/dataconnect/ensureApis.ts
@@ -12,6 +12,7 @@ export async function ensureApis(projectId: string): Promise<void> {
12
export async function ensureSparkApis(projectId: string): Promise<void> {
13
// These are the APIs that can be enabled without a billing account.
14
await ensure(projectId, api.cloudSQLAdminOrigin(), prefix);
15
+ await ensure(projectId, api.dataconnectOrigin(), prefix);
16
}
17
18
export async function ensureGIFApis(projectId: string): Promise<void> {
0 commit comments