@@ -76,11 +76,25 @@ export class StackOverflowSDK {
76
76
export class TeamContext {
77
77
public readonly answers : AnswerClient ;
78
78
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 ;
79
86
80
87
constructor ( private config : ReturnType < typeof createConfiguration > , private teamId : string ) {
81
88
// Initialize team-specific clients
82
89
this . answers = new AnswerClient ( config , teamId ) ;
83
90
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 ) ;
84
98
}
85
99
}
86
100
0 commit comments