File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Mindee Java API Library Changelog
2
2
3
+ ## v4.21.0 - 2024-10-13
4
+ ### Changes
5
+ * :sparkles : add support for business cards V1
6
+ * :sparkles : add support for delivery note V1
7
+ * :sparkles : add support for indian passport V1
8
+ * :sparkles : add support for resume V1.1
9
+ ### Fixes
10
+ * :recycle : add deserializer + extract custom deserializing date class
11
+ * :recycle : decrease default delays for auto-polling
12
+
13
+
3
14
## v4.20.0 - 2024-10-11
4
15
### Changes
5
16
* :sparkles : add support for Financial Document v1.10
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.mindee.sdk</groupId >
7
7
<artifactId >mindee-api-java</artifactId >
8
- <version >4.20 .0</version >
8
+ <version >4.21 .0</version >
9
9
<modelVersion >4.0.0</modelVersion >
10
10
<name >Mindee Java Helper Library</name >
11
11
<description >Java Library to call Mindee's Off-The-Shelf and Custom APIs</description >
Original file line number Diff line number Diff line change @@ -265,12 +265,12 @@ private void validateAsyncParams(AsyncPollingOptions pollingOptions) throws Mind
265
265
Integer minimumRetry = 2 ;
266
266
if (pollingOptions .getInitialDelaySec () < minimumInitialDelaySec ) {
267
267
throw new MindeeException (String .format (
268
- "Cannot set initial delay to less than %.0f seconds " , minimumInitialDelaySec
268
+ "Cannot set initial delay to less than %.0f second(s) " , minimumInitialDelaySec
269
269
));
270
270
}
271
271
if (pollingOptions .getIntervalSec () < minimumIntervalSec ) {
272
272
throw new MindeeException (String .format (
273
- "Cannot set auto-poll delay to less than %.0f seconds " , minimumIntervalSec
273
+ "Cannot set auto-poll delay to less than %.0f second(s) " , minimumIntervalSec
274
274
));
275
275
}
276
276
if (pollingOptions .getMaxRetries () < minimumRetry ) {
You can’t perform that action at this time.
0 commit comments