Skip to content

Commit

Permalink
make parentId mandatory in upsertDataSourceTableFromCsv
Browse files Browse the repository at this point in the history
  • Loading branch information
aubin-tchoi committed Dec 20, 2024
1 parent 0753157 commit a86e7b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions connectors/src/lib/data_sources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ export async function upsertDataSourceTableFromCsv({
loggerArgs,
truncate,
parents,
parentId = null,
parentId,
useAppForHeaderDetection,
title,
mimeType,
Expand All @@ -791,7 +791,7 @@ export async function upsertDataSourceTableFromCsv({
loggerArgs?: Record<string, string | number>;
truncate: boolean;
parents: string[];
parentId?: string | null;
parentId: string | null;
useAppForHeaderDetection?: boolean;
title: string;
mimeType: string;
Expand Down

0 comments on commit a86e7b0

Please sign in to comment.