@ampeco/public-api-mcp 3.243.0 → 3.244.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 +9 -9
- package/dist/generated/endpoints.json +199 -11
- package/dist/generated/response-schemas.json +1709 -142
- package/dist/generated/schemas.d.ts +7 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +6 -0
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +9 -0
- package/package.json +1 -1
|
@@ -2557,6 +2557,10 @@ export const updateInstallerJobBody = z.object({
|
|
|
2557
2557
|
|
|
2558
2558
|
// GET /public-api/resources/invoices/v1.0/{invoice}
|
|
2559
2559
|
|
|
2560
|
+
// GET /public-api/resources/invoices/v1.0/{invoice}/fiscalization-attempts
|
|
2561
|
+
|
|
2562
|
+
// GET /public-api/resources/invoices/v1.0/{invoice}/fiscalization-documents/download
|
|
2563
|
+
|
|
2560
2564
|
// GET /public-api/resources/issues/v1.0
|
|
2561
2565
|
|
|
2562
2566
|
// POST /public-api/resources/issues/v1.0
|
|
@@ -5229,6 +5233,11 @@ export const roamingTariffUpdateBody = z.object({
|
|
|
5229
5233
|
|
|
5230
5234
|
// GET /public-api/resources/sessions/v1.0/{session}
|
|
5231
5235
|
|
|
5236
|
+
// PATCH /public-api/resources/sessions/v1.0/{session}
|
|
5237
|
+
export const sessionUpdateBody = z.object({
|
|
5238
|
+
customFields: z.record(z.unknown())
|
|
5239
|
+
}).strict();
|
|
5240
|
+
|
|
5232
5241
|
// GET /public-api/resources/sessions/v1.0/{session}/consumption-stats
|
|
5233
5242
|
|
|
5234
5243
|
// GET /public-api/resources/sessions/v1.0/{session}/energy-coupon-session-consumptions
|
package/package.json
CHANGED