@ampeco/public-api-mcp 3.98.4 → 3.99.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 +55 -10
- package/dist/generated/response-schemas.json +60 -16
- package/dist/generated/schemas.d.ts +12 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +5 -1
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +5 -1
- package/package.json +1 -1
|
@@ -854,7 +854,8 @@ export const chargePointCreateBody = z.object({
|
|
|
854
854
|
manufacturedAt: z.string().datetime().optional(),
|
|
855
855
|
lastUpdatedAt: z.string().datetime().optional(),
|
|
856
856
|
ocppConnectedChargePointId: z.number().int().optional(),
|
|
857
|
-
communicationMode: z.enum(["none", "direct_ocpp", "via_ocpp_connected_charge_point"]).optional()
|
|
857
|
+
communicationMode: z.enum(["none", "direct_ocpp", "via_ocpp_connected_charge_point"]).optional(),
|
|
858
|
+
electricityCostReimbursementIntegrationId: z.number().int().optional()
|
|
858
859
|
});
|
|
859
860
|
|
|
860
861
|
// GET /public-api/resources/charge-points/v2.0/{chargePoint}
|
|
@@ -870,6 +871,7 @@ export const chargePointUpdateBody = z.object({
|
|
|
870
871
|
locationId: z.number().int().optional(),
|
|
871
872
|
chargingZoneId: z.number().int().optional(),
|
|
872
873
|
electricityRateId: z.number().int().optional(),
|
|
874
|
+
electricityCostReimbursementIntegrationId: z.number().int().optional(),
|
|
873
875
|
subscription: z.object({
|
|
874
876
|
required: z.boolean().optional(),
|
|
875
877
|
planIds: z.array(z.number().int()).optional()
|
|
@@ -3822,6 +3824,7 @@ export const userGroupCreateBody = z.object({
|
|
|
3822
3824
|
name: z.string(),
|
|
3823
3825
|
partnerId: z.number().int().optional(),
|
|
3824
3826
|
description: z.string().max(2000).optional(),
|
|
3827
|
+
externalId: z.string().max(255).optional(),
|
|
3825
3828
|
lastUpdatedAt: z.string().datetime().optional()
|
|
3826
3829
|
});
|
|
3827
3830
|
|
|
@@ -3834,6 +3837,7 @@ export const userGroupUpdateBody = z.object({
|
|
|
3834
3837
|
name: z.string(),
|
|
3835
3838
|
partnerId: z.number().int().optional(),
|
|
3836
3839
|
description: z.string().max(2000).optional(),
|
|
3840
|
+
externalId: z.string().max(255).optional(),
|
|
3837
3841
|
lastUpdatedAt: z.string().datetime().optional()
|
|
3838
3842
|
});
|
|
3839
3843
|
|
package/package.json
CHANGED