File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "flagright"
33
44[tool .poetry ]
55name = " flagright"
6- version = " 1.8.32 "
6+ version = " 1.8.33 "
77description = " "
88readme = " README.md"
99authors = []
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ def __init__(
2222
2323 def get_headers (self ) -> typing .Dict [str , str ]:
2424 headers : typing .Dict [str , str ] = {
25- "User-Agent" : "flagright/1.8.32 " ,
25+ "User-Agent" : "flagright/1.8.33 " ,
2626 "X-Fern-Language" : "Python" ,
2727 "X-Fern-SDK-Name" : "flagright" ,
28- "X-Fern-SDK-Version" : "1.8.32 " ,
28+ "X-Fern-SDK-Version" : "1.8.33 " ,
2929 ** (self .get_custom_headers () or {}),
3030 }
3131 headers ["x-api-key" ] = self .api_key
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ class PepStatus(UniversalBaseModel):
1414 is_pep_hit : typing_extensions .Annotated [bool , FieldMetadata (alias = "isPepHit" )]
1515 pep_country : typing_extensions .Annotated [typing .Optional [CountryCode ], FieldMetadata (alias = "pepCountry" )] = None
1616 pep_rank : typing_extensions .Annotated [typing .Optional [PepRank ], FieldMetadata (alias = "pepRank" )] = None
17+ category : typing .Optional [str ] = None
1718
1819 if IS_PYDANTIC_V2 :
1920 model_config : typing .ClassVar [pydantic .ConfigDict ] = pydantic .ConfigDict (extra = "allow" , frozen = True ) # type: ignore # Pydantic v2
You can’t perform that action at this time.
0 commit comments