@ampeco/public-api-mcp 3.224.3 → 3.225.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.
@@ -428,6 +428,8 @@ export const parkingSpaceUpdateOccupancyStatusBody = z.object({
428
428
 
429
429
  // POST /public-api/actions/partner-invite-corporate-billing-policy/v1.0/{corporateBillingPolicy}/enable
430
430
 
431
+ // POST /public-api/actions/partner-invoice/v1.0/{partnerInvoice}/issue-credit-note
432
+
431
433
  // POST /public-api/actions/partner-invoice/v1.0/{partnerInvoice}/update-external-id
432
434
  export const partnerInvoiceUpdateExternalIdBody = z.object({
433
435
  externalId: z.string().max(255)
@@ -1147,6 +1149,7 @@ export const chargePointEvseCreateBody = z.object({
1147
1149
  bookingEnabled: z.boolean().optional(),
1148
1150
  monitoringEnabled: z.boolean().optional(),
1149
1151
  powerOptions: z.object({
1152
+ maxOutputVoltage: z.number().int().min(1).max(1000).optional(),
1150
1153
  maxPower: z.number().int().optional(),
1151
1154
  maxVoltage: z.enum(["230", "380", "400", "480", "120", "208", "240", "110-130", "220-240", "277"]).optional(),
1152
1155
  maxAmperage: z.number().optional(),
@@ -1189,6 +1192,7 @@ export const chargePointEvseUpdateBody = z.object({
1189
1192
  bookingEnabled: z.boolean().optional(),
1190
1193
  monitoringEnabled: z.boolean().optional(),
1191
1194
  powerOptions: z.object({
1195
+ maxOutputVoltage: z.number().int().min(1).max(1000).optional(),
1192
1196
  maxPower: z.number().int().optional(),
1193
1197
  maxVoltage: z.enum(["230", "380", "400", "480", "120", "208", "240", "110-130", "220-240", "277"]).optional(),
1194
1198
  maxAmperage: z.number().optional(),
@@ -2231,6 +2235,7 @@ export const evseCreateBody = z.object({
2231
2235
  bookingEnabled: z.boolean().optional(),
2232
2236
  monitoringEnabled: z.boolean().optional(),
2233
2237
  powerOptions: z.object({
2238
+ maxOutputVoltage: z.number().int().min(1).max(1000).optional(),
2234
2239
  maxPower: z.number().int().optional(),
2235
2240
  maxVoltage: z.enum(["230", "380", "400", "480", "120", "208", "240", "110-130", "220-240", "277"]).optional(),
2236
2241
  maxAmperage: z.number().optional(),
@@ -2273,6 +2278,7 @@ export const evseUpdateBody = z.object({
2273
2278
  bookingEnabled: z.boolean().optional(),
2274
2279
  monitoringEnabled: z.boolean().optional(),
2275
2280
  powerOptions: z.object({
2281
+ maxOutputVoltage: z.number().int().min(1).max(1000).optional(),
2276
2282
  maxPower: z.number().int().optional(),
2277
2283
  maxVoltage: z.enum(["230", "380", "400", "480", "120", "208", "240", "110-130", "220-240", "277"]).optional(),
2278
2284
  maxAmperage: z.number().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.224.3",
3
+ "version": "3.225.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",