-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Description
Please confirm that the bug report does not already exist
- I confirm there is no existing issue for this bug.
Steps to reproduce
Checkout the current develop branch.
Run pnpm bootstrap (or pnpm --filter nocodb-sdk run build).
During the SDK build stage, TypeScript fails with:
src/lib/filter/filterUtils.ts:926:28 - error TS2339: Property 'delete' does not exist on type '... dbTableFilter ...'
await $api.dbTableFilter.delete(filter.id);
The build aborts because the generated API now exposes the delete route as dbTableFilterDelete, not dbTableFilter.delete.
Desired Behavior
Desired Behavior
SDK build should succeed. deleteFilterWithSub should call the correct helper ($api.dbTableFilter.dbTableFilterDelete(filter.id) or equivalent) that matches the current auto-generated client.
Project Details
NocoDB used as docker : false
NocoDB version : develop (9 Nov 2025)
Database used in NC_DB URL : sqlite3
Project was created by clicking : New Project
Database on which spreadsheet is created : sqlite3
OS on which NocoDB is running : Windows
Node.js version : 22.12.0
Database version : sqlite3 bundled version
Attachments
