@ampeco/public-api-mcp 3.98.5 → 3.98.6

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.
@@ -854,7 +854,8 @@ export const chargePointCreateBody = z.object({
854
854
  manufacturedAt: z.string().datetime().optional(),
855
855
  lastUpdatedAt: z.string().datetime().optional(),
856
856
  ocppConnectedChargePointId: z.number().int().optional(),
857
- communicationMode: z.enum(["none", "direct_ocpp", "via_ocpp_connected_charge_point"]).optional()
857
+ communicationMode: z.enum(["none", "direct_ocpp", "via_ocpp_connected_charge_point"]).optional(),
858
+ electricityCostReimbursementIntegrationId: z.number().int().optional()
858
859
  });
859
860
 
860
861
  // GET /public-api/resources/charge-points/v2.0/{chargePoint}
@@ -870,6 +871,7 @@ export const chargePointUpdateBody = z.object({
870
871
  locationId: z.number().int().optional(),
871
872
  chargingZoneId: z.number().int().optional(),
872
873
  electricityRateId: z.number().int().optional(),
874
+ electricityCostReimbursementIntegrationId: z.number().int().optional(),
873
875
  subscription: z.object({
874
876
  required: z.boolean().optional(),
875
877
  planIds: z.array(z.number().int()).optional()
@@ -3822,6 +3824,7 @@ export const userGroupCreateBody = z.object({
3822
3824
  name: z.string(),
3823
3825
  partnerId: z.number().int().optional(),
3824
3826
  description: z.string().max(2000).optional(),
3827
+ externalId: z.string().max(255).optional(),
3825
3828
  lastUpdatedAt: z.string().datetime().optional()
3826
3829
  });
3827
3830
 
@@ -3834,6 +3837,7 @@ export const userGroupUpdateBody = z.object({
3834
3837
  name: z.string(),
3835
3838
  partnerId: z.number().int().optional(),
3836
3839
  description: z.string().max(2000).optional(),
3840
+ externalId: z.string().max(255).optional(),
3837
3841
  lastUpdatedAt: z.string().datetime().optional()
3838
3842
  });
3839
3843
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.98.5",
3
+ "version": "3.98.6",
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",