@ampeco/public-api-mcp 3.100.4 → 3.101.1
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 +25 -10
- package/dist/generated/response-schemas.json +61 -4
- package/dist/generated/schemas.d.ts +6 -0
- package/dist/generated/schemas.d.ts.map +1 -1
- package/dist/generated/schemas.js +4 -2
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +4 -2
- package/package.json +1 -1
|
@@ -3526,7 +3526,8 @@ export const tariffCreateBody = z.object({
|
|
|
3526
3526
|
priceInformation: z.string().optional(),
|
|
3527
3527
|
totalCostInformation: z.string().optional()
|
|
3528
3528
|
}).optional(),
|
|
3529
|
-
integrationId: z.number().int().optional()
|
|
3529
|
+
integrationId: z.number().int().optional(),
|
|
3530
|
+
externalId: z.string().optional()
|
|
3530
3531
|
});
|
|
3531
3532
|
|
|
3532
3533
|
// GET /public-api/resources/tariffs/v1.0/{tariff}
|
|
@@ -3690,7 +3691,8 @@ export const tariffUpdateBody = z.object({
|
|
|
3690
3691
|
priceInformation: z.string().optional(),
|
|
3691
3692
|
totalCostInformation: z.string().optional()
|
|
3692
3693
|
}).optional(),
|
|
3693
|
-
integrationId: z.number().int().optional()
|
|
3694
|
+
integrationId: z.number().int().optional(),
|
|
3695
|
+
externalId: z.string().optional()
|
|
3694
3696
|
});
|
|
3695
3697
|
|
|
3696
3698
|
// DELETE /public-api/resources/tariffs/v1.0/{tariff}
|
package/package.json
CHANGED