@ampeco/public-api-mcp 3.100.4 → 3.101.1

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.
@@ -3526,7 +3526,8 @@ export const tariffCreateBody = z.object({
3526
3526
  priceInformation: z.string().optional(),
3527
3527
  totalCostInformation: z.string().optional()
3528
3528
  }).optional(),
3529
- integrationId: z.number().int().optional()
3529
+ integrationId: z.number().int().optional(),
3530
+ externalId: z.string().optional()
3530
3531
  });
3531
3532
 
3532
3533
  // GET /public-api/resources/tariffs/v1.0/{tariff}
@@ -3690,7 +3691,8 @@ export const tariffUpdateBody = z.object({
3690
3691
  priceInformation: z.string().optional(),
3691
3692
  totalCostInformation: z.string().optional()
3692
3693
  }).optional(),
3693
- integrationId: z.number().int().optional()
3694
+ integrationId: z.number().int().optional(),
3695
+ externalId: z.string().optional()
3694
3696
  });
3695
3697
 
3696
3698
  // DELETE /public-api/resources/tariffs/v1.0/{tariff}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.100.4",
3
+ "version": "3.101.1",
4
4
  "description": "MCP server that dynamically exposes the AMPECO.CHARGE Public API defined by an OpenAPI 3 specification",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",