@pdfvector/client 0.0.47 → 0.0.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @pdfvector/client
|
|
2
2
|
|
|
3
|
+
## 0.0.49
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#353](https://github.com/phuctm97/pdfvector/pull/353) [`f36260d`](https://github.com/phuctm97/pdfvector/commit/f36260d3f793f7b58b005dadd66adfd90dcdb598) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Persist invoice-reconcilable Azure usage meters, charge credits when provider work succeeds before a request error, and preserve overage usage in gateway totals.
|
|
8
|
+
- Updated dependencies [[`f36260d`](https://github.com/phuctm97/pdfvector/commit/f36260d3f793f7b58b005dadd66adfd90dcdb598)]:
|
|
9
|
+
- @pdfvector/instance-client@0.0.69
|
|
10
|
+
|
|
11
|
+
## 0.0.48
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
- [#344](https://github.com/phuctm97/pdfvector/pull/344) [`f73ad67`](https://github.com/phuctm97/pdfvector/commit/f73ad675d3d3a1c5f02faa209857e4db795fef40) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Move every application into the packages workspace, remove Turbo, simplify repository scripts, and enforce Biome, typechecking, and complete package coverage in validation.
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`f73ad67`](https://github.com/phuctm97/pdfvector/commit/f73ad675d3d3a1c5f02faa209857e4db795fef40)]:
|
|
19
|
+
- @pdfvector/instance-client@0.0.68
|
|
20
|
+
|
|
3
21
|
## 0.0.47
|
|
4
22
|
### Patch Changes
|
|
5
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdfvector/client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official TypeScript/JavaScript SDK for PDF Vector API",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,8 +23,9 @@
|
|
|
23
23
|
},
|
|
24
24
|
"main": ".tsc/lib/index.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@pdfvector/instance-client": "^0.0.
|
|
26
|
+
"@pdfvector/instance-client": "^0.0.69"
|
|
27
27
|
},
|
|
28
|
+
"types": ".tsc/lib/index.d.ts",
|
|
28
29
|
"files": [
|
|
29
30
|
".tsc",
|
|
30
31
|
"CHANGELOG.md"
|