@ar-agents/mercadopago 0.18.2 → 0.18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2011,8 +2011,8 @@ interface TaxIdValidationResult {
2011
2011
  * Validate a tax ID against the appropriate country algorithm.
2012
2012
  *
2013
2013
  * @example
2014
- * validateTaxId("20-41758101-5", "CUIT")
2015
- * // → { valid: true, normalized: "20417581015", formatted: "20-41758101-5", ... }
2014
+ * validateTaxId("20-12345678-6", "CUIT")
2015
+ * // → { valid: true, normalized: "20123456786", formatted: "20-12345678-6", ... }
2016
2016
  *
2017
2017
  * @example
2018
2018
  * validateTaxId("123.456.789-09", "CPF")
package/dist/index.d.ts CHANGED
@@ -2011,8 +2011,8 @@ interface TaxIdValidationResult {
2011
2011
  * Validate a tax ID against the appropriate country algorithm.
2012
2012
  *
2013
2013
  * @example
2014
- * validateTaxId("20-41758101-5", "CUIT")
2015
- * // → { valid: true, normalized: "20417581015", formatted: "20-41758101-5", ... }
2014
+ * validateTaxId("20-12345678-6", "CUIT")
2015
+ * // → { valid: true, normalized: "20123456786", formatted: "20-12345678-6", ... }
2016
2016
  *
2017
2017
  * @example
2018
2018
  * validateTaxId("123.456.789-09", "CPF")
package/dist/index.js CHANGED
@@ -5172,7 +5172,7 @@ function buildAllTools(client, options, desc) {
5172
5172
  description: desc("validate_tax_id"),
5173
5173
  inputSchema: z.object({
5174
5174
  tax_id: z.string().min(1).describe(
5175
- "The tax ID to validate. Accepts any format with or without separators (20-41758101-5, 20.41758101.5, 20417581015 all work for AR CUIT)."
5175
+ "The tax ID to validate. Accepts any format with or without separators (20-12345678-6, 20.12345678.6, 20123456786 all work for AR CUIT)."
5176
5176
  ),
5177
5177
  type: z.enum([
5178
5178
  "DNI",