@ampeco/public-api-mcp 3.107.1 → 3.108.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.
@@ -95,6 +95,7 @@ export const chargePointStartChargingSessionWithoutEvseBody = z.object({
95
95
  userId: z.number().int().optional(),
96
96
  paymentMethodId: z.string().optional(),
97
97
  externalSessionId: z.string().optional(),
98
+ idTag: z.string().optional(),
98
99
  connectorId: z.number().int().optional(),
99
100
  bookingId: z.number().int().optional()
100
101
  });
@@ -104,6 +105,7 @@ export const chargePointStartChargingSessionBody = z.object({
104
105
  userId: z.number().int().optional(),
105
106
  paymentMethodId: z.string().optional(),
106
107
  externalSessionId: z.string().optional(),
108
+ idTag: z.string().optional(),
107
109
  connectorId: z.number().int().optional(),
108
110
  bookingId: z.number().int().optional(),
109
111
  chargingProfile: z.object({
@@ -269,6 +271,7 @@ export const evseStartChargingWithEvseIdBody = z.object({
269
271
  userId: z.number().int().optional(),
270
272
  paymentMethodId: z.string().optional(),
271
273
  externalSessionId: z.string().optional(),
274
+ idTag: z.string().optional(),
272
275
  connectorId: z.number().int().optional(),
273
276
  bookingId: z.number().int().optional(),
274
277
  chargingProfile: z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.107.1",
3
+ "version": "3.108.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",