@@ -76,11 +76,25 @@ export class StackOverflowSDK {
7676export class TeamContext {
7777 public readonly answers : AnswerClient ;
7878 public readonly questions : QuestionClient ;
79+ public readonly collections : CollectionClient ;
80+ public readonly users : UserClient ;
81+ public readonly articles : ArticleClient ;
82+ public readonly comments : CommentClient ;
83+ public readonly tags : TagClient ;
84+ public readonly search : SearchClient ;
85+ public readonly usergroups : UserGroupClient ;
7986
8087 constructor ( private config : ReturnType < typeof createConfiguration > , private teamId : string ) {
8188 // Initialize team-specific clients
8289 this . answers = new AnswerClient ( config , teamId ) ;
8390 this . questions = new QuestionClient ( config , teamId ) ;
91+ this . collections = new CollectionClient ( config , teamId ) ;
92+ this . users = new UserClient ( config , teamId ) ;
93+ this . articles = new ArticleClient ( config , teamId ) ;
94+ this . comments = new CommentClient ( config , teamId ) ;
95+ this . tags = new TagClient ( config , teamId ) ;
96+ this . search = new SearchClient ( config , teamId ) ;
97+ this . usergroups = new UserGroupClient ( config , teamId ) ;
8498 }
8599}
86100
0 commit comments