@@ -190,10 +190,10 @@ public async Task<GlossaryImportStatus> CheckGlossaryImportStatus(int glossaryId
190190 [ PublicAPI ]
191191 public Task < ResponseList < Term > > ListTerms (
192192 int glossaryId , int ? userId = null , string ? languageId = null ,
193- int ? translationOfTermId = null , int limit = 25 , int offset = 0 )
193+ int ? translationOfTermId = null , int ? conceptId = null , int limit = 25 , int offset = 0 )
194194 {
195195 return ListTerms ( glossaryId ,
196- new TermsListParams ( limit , offset , userId , languageId , translationOfTermId ) ) ;
196+ new TermsListParams ( limit , offset , userId , languageId , translationOfTermId , conceptId ) ) ;
197197 }
198198
199199 /// <summary>
@@ -228,12 +228,15 @@ public async Task<Term> AddTerm(int glossaryId, AddTermRequest request)
228228 /// <a href="https://support.crowdin.com/enterprise/api/#operation/api.glossaries.terms.deleteMany">Crowdin Enterprise API</a>
229229 /// </summary>
230230 [ PublicAPI ]
231- public async Task ClearGlossary ( int glossaryId , string ? languageId = null , int ? translationOfTermId = null )
231+ public async Task ClearGlossary (
232+ int glossaryId , string ? languageId = null ,
233+ int ? conceptId = null , int ? translationOfTermId = null )
232234 {
233235 string url = FormUrl_Terms ( glossaryId ) ;
234236
235237 var queryParams = new Dictionary < string , string > ( ) ;
236238 queryParams . AddParamIfPresent ( "languageId" , languageId ) ;
239+ queryParams . AddParamIfPresent ( "conceptId" , conceptId ) ;
237240 queryParams . AddParamIfPresent ( "translationOfTermId" , translationOfTermId ) ;
238241
239242 HttpStatusCode statusCode = await _apiClient . SendDeleteRequest ( url , queryParams ) ;
0 commit comments