@ampeco/public-api-mcp 3.242.1 → 3.243.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.
- package/dist/generated/build-stats.json +5 -5
- package/dist/generated/endpoints.json +69 -7
- package/dist/generated/response-schemas.json +134 -0
- package/dist/generated/schemas.d.ts +56 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +13 -1
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +13 -1
- package/package.json +1 -1
|
@@ -1068,7 +1068,13 @@ export const chargePointCreateBody = z.object({
|
|
|
1068
1068
|
electricityCostReimbursementIntegrationId: z.number().int().optional(),
|
|
1069
1069
|
installationAndMaintenanceCompanyId: z.number().int().optional(),
|
|
1070
1070
|
countryStationId: z.string().max(255).optional(),
|
|
1071
|
-
calibrationLawDataAvailability: z.enum(["local", "not_available"]).optional()
|
|
1071
|
+
calibrationLawDataAvailability: z.enum(["local", "not_available"]).optional(),
|
|
1072
|
+
powerSharing: z.object({
|
|
1073
|
+
enabled: z.boolean(),
|
|
1074
|
+
managementMode: z.enum(["static", "dynamic"]).optional(),
|
|
1075
|
+
totalCabinetPowerKw: z.number().int().min(1).optional(),
|
|
1076
|
+
moduleSizeKw: z.number().int().min(1).optional()
|
|
1077
|
+
}).optional()
|
|
1072
1078
|
});
|
|
1073
1079
|
|
|
1074
1080
|
// GET /public-api/resources/charge-points/v2.0/{chargePoint}
|
|
@@ -1088,6 +1094,12 @@ export const chargePointUpdateBody = z.object({
|
|
|
1088
1094
|
installationAndMaintenanceCompanyId: z.number().int().optional(),
|
|
1089
1095
|
countryStationId: z.string().max(255).optional(),
|
|
1090
1096
|
calibrationLawDataAvailability: z.enum(["local", "not_available"]).optional(),
|
|
1097
|
+
powerSharing: z.object({
|
|
1098
|
+
enabled: z.boolean().optional(),
|
|
1099
|
+
managementMode: z.enum(["static", "dynamic"]).optional(),
|
|
1100
|
+
totalCabinetPowerKw: z.number().int().min(1).optional(),
|
|
1101
|
+
moduleSizeKw: z.number().int().min(1).optional()
|
|
1102
|
+
}).optional(),
|
|
1091
1103
|
subscription: z.object({
|
|
1092
1104
|
required: z.boolean().optional(),
|
|
1093
1105
|
planIds: z.array(z.number().int()).optional()
|
package/package.json
CHANGED