Skip to content

Commit

Permalink
feat(firestore-bigquery-export): update BigQueryProject to BigqueryPr…
Browse files Browse the repository at this point in the history
…oject
  • Loading branch information
jwerner08 authored and cabljac committed Nov 14, 2023
1 parent 1391196 commit 5edec86
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions firestore-bigquery-export/scripts/import/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export async function parseConfig(): Promise<CliConfig | CliConfigError> {
if (program.project === undefined) {
errors.push("Project is not specified.");
}
if (program.bigQueryProject === undefined) {
if (program.bigqueryProject === undefined) {
errors.push("BigQuery Project is not specified.");
}
if (program.sourceCollectionPath === undefined) {
Expand Down Expand Up @@ -226,7 +226,7 @@ export async function parseConfig(): Promise<CliConfig | CliConfigError> {
return {
kind: "CONFIG",
projectId: program.project,
bigQueryProjectId: program.bigQueryProject,
bigQueryProjectId: program.bigqueryProject,
sourceCollectionPath: program.sourceCollectionPath,
datasetId: program.dataset,
tableId: program.tableNamePrefix,
Expand All @@ -243,7 +243,7 @@ export async function parseConfig(): Promise<CliConfig | CliConfigError> {
const {
project,
sourceCollectionPath,
bigQueryProject,
bigqueryProject,
dataset,
table,
batchSize,
Expand All @@ -265,7 +265,7 @@ export async function parseConfig(): Promise<CliConfig | CliConfigError> {
return {
kind: "CONFIG",
projectId: project,
bigQueryProjectId: bigQueryProject,
bigQueryProjectId: bigqueryProject,
sourceCollectionPath: sourceCollectionPath,
datasetId: dataset,
tableId: table,
Expand Down

0 comments on commit 5edec86

Please sign in to comment.