@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.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/package.json +1 -1
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({
|
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({
|