Skip to content

Commit

Permalink
Merge branch 'main' into codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
narthur committed Apr 10, 2024
2 parents 4a531a1 + 2196275 commit 4caa5cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ dist/
node_modules
scripts/
.baserowrc
__generated__/
__generated__/
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,8 @@ export class BaserowSdk {
);
return data;
}

public async deleteRow(tableId: number, rowId: number): Promise<void> {
await c.delete(`/database/rows/table/${tableId}/${rowId}/`);
}
}

0 comments on commit 4caa5cc

Please sign in to comment.