File tree 4 files changed +11
-2
lines changed
4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Releases
2
+
3
+ ## VERSION 2.2.0
4
+ - Include ` network_transaction_data ` in ` forward_data ` in Payment
5
+
2
6
## VERSION 2.1.1
3
7
- Fix ` X-Expand-Responde-Nodes ` header to request options
4
8
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mercadopago" ,
3
- "version" : " 2.1.1 " ,
3
+ "version" : " 2.2.0 " ,
4
4
"description" : " Mercadopago SDK for Node.js" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ export declare type PayerRequest = {
56
56
57
57
export declare type ForwardDataRequest = {
58
58
sub_merchant ?: SubMerchant ,
59
+ network_transaction_data ?: NetworkTransactionData ,
60
+ }
61
+
62
+ export declare type NetworkTransactionData = {
63
+ network_transaction_id ?: string ,
59
64
}
60
65
61
66
export declare interface AddressRequest extends Address {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export class AppConfig {
5
5
static readonly BASE_URL = 'https://api.mercadopago.com' ;
6
6
static readonly PRODUCT_ID = 'bc32b6ntrpp001u8nhkg' ;
7
7
8
- static SDK_VERSION = '2.1.1 ' ;
8
+ static SDK_VERSION = '2.2.0 ' ;
9
9
10
10
static readonly Headers = {
11
11
AUTHORIZATION : 'Authorization' ,
You can’t perform that action at this time.
0 commit comments