@ampeco/public-api-mcp 3.243.0 → 3.244.0

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.
@@ -2557,6 +2557,10 @@ export const updateInstallerJobBody = z.object({
2557
2557
 
2558
2558
  // GET /public-api/resources/invoices/v1.0/{invoice}
2559
2559
 
2560
+ // GET /public-api/resources/invoices/v1.0/{invoice}/fiscalization-attempts
2561
+
2562
+ // GET /public-api/resources/invoices/v1.0/{invoice}/fiscalization-documents/download
2563
+
2560
2564
  // GET /public-api/resources/issues/v1.0
2561
2565
 
2562
2566
  // POST /public-api/resources/issues/v1.0
@@ -5229,6 +5233,11 @@ export const roamingTariffUpdateBody = z.object({
5229
5233
 
5230
5234
  // GET /public-api/resources/sessions/v1.0/{session}
5231
5235
 
5236
+ // PATCH /public-api/resources/sessions/v1.0/{session}
5237
+ export const sessionUpdateBody = z.object({
5238
+ customFields: z.record(z.unknown())
5239
+ }).strict();
5240
+
5232
5241
  // GET /public-api/resources/sessions/v1.0/{session}/consumption-stats
5233
5242
 
5234
5243
  // GET /public-api/resources/sessions/v1.0/{session}/energy-coupon-session-consumptions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.243.0",
3
+ "version": "3.244.0",
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",