const bpfs = require('botpress-fs');
const tableName = 'PEDIDOTable';
bpfs.knex(tableName).where({ /* your condition here */ }).del().then(() => {
console.log('Data deleted successfully');
}).catch(err => {
console.error('Error deleting data: ', err);
});