From 81d6f50ac07cbe8acad12272b5d0996343ae3ecb Mon Sep 17 00:00:00 2001 From: Danielen Cestari Nunes Date: Fri, 5 Jul 2024 09:30:26 -0300 Subject: [PATCH] bump version (#334) --- CHANGELOG.MD | 3 +++ package.json | 2 +- src/clients/payment/create/types.ts | 2 +- src/utils/config/index.ts | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index eab1bcf..acf6cd4 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,5 +1,8 @@ # Releases +## VERSION 2.0.11 +- Include SubMerchant in ForwardData in Payment + ## VERSION 2.0.10 - Update braces from 3.0.2 to 3.0.3 - Fix the properties street_number to string diff --git a/package.json b/package.json index 3002e3e..4e8d3a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mercadopago", - "version": "2.0.10", + "version": "2.0.11", "description": "Mercadopago SDK for Node.js", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/clients/payment/create/types.ts b/src/clients/payment/create/types.ts index cf71df1..92dca55 100644 --- a/src/clients/payment/create/types.ts +++ b/src/clients/payment/create/types.ts @@ -1,4 +1,4 @@ -import type { Address, Items, Shipments, SubMerchant } from '@src/clients/commonTypes'; +import type { Address, Items, Shipments } from '@src/clients/commonTypes'; import type { MercadoPagoConfig } from '@src/mercadoPagoConfig'; import type { Identification, Payer, Phone } from '../commonTypes'; import type { Options } from '@src/types'; diff --git a/src/utils/config/index.ts b/src/utils/config/index.ts index 19d8cd0..03d982f 100644 --- a/src/utils/config/index.ts +++ b/src/utils/config/index.ts @@ -5,7 +5,7 @@ export class AppConfig { static readonly BASE_URL = 'https://api.mercadopago.com'; static readonly PRODUCT_ID = 'bc32b6ntrpp001u8nhkg'; - static SDK_VERSION = '2.0.10'; + static SDK_VERSION = '2.0.11'; static readonly Headers = { AUTHORIZATION: 'Authorization',