@ampeco/public-api-mcp 3.244.3 → 3.245.1

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.
@@ -3830,6 +3830,11 @@ export const partnerUpdateDeprecatedBody = z.object({
3830
3830
  // POST /public-api/resources/partners/v2.0
3831
3831
  export const partnerCreateBody = z.object({
3832
3832
  businessName: z.string().optional(),
3833
+ reimbursement: z.object({
3834
+ enabled: z.boolean().optional(),
3835
+ payoutMode: z.enum(["operator_managed", "partner_managed"]).optional(),
3836
+ cycle: z.enum(["monthly", "quarterly", "annual"]).optional()
3837
+ }).optional(),
3833
3838
  notifications: z.object({
3834
3839
  technical: z.object({
3835
3840
  chargePointFaults: z.boolean().optional()
@@ -3940,6 +3945,11 @@ export const partnerCreateBody = z.object({
3940
3945
  // PATCH /public-api/resources/partners/v2.0/{partner}
3941
3946
  export const partnerUpdateBody = z.object({
3942
3947
  businessName: z.string().optional(),
3948
+ reimbursement: z.object({
3949
+ enabled: z.boolean().optional(),
3950
+ payoutMode: z.enum(["operator_managed", "partner_managed"]).optional(),
3951
+ cycle: z.enum(["monthly", "quarterly", "annual"]).optional()
3952
+ }).optional(),
3943
3953
  notifications: z.object({
3944
3954
  technical: z.object({
3945
3955
  chargePointFaults: z.boolean().optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.244.3",
3
+ "version": "3.245.1",
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",