@kl1/contracts 1.0.46 → 1.0.47

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/index.mjs CHANGED
@@ -2439,7 +2439,11 @@ var ticketContract = initContract8().router(
2439
2439
  method: "PATCH",
2440
2440
  path: "/assignee/update/:id",
2441
2441
  pathParams: z35.object({ id: z35.string() }),
2442
- body: z35.object({ ticketId: z35.string(), assigneeId: z35.string() }),
2442
+ body: z35.object({
2443
+ ticketId: z35.string(),
2444
+ assigneeId: z35.string(),
2445
+ reason: z35.string().optional()
2446
+ }),
2443
2447
  headers: DefaultHeaderSchema,
2444
2448
  responses: {
2445
2449
  200: DefaultSuccessResponseSchema.extend({