@@ -38,6 +38,12 @@ export const ripplingGetSupergroupTool: ToolConfig<RipplingGetSupergroupParams>
3838 app_owner_id : ( data . app_owner_id as string ) ?? null ,
3939 group_type : ( data . group_type as string ) ?? null ,
4040 name : ( data . name as string ) ?? null ,
41+ sub_group_type : ( data . sub_group_type as string ) ?? null ,
42+ read_only : ( data . read_only as boolean ) ?? null ,
43+ parent : ( data . parent as string ) ?? null ,
44+ mutually_exclusive_key : ( data . mutually_exclusive_key as string ) ?? null ,
45+ cumulatively_exhaustive_default : ( data . cumulatively_exhaustive_default as boolean ) ?? null ,
46+ include_terminated : ( data . include_terminated as boolean ) ?? null ,
4147 } ,
4248 }
4349 } ,
@@ -50,5 +56,23 @@ export const ripplingGetSupergroupTool: ToolConfig<RipplingGetSupergroupParams>
5056 app_owner_id : { type : 'string' , description : 'App owner ID' , optional : true } ,
5157 group_type : { type : 'string' , description : 'Group type' , optional : true } ,
5258 name : { type : 'string' , description : 'Name' , optional : true } ,
59+ sub_group_type : { type : 'string' , description : 'Sub group type' , optional : true } ,
60+ read_only : { type : 'boolean' , description : 'Whether the group is read only' , optional : true } ,
61+ parent : { type : 'string' , description : 'Parent group ID' , optional : true } ,
62+ mutually_exclusive_key : {
63+ type : 'string' ,
64+ description : 'Mutually exclusive key' ,
65+ optional : true ,
66+ } ,
67+ cumulatively_exhaustive_default : {
68+ type : 'boolean' ,
69+ description : 'Cumulatively exhaustive default' ,
70+ optional : true ,
71+ } ,
72+ include_terminated : {
73+ type : 'boolean' ,
74+ description : 'Whether the group includes terminated roles' ,
75+ optional : true ,
76+ } ,
5377 } ,
5478}
0 commit comments