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 1
1
# Change Log
2
2
3
+ ## [ 2.0.1]
4
+ ### Updated
5
+ - Correct data extraction validator to accept columns: all
6
+
3
7
## [ 2.0.0]
4
8
### Updated
5
9
- Update ` existsEntity() ` method to receive ` table ` as parameter
Original file line number Diff line number Diff line change 31
31
"async" : " ^2.0.1" ,
32
32
"sleep" : " ^4.0.0"
33
33
},
34
- "dependencies" : {
35
- }
34
+ "dependencies" : {}
36
35
}
Original file line number Diff line number Diff line change 193
193
// Check columns property, columns should have a maximum of 10 itens
194
194
if ( key == "columns" ) {
195
195
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
+ }
197
199
}
198
200
else {
199
201
if ( value . length > 10 ) {
You can’t perform that action at this time.
0 commit comments