33 *
44 * WARN: Do not edit directly.
55 *
6- * Generated on 2026-01-09T08:23:27.053Z
6+ * Generated on 2026-01-09T08:35:34.785Z
77 *
88 */
99import { validator } from "hono/validator" ;
@@ -102,12 +102,15 @@ import {
102102 modifyMessageCommandBodySchema ,
103103 modifyMessageCommandParamsSchema ,
104104 modifyProjectCommandBodySchema ,
105+ modifyProjectCommandParamsSchema ,
105106 modifyProjectUserCommandBodySchema ,
107+ modifyProjectUserCommandParamsSchema ,
106108 modifyRunCommandBodySchema ,
107109 modifyRunCommandParamsSchema ,
108110 modifyThreadCommandBodySchema ,
109111 modifyThreadCommandParamsSchema ,
110112 modifyUserCommandBodySchema ,
113+ modifyUserCommandParamsSchema ,
111114 modifyVectorStoreCommandBodySchema ,
112115 modifyVectorStoreCommandParamsSchema ,
113116 retrieveBatchCommandParamsSchema ,
@@ -539,6 +542,9 @@ export const modifyuser = [
539542 validator ( "json" , ( value ) => {
540543 return v . parse ( modifyUserCommandBodySchema , value ) ;
541544 } ) ,
545+ validator ( "param" , ( value ) => {
546+ return v . parse ( modifyUserCommandParamsSchema , value ) ;
547+ } ) ,
542548] as const ;
543549export const deleteuser = [
544550 validator ( "param" , ( value ) => {
@@ -564,6 +570,9 @@ export const modifyproject = [
564570 validator ( "json" , ( value ) => {
565571 return v . parse ( modifyProjectCommandBodySchema , value ) ;
566572 } ) ,
573+ validator ( "param" , ( value ) => {
574+ return v . parse ( modifyProjectCommandParamsSchema , value ) ;
575+ } ) ,
567576] as const ;
568577export const archiveproject = [
569578 validator ( "param" , ( value ) => {
@@ -595,6 +604,9 @@ export const modifyprojectuser = [
595604 validator ( "json" , ( value ) => {
596605 return v . parse ( modifyProjectUserCommandBodySchema , value ) ;
597606 } ) ,
607+ validator ( "param" , ( value ) => {
608+ return v . parse ( modifyProjectUserCommandParamsSchema , value ) ;
609+ } ) ,
598610] as const ;
599611export const deleteprojectuser = [
600612 validator ( "param" , ( value ) => {
0 commit comments