@pdfvector/instance-client 0.0.45 → 0.0.47
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/.tsc/lib/index.d.ts +1 -1
- package/.tsc/lib/index.js +2 -2
- package/CHANGELOG.md +16 -0
- package/package.json +2 -2
package/.tsc/lib/index.d.ts
CHANGED
|
@@ -14,4 +14,4 @@ export interface ClientContext {
|
|
|
14
14
|
export type Client = Omit<ContractRouterClient<typeof contract, ClientContext>, "admin" | "free">;
|
|
15
15
|
export declare function createClient(options?: CreateClientOptions): Client;
|
|
16
16
|
export * from "@pdfvector/instance-contract";
|
|
17
|
-
export * from "./errors";
|
|
17
|
+
export * from "./errors.js";
|
package/.tsc/lib/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createORPCClient, RPCLink, } from "@pdfvector/instance-contract";
|
|
2
|
-
import { fromORPCError } from "./errors";
|
|
2
|
+
import { fromORPCError } from "./errors.js";
|
|
3
3
|
const DEFAULT_DOMAIN = "global.pdfvector.com";
|
|
4
4
|
function wrapWithErrorMapping(target) {
|
|
5
5
|
return new Proxy(target, {
|
|
@@ -53,4 +53,4 @@ export function createClient(options) {
|
|
|
53
53
|
return wrapWithErrorMapping(raw);
|
|
54
54
|
}
|
|
55
55
|
export * from "@pdfvector/instance-contract";
|
|
56
|
-
export * from "./errors";
|
|
56
|
+
export * from "./errors.js";
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pdfvector/instance-client
|
|
2
2
|
|
|
3
|
+
## 0.0.47
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
- Updated dependencies [[`9baa3b9`](https://github.com/phuctm97/pdfvector/commit/9baa3b96ac3b6884eaf28aa466f04397e65fc43a)]:
|
|
7
|
+
- @pdfvector/instance-contract@0.0.44
|
|
8
|
+
|
|
9
|
+
## 0.0.46
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
- [#226](https://github.com/phuctm97/pdfvector/pull/226) [`216ba54`](https://github.com/phuctm97/pdfvector/commit/216ba5427a32de5eb3346f0b3ff8d60f01fb8751) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Fix published ESM artifact import paths and bump zapier and make
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`216ba54`](https://github.com/phuctm97/pdfvector/commit/216ba5427a32de5eb3346f0b3ff8d60f01fb8751)]:
|
|
17
|
+
- @pdfvector/instance-contract@0.0.43
|
|
18
|
+
|
|
3
19
|
## 0.0.45
|
|
4
20
|
### Patch Changes
|
|
5
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdfvector/instance-client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.47",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Official TypeScript/JavaScript SDK for PDF Vector API - Parse PDF/Word/Image/Excel documents to clean, structured markdown format and search academic publications across multiple databases",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"main": ".tsc/lib/index.js",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@pdfvector/instance-contract": "^0.0.
|
|
36
|
+
"@pdfvector/instance-contract": "^0.0.44"
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
39
|
".tsc",
|