@@ -28,12 +28,14 @@ public class BrCosmeticV2SearchProperties
2828 public Optional < string > SetText { get ; set ; }
2929 public Optional < string > BackendSet { get ; set ; }
3030 public Optional < bool > HasIntroduction { get ; set ; }
31+ public Optional < int > BackendIntroduction { get ; set ; }
3132 public Optional < string > IntroductionChapter { get ; set ; }
3233 public Optional < string > IntroductionSeason { get ; set ; }
3334 public Optional < bool > HasFeaturedImage { get ; set ; }
3435 public Optional < bool > HasVariants { get ; set ; }
3536 public Optional < bool > HasGameplayTags { get ; set ; }
3637 public Optional < string > GameplayTag { get ; set ; }
38+ public Optional < string > DynamicPakId { get ; set ; }
3739 public Optional < DateTime > Added { get ; set ; }
3840 public Optional < DateTime > AddedSince { get ; set ; }
3941 public Optional < int > UnseenFor { get ; set ; }
@@ -143,6 +145,11 @@ internal IRestRequest AppendParameters(IRestRequest request)
143145 request . AddQueryParameter ( "hasIntroduction" , HasIntroduction . Value . GetString ( ) ) ;
144146 }
145147
148+ if ( BackendIntroduction . HasValue )
149+ {
150+ request . AddQueryParameter ( "backendIntroduction" , BackendIntroduction . Value . ToString ( ) ) ;
151+ }
152+
146153 if ( IntroductionChapter . HasValue )
147154 {
148155 request . AddQueryParameter ( "introductionChapter" , IntroductionChapter . Value ) ;
@@ -173,6 +180,11 @@ internal IRestRequest AppendParameters(IRestRequest request)
173180 request . AddQueryParameter ( "gameplayTag" , GameplayTag . Value ) ;
174181 }
175182
183+ if ( DynamicPakId . HasValue )
184+ {
185+ request . AddQueryParameter ( "dynamicPakId" , DynamicPakId . Value ) ;
186+ }
187+
176188 if ( Added . HasValue )
177189 {
178190 if ( Added . Value <= _unixEpoch )
0 commit comments