@ampeco/public-api-mcp 3.236.1 → 3.238.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.
@@ -4949,7 +4949,7 @@ export const reimbursementPolicyUpdateBody = z.object({
4949
4949
  // POST /public-api/resources/rfid-tags/v1.0
4950
4950
  export const rfidTagCreateDeprecatedBody = z.object({
4951
4951
  id: z.number().int().optional(),
4952
- rfidTagUid: z.string(),
4952
+ rfidTagUid: z.string().max(255),
4953
4953
  rfidLabel: z.string().optional(),
4954
4954
  expireAt: z.string().optional(),
4955
4955
  createdAt: z.string().optional(),
@@ -4965,7 +4965,7 @@ export const rfidTagCreateDeprecatedBody = z.object({
4965
4965
  // PATCH /public-api/resources/rfid-tags/v1.0/{rfidTag}
4966
4966
  export const rfidTagUpdateDeprecatedBody = z.object({
4967
4967
  id: z.number().int().optional(),
4968
- rfidTagUid: z.string(),
4968
+ rfidTagUid: z.string().max(255),
4969
4969
  rfidLabel: z.string().optional(),
4970
4970
  expireAt: z.string().optional(),
4971
4971
  createdAt: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampeco/public-api-mcp",
3
- "version": "3.236.1",
3
+ "version": "3.238.0",
4
4
  "description": "MCP server that dynamically exposes the AMPECO.CHARGE Public API defined by an OpenAPI 3 specification",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",