Skip to content

Commit f12dd40

Browse files
🔖 Version 4.34.0 (#402)
1 parent 6d76515 commit f12dd40

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v4.34.0 - 2025-12-02
4+
### Changes
5+
* :sparkles: add support for text context
6+
7+
38
## v4.33.1 - 2025-10-28
49
### Changes
510
* :loud_sound: add error code to v2 exceptions

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mindee",
3-
"version": "4.33.1",
3+
"version": "4.34.0",
44
"description": "Mindee Client Library for Node.js",
55
"main": "src/index.js",
66
"bin": "bin/mindee.js",

tests/v2/input/localResponse.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ async function assertLocalResponse(localResponse: LocalResponse) {
1616
expect(localResponse.isValidHmacSignature(dummySecretKey, "invalid signature")).to.be.false;
1717
expect(localResponse.getHmacSignature(dummySecretKey)).to.eq(signature);
1818
expect(localResponse.isValidHmacSignature(dummySecretKey, signature)).to.be.true;
19+
const inferenceResponse = await localResponse.deserializeResponse(InferenceResponse);
20+
expect(inferenceResponse).to.be.an.instanceof(InferenceResponse);
21+
expect(inferenceResponse.inference).to.not.be.null;
1922
}
2023

2124
describe("MindeeV2 - Load Local Response", () => {

0 commit comments

Comments
 (0)