@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/CHANGELOG.md +6 -0
- package/cookbook/25-sociedad-ia-quarterly-compliance.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/tools.manifest.json +1 -1
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-
|
|
2015
|
-
* // → { valid: true, normalized: "
|
|
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-
|
|
2015
|
-
* // → { valid: true, normalized: "
|
|
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-
|
|
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",
|