@ampeco/public-api-mcp 3.107.1 → 3.108.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 +6 -6
- package/dist/generated/endpoints.json +29 -11
- package/dist/generated/response-schemas.json +38 -2
- package/dist/generated/schemas.d.ts +9 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +3 -0
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +3 -0
- package/package.json +1 -1
|
@@ -95,6 +95,7 @@ export const chargePointStartChargingSessionWithoutEvseBody = z.object({
|
|
|
95
95
|
userId: z.number().int().optional(),
|
|
96
96
|
paymentMethodId: z.string().optional(),
|
|
97
97
|
externalSessionId: z.string().optional(),
|
|
98
|
+
idTag: z.string().optional(),
|
|
98
99
|
connectorId: z.number().int().optional(),
|
|
99
100
|
bookingId: z.number().int().optional()
|
|
100
101
|
});
|
|
@@ -104,6 +105,7 @@ export const chargePointStartChargingSessionBody = z.object({
|
|
|
104
105
|
userId: z.number().int().optional(),
|
|
105
106
|
paymentMethodId: z.string().optional(),
|
|
106
107
|
externalSessionId: z.string().optional(),
|
|
108
|
+
idTag: z.string().optional(),
|
|
107
109
|
connectorId: z.number().int().optional(),
|
|
108
110
|
bookingId: z.number().int().optional(),
|
|
109
111
|
chargingProfile: z.object({
|
|
@@ -269,6 +271,7 @@ export const evseStartChargingWithEvseIdBody = z.object({
|
|
|
269
271
|
userId: z.number().int().optional(),
|
|
270
272
|
paymentMethodId: z.string().optional(),
|
|
271
273
|
externalSessionId: z.string().optional(),
|
|
274
|
+
idTag: z.string().optional(),
|
|
272
275
|
connectorId: z.number().int().optional(),
|
|
273
276
|
bookingId: z.number().int().optional(),
|
|
274
277
|
chargingProfile: z.object({
|
package/package.json
CHANGED