@ampeco/public-api-mcp 3.246.0 → 3.247.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.
@@ -5000,12 +5000,12 @@ export const updatePcIdBody = z.object({
5000
5000
  // POST /public-api/resources/reimbursement-policies/v1.0
5001
5001
  export const reimbursementPolicyCreateBody = z.object({
5002
5002
  name: z.string().max(255),
5003
- electricityRateSource: z.enum(["policy", "charge_point"]),
5004
5003
  validityStartsOn: z.string(),
5005
5004
  partnerId: z.number().int().optional(),
5006
5005
  partnerContractId: z.number().int().optional(),
5007
5006
  electricityRateId: z.number().int().optional(),
5008
5007
  validityEndsOn: z.string().optional(),
5008
+ electricityRateSource: z.enum(["policy", "charge_point"]),
5009
5009
  operatorId: z.number().int().optional()
5010
5010
  });
5011
5011
 
@@ -5016,8 +5016,8 @@ export const reimbursementPolicyCreateBody = z.object({
5016
5016
  // PATCH /public-api/resources/reimbursement-policies/v1.0/{reimbursementPolicy}
5017
5017
  export const reimbursementPolicyUpdateBody = z.object({
5018
5018
  name: z.string().max(255).optional(),
5019
- electricityRateSource: z.enum(["policy", "charge_point"]).optional(),
5020
5019
  validityStartsOn: z.string().optional(),
5020
+ electricityRateSource: z.enum(["policy", "charge_point"]).optional(),
5021
5021
  partnerId: z.number().int().optional(),
5022
5022
  partnerContractId: z.number().int().optional(),
5023
5023
  electricityRateId: z.number().int().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.246.0",
3
+ "version": "3.247.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",