@ampeco/public-api-mcp 3.242.1 → 3.243.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.
@@ -1068,7 +1068,13 @@ export const chargePointCreateBody = z.object({
1068
1068
  electricityCostReimbursementIntegrationId: z.number().int().optional(),
1069
1069
  installationAndMaintenanceCompanyId: z.number().int().optional(),
1070
1070
  countryStationId: z.string().max(255).optional(),
1071
- calibrationLawDataAvailability: z.enum(["local", "not_available"]).optional()
1071
+ calibrationLawDataAvailability: z.enum(["local", "not_available"]).optional(),
1072
+ powerSharing: z.object({
1073
+ enabled: z.boolean(),
1074
+ managementMode: z.enum(["static", "dynamic"]).optional(),
1075
+ totalCabinetPowerKw: z.number().int().min(1).optional(),
1076
+ moduleSizeKw: z.number().int().min(1).optional()
1077
+ }).optional()
1072
1078
  });
1073
1079
 
1074
1080
  // GET /public-api/resources/charge-points/v2.0/{chargePoint}
@@ -1088,6 +1094,12 @@ export const chargePointUpdateBody = z.object({
1088
1094
  installationAndMaintenanceCompanyId: z.number().int().optional(),
1089
1095
  countryStationId: z.string().max(255).optional(),
1090
1096
  calibrationLawDataAvailability: z.enum(["local", "not_available"]).optional(),
1097
+ powerSharing: z.object({
1098
+ enabled: z.boolean().optional(),
1099
+ managementMode: z.enum(["static", "dynamic"]).optional(),
1100
+ totalCabinetPowerKw: z.number().int().min(1).optional(),
1101
+ moduleSizeKw: z.number().int().min(1).optional()
1102
+ }).optional(),
1091
1103
  subscription: z.object({
1092
1104
  required: z.boolean().optional(),
1093
1105
  planIds: z.array(z.number().int()).optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.242.1",
3
+ "version": "3.243.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",