@ampeco/public-api-mcp 3.105.9 → 3.105.11

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.
@@ -599,17 +599,17 @@ export const bookingRequestCreateBody = z.union([z.object({
599
599
  endAt: z.string().datetime(),
600
600
  evseId: z.number().int().optional(),
601
601
  evseCriteria: z.object({
602
- currentType: z.union([z.enum(["ac", "dc"]), z.null()]).optional(),
602
+ currentType: z.enum(["ac", "dc"]).optional(),
603
603
  minPower: z.number().optional(),
604
604
  maxPower: z.number().optional(),
605
- connectorType: z.union([z.enum(["type1", "type2", "type3", "chademo", "ccs1", "ccs2", "schuko", "nacs", "cee16", "cee32", "j1772", "inductive", "nema-5-20", "type-e-french", "type-g-british", "type-j-swiss", "avcon", "gb-t-ac", "gb-t-dc", "chaoji", "nema-6-30", "nema-6-50"]), z.null()]).optional()
605
+ connectorType: z.enum(["type1", "type2", "type3", "chademo", "ccs1", "ccs2", "schuko", "nacs", "cee16", "cee32", "j1772", "inductive", "nema-5-20", "type-e-french", "type-g-british", "type-j-swiss", "avcon", "gb-t-ac", "gb-t-dc", "chaoji", "nema-6-30", "nema-6-50"]).optional()
606
606
  }).optional(),
607
607
  parkingSpaceCriteria: z.object({
608
608
  vehicleWeightKg: z.number().int().min(1).optional(),
609
609
  vehicleHeightCm: z.number().int().min(1).optional(),
610
610
  vehicleLengthCm: z.number().int().min(1).optional(),
611
611
  vehicleWidthCm: z.number().int().min(1).optional(),
612
- vehicleType: z.union([z.enum(["two_and_three_wheel_vehicles_and_quadricycles", "passenger_vehicles", "passenger_vehicles_with_trailer", "light_duty_vans", "heavy_duty_tractor_units_without_trailer", "heavy_duty_trucks_without_articulation_point", "heavy_duty_trucks_with_trailer_attached", "buses_or_motor_coaches"]), z.null()]).optional(),
612
+ vehicleType: z.enum(["two_and_three_wheel_vehicles_and_quadricycles", "passenger_vehicles", "passenger_vehicles_with_trailer", "light_duty_vans", "heavy_duty_tractor_units_without_trailer", "heavy_duty_trucks_without_articulation_point", "heavy_duty_trucks_with_trailer_attached", "buses_or_motor_coaches"]).optional(),
613
613
  driveThroughRequired: z.boolean().optional(),
614
614
  refrigerationOutletRequired: z.boolean().optional(),
615
615
  dangerousGoodsAllowed: z.boolean().optional()
@@ -2793,7 +2793,8 @@ export const createPaymentTerminalBody = z.union([z.union([z.object({
2793
2793
  version: z.string().optional(),
2794
2794
  downloadUrl: z.string().optional()
2795
2795
  }),
2796
- networkStatusMonitoringEnabled: z.boolean().optional()
2796
+ networkStatusMonitoringEnabled: z.boolean().optional(),
2797
+ kioskModeEnabled: z.boolean().optional()
2797
2798
  }), z.object({
2798
2799
  id: z.number().int().optional(),
2799
2800
  name: z.string(),
@@ -2898,7 +2899,8 @@ export const createPaymentTerminalBody = z.union([z.union([z.object({
2898
2899
  merchantAccount: z.string(),
2899
2900
  adyenApiKey: z.string(),
2900
2901
  supportedLanguages: z.array(z.string()).optional(),
2901
- networkStatusMonitoringEnabled: z.boolean().optional()
2902
+ networkStatusMonitoringEnabled: z.boolean().optional(),
2903
+ kioskModeEnabled: z.boolean().optional()
2902
2904
  }), z.object({
2903
2905
  id: z.number().int().optional(),
2904
2906
  name: z.string(),
@@ -2925,7 +2927,8 @@ export const createPaymentTerminalBody = z.union([z.union([z.object({
2925
2927
  version: z.string().optional(),
2926
2928
  downloadUrl: z.string().optional()
2927
2929
  }),
2928
- networkStatusMonitoringEnabled: z.boolean().optional()
2930
+ networkStatusMonitoringEnabled: z.boolean().optional(),
2931
+ kioskModeEnabled: z.boolean().optional()
2929
2932
  }), z.object({
2930
2933
  id: z.number().int().optional(),
2931
2934
  name: z.string(),
@@ -2952,7 +2955,8 @@ export const createPaymentTerminalBody = z.union([z.union([z.object({
2952
2955
  version: z.string().optional(),
2953
2956
  downloadUrl: z.string().optional()
2954
2957
  }),
2955
- networkStatusMonitoringEnabled: z.boolean().optional()
2958
+ networkStatusMonitoringEnabled: z.boolean().optional(),
2959
+ kioskModeEnabled: z.boolean().optional()
2956
2960
  })]);
2957
2961
 
2958
2962
  // GET /public-api/resources/payment-terminals/v1.0/{paymentTerminal}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.105.9",
3
+ "version": "3.105.11",
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",