File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 2.0.1]
4+ ### Updated
5+ - Correct data extraction validator to accept columns: all
6+
37## [ 2.0.0]
48### Updated
59- Update ` existsEntity() ` method to receive ` table ` as parameter
Original file line number Diff line number Diff line change 3131 "async" : " ^2.0.1" ,
3232 "sleep" : " ^4.0.0"
3333 },
34- "dependencies" : {
35- }
34+ "dependencies" : {}
3635}
Original file line number Diff line number Diff line change 193193 // Check columns property, columns should have a maximum of 10 itens
194194 if ( key == "columns" ) {
195195 if ( value . constructor != Array ) {
196- throw new errors . InvalidQueryException ( "The key 'columns' in query has a invalid value." ) ;
196+ if ( value != 'all' ) {
197+ throw new errors . InvalidQueryException ( "The key 'columns' in query has a invalid value." ) ;
198+ }
197199 }
198200 else {
199201 if ( value . length > 10 ) {
You can’t perform that action at this time.
0 commit comments