@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.js
CHANGED
@@ -2494,7 +2494,11 @@ var ticketContract = (0, import_core8.initContract)().router(
|
|
2494
2494
|
method: "PATCH",
|
2495
2495
|
path: "/assignee/update/:id",
|
2496
2496
|
pathParams: import_zod35.default.object({ id: import_zod35.default.string() }),
|
2497
|
-
body: import_zod35.default.object({
|
2497
|
+
body: import_zod35.default.object({
|
2498
|
+
ticketId: import_zod35.default.string(),
|
2499
|
+
assigneeId: import_zod35.default.string(),
|
2500
|
+
reason: import_zod35.default.string().optional()
|
2501
|
+
}),
|
2498
2502
|
headers: DefaultHeaderSchema,
|
2499
2503
|
responses: {
|
2500
2504
|
200: DefaultSuccessResponseSchema.extend({
|