File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -301,6 +301,9 @@ module.exports = {
301
301
}
302
302
}
303
303
}
304
+ } ,
305
+ binary_mode : {
306
+ type : 'boolean'
304
307
}
305
308
}
306
309
} ;
Original file line number Diff line number Diff line change @@ -115,9 +115,9 @@ requestManager.describe = function (options) {
115
115
idempotency : needIdempotency , // Needs the idempotency header
116
116
// If the merchant provides an access_token, it should override the access_token configured on init
117
117
access_token : config . access_token ? config . access_token : accessToken ,
118
- platformId : needPartnersHeaders || configurations . getPlatformId ( ) ,
119
- corporationId : needPartnersHeaders || configurations . getCorporationId ( ) ,
120
- integratorId : needPartnersHeaders || configurations . getIntegratorId ( ) ,
118
+ platformId : needPartnersHeaders && configurations . getPlatformId ( ) ,
119
+ corporationId : needPartnersHeaders && configurations . getCorporationId ( ) ,
120
+ integratorId : needPartnersHeaders && configurations . getIntegratorId ( ) ,
121
121
} ) ;
122
122
} ) . then ( function ( response ) {
123
123
resolve ( response ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mercadopago" ,
3
- "version" : " 1.3.1 " ,
3
+ "version" : " 1.3.2 " ,
4
4
"description" : " Mercadopago SDK for Node.js" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments