@@ -4216,6 +4216,7 @@ impl ApiKeyRequestParams {
42164216 remove_stop_words : self . remove_stop_words . or ( payload. remove_stop_words ) ,
42174217 user_id : payload. user_id ,
42184218 typo_options : self . typo_options . or ( payload. typo_options ) ,
4219+ metadata : payload. metadata ,
42194220 sort_options : payload. sort_options ,
42204221 scoring_options : payload. scoring_options ,
42214222 }
@@ -7890,6 +7891,7 @@ impl<'de> Deserialize<'de> for SearchOverGroupsReqPayload {
78907891 typo_options : Option < TypoOptions > ,
78917892 sort_options : Option < SortOptions > ,
78927893 scoring_options : Option < ScoringOptions > ,
7894+ metadata : Option < serde_json:: Value > ,
78937895 #[ serde( flatten) ]
78947896 other : std:: collections:: HashMap < String , serde_json:: Value > ,
78957897 }
@@ -7919,6 +7921,7 @@ impl<'de> Deserialize<'de> for SearchOverGroupsReqPayload {
79197921 typo_options : helper. typo_options ,
79207922 sort_options,
79217923 remove_stop_words : helper. remove_stop_words ,
7924+ metadata : helper. metadata ,
79227925 user_id : helper. user_id ,
79237926 scoring_options : helper. scoring_options ,
79247927 } )
0 commit comments