@ampeco/public-api-mcp 3.246.0 → 3.247.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 +36 -29
- package/dist/generated/response-schemas.json +65 -38
- package/dist/generated/schemas.d.ts +6 -6
- package/dist/generated/schemas.js +2 -2
- package/dist/generated/schemas.js.map +1 -1
- package/dist/generated/schemas.ts +2 -2
- package/package.json +1 -1
|
@@ -5000,12 +5000,12 @@ export const updatePcIdBody = z.object({
|
|
|
5000
5000
|
// POST /public-api/resources/reimbursement-policies/v1.0
|
|
5001
5001
|
export const reimbursementPolicyCreateBody = z.object({
|
|
5002
5002
|
name: z.string().max(255),
|
|
5003
|
-
electricityRateSource: z.enum(["policy", "charge_point"]),
|
|
5004
5003
|
validityStartsOn: z.string(),
|
|
5005
5004
|
partnerId: z.number().int().optional(),
|
|
5006
5005
|
partnerContractId: z.number().int().optional(),
|
|
5007
5006
|
electricityRateId: z.number().int().optional(),
|
|
5008
5007
|
validityEndsOn: z.string().optional(),
|
|
5008
|
+
electricityRateSource: z.enum(["policy", "charge_point"]),
|
|
5009
5009
|
operatorId: z.number().int().optional()
|
|
5010
5010
|
});
|
|
5011
5011
|
|
|
@@ -5016,8 +5016,8 @@ export const reimbursementPolicyCreateBody = z.object({
|
|
|
5016
5016
|
// PATCH /public-api/resources/reimbursement-policies/v1.0/{reimbursementPolicy}
|
|
5017
5017
|
export const reimbursementPolicyUpdateBody = z.object({
|
|
5018
5018
|
name: z.string().max(255).optional(),
|
|
5019
|
-
electricityRateSource: z.enum(["policy", "charge_point"]).optional(),
|
|
5020
5019
|
validityStartsOn: z.string().optional(),
|
|
5020
|
+
electricityRateSource: z.enum(["policy", "charge_point"]).optional(),
|
|
5021
5021
|
partnerId: z.number().int().optional(),
|
|
5022
5022
|
partnerContractId: z.number().int().optional(),
|
|
5023
5023
|
electricityRateId: z.number().int().optional(),
|
package/package.json
CHANGED