File tree Expand file tree Collapse file tree
tests/Mindee.UnitTests/Parsing/V2 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Mindee .NET Client Library Changelog
22
3+ ## v3.32.0 - 2025-09-03
4+ ### Changes
5+ * :sparkles : add inference options
6+ ### ¡Breaking Changes!
7+ * :recycle : :boom : update raw text output from server
8+
9+
310## v3.31.0 - 2025-08-27
411### Changes
512* :sparkles : add typed properties to list and object
Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
3- <VersionPrefix >3.31 .0</VersionPrefix >
3+ <VersionPrefix >3.32 .0</VersionPrefix >
44 <VersionSuffix ></VersionSuffix >
55 <Authors >Mindee</Authors >
66 <PackageProjectUrl >https://github.com/mindee/mindee-api-dotnet</PackageProjectUrl >
Original file line number Diff line number Diff line change @@ -263,6 +263,10 @@ public void AsyncPredict_WhenComplete_MustHaveRawText()
263263 Assert . NotNull ( rawText ) ;
264264 Assert . NotNull ( rawText . Pages ) ;
265265 Assert . Equal ( 2 , rawText . Pages . Count ) ;
266+ foreach ( RawTextPage page in rawText . Pages )
267+ {
268+ Assert . NotNull ( page . Content ) ;
269+ }
266270 Assert . Equal ( "This is the raw text of the first page..." , rawText . Pages [ 0 ] . Content ) ;
267271 Assert . Equal (
268272 File . ReadAllText ( "Resources/v2/inference/raw_texts.txt" ) ,
You can’t perform that action at this time.
0 commit comments