@pdfvector/instance-client 0.0.42 → 0.0.44

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.
@@ -0,0 +1,93 @@
1
+ export type PDFVectorErrorCode = "BAD_REQUEST" | "UNAUTHORIZED" | "NOT_FOUND" | "TOO_MANY_REQUESTS" | "CONFLICT" | "NOT_IMPLEMENTED" | "UNPROCESSABLE_CONTENT" | "INTERNAL_SERVER_ERROR";
2
+ export interface PDFVectorErrorOptions {
3
+ code: PDFVectorErrorCode;
4
+ status: number;
5
+ message: string;
6
+ data?: Record<string, unknown> | undefined;
7
+ cause?: unknown;
8
+ }
9
+ type SubclassOptions = Omit<PDFVectorErrorOptions, "code" | "status">;
10
+ export declare class PDFVectorError extends Error {
11
+ readonly code: PDFVectorErrorCode;
12
+ readonly status: number;
13
+ readonly data: Record<string, unknown>;
14
+ readonly requestId?: number;
15
+ readonly documentId?: string;
16
+ readonly userError: boolean;
17
+ constructor(options: PDFVectorErrorOptions);
18
+ }
19
+ export declare class BadRequestError extends PDFVectorError {
20
+ constructor(options: SubclassOptions);
21
+ }
22
+ export declare class UnauthorizedError extends PDFVectorError {
23
+ constructor(options: SubclassOptions);
24
+ }
25
+ export declare class NotFoundError extends PDFVectorError {
26
+ constructor(options: SubclassOptions);
27
+ }
28
+ export declare class TooManyRequestsError extends PDFVectorError {
29
+ readonly limit?: number;
30
+ readonly resetAt?: string;
31
+ constructor(options: SubclassOptions);
32
+ }
33
+ export declare class ConflictError extends PDFVectorError {
34
+ constructor(options: SubclassOptions);
35
+ }
36
+ export declare class NotImplementedError extends PDFVectorError {
37
+ constructor(options: SubclassOptions);
38
+ }
39
+ export declare class UnprocessableContentError extends PDFVectorError {
40
+ constructor(options: SubclassOptions);
41
+ }
42
+ export declare class InternalServerError extends PDFVectorError {
43
+ constructor(options: SubclassOptions);
44
+ }
45
+ export declare class FileTooLargeError extends BadRequestError {
46
+ readonly fileSizeMB?: number;
47
+ readonly limitMB?: number;
48
+ readonly model?: string;
49
+ constructor(options: SubclassOptions);
50
+ }
51
+ export declare class PageLimitExceededError extends BadRequestError {
52
+ readonly pageCount?: number;
53
+ readonly pageLimit?: number;
54
+ readonly model?: string;
55
+ constructor(options: SubclassOptions);
56
+ }
57
+ export declare class PasswordProtectedError extends BadRequestError {
58
+ }
59
+ export declare class UnsupportedFormatError extends BadRequestError {
60
+ readonly format?: string;
61
+ readonly supportedFormats?: string;
62
+ constructor(options: SubclassOptions);
63
+ }
64
+ export declare class URLFetchError extends BadRequestError {
65
+ readonly url?: string;
66
+ readonly statusCode?: number;
67
+ readonly statusText?: string;
68
+ constructor(options: SubclassOptions);
69
+ }
70
+ export declare class TierNotSupportedError extends BadRequestError {
71
+ readonly documentType?: string;
72
+ readonly model?: string;
73
+ readonly allowedTypes?: string[];
74
+ constructor(options: SubclassOptions);
75
+ }
76
+ export declare class InvalidSchemaError extends BadRequestError {
77
+ readonly reason?: string;
78
+ constructor(options: SubclassOptions);
79
+ }
80
+ export declare class NoInputProvidedError extends BadRequestError {
81
+ }
82
+ export declare class EmptyDocumentError extends UnprocessableContentError {
83
+ }
84
+ export declare class NoTextDetectedError extends UnprocessableContentError {
85
+ }
86
+ export declare class ExtractionFailedError extends UnprocessableContentError {
87
+ readonly hint?: string;
88
+ readonly rawText?: string;
89
+ constructor(options: SubclassOptions);
90
+ }
91
+ export declare function fromORPCError(error: unknown): PDFVectorError | undefined;
92
+ export declare function isPDFVectorError(error: unknown): error is PDFVectorError;
93
+ export {};
@@ -0,0 +1,229 @@
1
+ import { ORPCError } from "@pdfvector/instance-contract";
2
+ function readNumber(data, key) {
3
+ const value = data?.[key];
4
+ return typeof value === "number" ? value : undefined;
5
+ }
6
+ function readString(data, key) {
7
+ const value = data?.[key];
8
+ return typeof value === "string" ? value : undefined;
9
+ }
10
+ function readStringArray(data, key) {
11
+ const value = data?.[key];
12
+ if (!Array.isArray(value))
13
+ return undefined;
14
+ const strings = value.filter((v) => typeof v === "string");
15
+ return strings.length === value.length ? strings : undefined;
16
+ }
17
+ export class PDFVectorError extends Error {
18
+ code;
19
+ status;
20
+ data;
21
+ requestId;
22
+ documentId;
23
+ userError;
24
+ constructor(options) {
25
+ super(options.message, options.cause ? { cause: options.cause } : undefined);
26
+ this.name = new.target.name;
27
+ this.code = options.code;
28
+ this.status = options.status;
29
+ this.data = options.data ?? {};
30
+ this.requestId = readNumber(this.data, "requestId");
31
+ this.documentId = readString(this.data, "documentId");
32
+ this.userError = this.data.userError === true;
33
+ }
34
+ }
35
+ export class BadRequestError extends PDFVectorError {
36
+ constructor(options) {
37
+ super({ ...options, code: "BAD_REQUEST", status: 400 });
38
+ }
39
+ }
40
+ export class UnauthorizedError extends PDFVectorError {
41
+ constructor(options) {
42
+ super({ ...options, code: "UNAUTHORIZED", status: 401 });
43
+ }
44
+ }
45
+ export class NotFoundError extends PDFVectorError {
46
+ constructor(options) {
47
+ super({ ...options, code: "NOT_FOUND", status: 404 });
48
+ }
49
+ }
50
+ export class TooManyRequestsError extends PDFVectorError {
51
+ limit;
52
+ resetAt;
53
+ constructor(options) {
54
+ super({ ...options, code: "TOO_MANY_REQUESTS", status: 429 });
55
+ this.limit = readNumber(options.data, "limit");
56
+ this.resetAt = readString(options.data, "resetAt");
57
+ }
58
+ }
59
+ export class ConflictError extends PDFVectorError {
60
+ constructor(options) {
61
+ super({ ...options, code: "CONFLICT", status: 409 });
62
+ }
63
+ }
64
+ export class NotImplementedError extends PDFVectorError {
65
+ constructor(options) {
66
+ super({ ...options, code: "NOT_IMPLEMENTED", status: 501 });
67
+ }
68
+ }
69
+ export class UnprocessableContentError extends PDFVectorError {
70
+ constructor(options) {
71
+ super({ ...options, code: "UNPROCESSABLE_CONTENT", status: 422 });
72
+ }
73
+ }
74
+ export class InternalServerError extends PDFVectorError {
75
+ constructor(options) {
76
+ super({ ...options, code: "INTERNAL_SERVER_ERROR", status: 500 });
77
+ }
78
+ }
79
+ export class FileTooLargeError extends BadRequestError {
80
+ fileSizeMB;
81
+ limitMB;
82
+ model;
83
+ constructor(options) {
84
+ super(options);
85
+ this.fileSizeMB = readNumber(options.data, "fileSizeMB");
86
+ this.limitMB = readNumber(options.data, "limitMB");
87
+ this.model = readString(options.data, "model");
88
+ }
89
+ }
90
+ export class PageLimitExceededError extends BadRequestError {
91
+ pageCount;
92
+ pageLimit;
93
+ model;
94
+ constructor(options) {
95
+ super(options);
96
+ this.pageCount = readNumber(options.data, "pageCount");
97
+ this.pageLimit = readNumber(options.data, "pageLimit");
98
+ this.model = readString(options.data, "model");
99
+ }
100
+ }
101
+ export class PasswordProtectedError extends BadRequestError {
102
+ }
103
+ export class UnsupportedFormatError extends BadRequestError {
104
+ format;
105
+ supportedFormats;
106
+ constructor(options) {
107
+ super(options);
108
+ this.format = readString(options.data, "format");
109
+ this.supportedFormats = readString(options.data, "supportedFormats");
110
+ }
111
+ }
112
+ export class URLFetchError extends BadRequestError {
113
+ url;
114
+ statusCode;
115
+ statusText;
116
+ constructor(options) {
117
+ super(options);
118
+ this.url = readString(options.data, "url");
119
+ this.statusCode = readNumber(options.data, "statusCode");
120
+ this.statusText = readString(options.data, "statusText");
121
+ }
122
+ }
123
+ export class TierNotSupportedError extends BadRequestError {
124
+ documentType;
125
+ model;
126
+ allowedTypes;
127
+ constructor(options) {
128
+ super(options);
129
+ this.documentType = readString(options.data, "documentType");
130
+ this.model = readString(options.data, "model");
131
+ this.allowedTypes = readStringArray(options.data, "allowedTypes");
132
+ }
133
+ }
134
+ export class InvalidSchemaError extends BadRequestError {
135
+ reason;
136
+ constructor(options) {
137
+ super(options);
138
+ this.reason = readString(options.data, "reason");
139
+ }
140
+ }
141
+ export class NoInputProvidedError extends BadRequestError {
142
+ }
143
+ export class EmptyDocumentError extends UnprocessableContentError {
144
+ }
145
+ export class NoTextDetectedError extends UnprocessableContentError {
146
+ }
147
+ export class ExtractionFailedError extends UnprocessableContentError {
148
+ hint;
149
+ rawText;
150
+ constructor(options) {
151
+ super(options);
152
+ this.hint = readString(options.data, "hint");
153
+ this.rawText = readString(options.data, "rawText");
154
+ }
155
+ }
156
+ const ORPC_CODE_TO_CLASS = {
157
+ BAD_REQUEST: BadRequestError,
158
+ UNAUTHORIZED: UnauthorizedError,
159
+ NOT_FOUND: NotFoundError,
160
+ TOO_MANY_REQUESTS: TooManyRequestsError,
161
+ CONFLICT: ConflictError,
162
+ NOT_IMPLEMENTED: NotImplementedError,
163
+ UNPROCESSABLE_CONTENT: UnprocessableContentError,
164
+ INTERNAL_SERVER_ERROR: InternalServerError,
165
+ };
166
+ function isPDFVectorErrorCode(code) {
167
+ return code in ORPC_CODE_TO_CLASS;
168
+ }
169
+ function selectSpecializedClass(code, message, data) {
170
+ const lower = message.toLowerCase();
171
+ if (code === "BAD_REQUEST") {
172
+ if (lower.includes("password-protected"))
173
+ return PasswordProtectedError;
174
+ if (lower.startsWith("file too large"))
175
+ return FileTooLargeError;
176
+ if (lower.startsWith("document has") &&
177
+ lower.includes("page") &&
178
+ lower.includes("limit"))
179
+ return PageLimitExceededError;
180
+ if (lower.startsWith("file type") &&
181
+ lower.includes("not supported for the"))
182
+ return TierNotSupportedError;
183
+ if (lower.startsWith("invalid json schema"))
184
+ return InvalidSchemaError;
185
+ if (lower.includes("unsupported format") ||
186
+ lower.includes("does not contain any supported document files"))
187
+ return UnsupportedFormatError;
188
+ if (lower.startsWith("failed to fetch document from url") ||
189
+ lower.startsWith("url did not return a supported document") ||
190
+ lower.includes("returned an html page instead of a document"))
191
+ return URLFetchError;
192
+ if (lower.startsWith("no input provided") ||
193
+ lower.startsWith("empty document content"))
194
+ return NoInputProvidedError;
195
+ }
196
+ if (code === "UNPROCESSABLE_CONTENT") {
197
+ if (lower.includes("does not appear to contain any readable text") ||
198
+ lower.includes("does not appear to contain any text"))
199
+ return NoTextDetectedError;
200
+ if (lower.includes("no text content detected") ||
201
+ lower.includes("document appears to be empty"))
202
+ return EmptyDocumentError;
203
+ if (lower.startsWith("failed to extract structured data"))
204
+ return ExtractionFailedError;
205
+ if (data.hint !== undefined || data.rawText !== undefined)
206
+ return ExtractionFailedError;
207
+ }
208
+ return ORPC_CODE_TO_CLASS[code];
209
+ }
210
+ export function fromORPCError(error) {
211
+ if (error instanceof PDFVectorError)
212
+ return error;
213
+ if (!(error instanceof ORPCError))
214
+ return undefined;
215
+ if (!isPDFVectorErrorCode(error.code))
216
+ return undefined;
217
+ const data = error.data != null && typeof error.data === "object"
218
+ ? error.data
219
+ : {};
220
+ const ErrorClass = selectSpecializedClass(error.code, error.message, data);
221
+ return new ErrorClass({
222
+ message: error.message,
223
+ data,
224
+ cause: error,
225
+ });
226
+ }
227
+ export function isPDFVectorError(error) {
228
+ return error instanceof PDFVectorError;
229
+ }
@@ -11,3 +11,4 @@ export interface ClientContext {
11
11
  export type Client = Omit<ContractRouterClient<typeof contract, ClientContext>, "admin" | "free">;
12
12
  export declare function createClient(options?: CreateClientOptions): Client;
13
13
  export * from "@pdfvector/instance-contract";
14
+ export * from "./errors";
package/.tsc/lib/index.js CHANGED
@@ -1,5 +1,34 @@
1
1
  import { createORPCClient, RPCLink, } from "@pdfvector/instance-contract";
2
+ import { fromORPCError } from "./errors";
2
3
  const DEFAULT_DOMAIN = "global.pdfvector.com";
4
+ function wrapWithErrorMapping(target) {
5
+ return new Proxy(target, {
6
+ apply(obj, thisArg, args) {
7
+ try {
8
+ const result = Reflect.apply(obj, thisArg, args);
9
+ if (result instanceof Promise) {
10
+ return result.catch((err) => {
11
+ const mapped = fromORPCError(err);
12
+ throw mapped ?? err;
13
+ });
14
+ }
15
+ return result;
16
+ }
17
+ catch (err) {
18
+ const mapped = fromORPCError(err);
19
+ throw mapped ?? err;
20
+ }
21
+ },
22
+ get(obj, prop, receiver) {
23
+ const value = Reflect.get(obj, prop, receiver);
24
+ if (value !== null &&
25
+ (typeof value === "object" || typeof value === "function")) {
26
+ return wrapWithErrorMapping(value);
27
+ }
28
+ return value;
29
+ },
30
+ });
31
+ }
3
32
  export function createClient(options) {
4
33
  const domain = options?.domain ?? DEFAULT_DOMAIN;
5
34
  const isLocal = domain.startsWith("localhost") || domain.startsWith("127.0.0.1");
@@ -17,6 +46,8 @@ export function createClient(options) {
17
46
  },
18
47
  fetch: (input, init) => fetch(input, token ? init : { ...init, credentials: "include" }),
19
48
  });
20
- return createORPCClient(link);
49
+ const raw = createORPCClient(link);
50
+ return wrapWithErrorMapping(raw);
21
51
  }
22
52
  export * from "@pdfvector/instance-contract";
53
+ export * from "./errors";
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @pdfvector/instance-client
2
2
 
3
+ ## 0.0.44
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#222](https://github.com/phuctm97/pdfvector/pull/222) [`3b78122`](https://github.com/phuctm97/pdfvector/commit/3b78122a35206b85be4ac61813ad1691ad57b866) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Re-trigger releases for client, instance-client, and gateway-server (previous attempt failed at frozen-lockfile install before publish)
9
+
10
+ ## 0.0.43
11
+ ### Patch Changes
12
+
13
+
14
+
15
+ - [#221](https://github.com/phuctm97/pdfvector/pull/221) [`84b9c58`](https://github.com/phuctm97/pdfvector/commit/84b9c58ce1a4f920e163f1666f738c83b3faa5c2) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Add typed PDFVectorError class hierarchy to instance-client SDK
16
+
3
17
  ## 0.0.42
4
18
  ### Patch Changes
5
19
 
package/README.md CHANGED
@@ -580,14 +580,12 @@ console.log(resultB.documentId); // "doc-b"
580
580
 
581
581
  ## Error Handling
582
582
 
583
- All API errors are thrown as `ORPCError` instances with structured error information matching the server's error response shape:
583
+ All API errors are thrown as `PDFVectorError` instances. The SDK transparently maps every server error into the most specific subclass it can, so you can branch on the type using `instanceof` and read typed metadata fields directly.
584
584
 
585
585
  ```typescript
586
- import { createClient, ORPCError } from "@pdfvector/instance-client";
586
+ import { createClient, PDFVectorError } from "@pdfvector/instance-client";
587
587
 
588
- const client = createClient({
589
- apiKey: "your-api-key",
590
- });
588
+ const client = createClient({ apiKey: "your-api-key" });
591
589
 
592
590
  try {
593
591
  const result = await client.document.parse({
@@ -595,10 +593,12 @@ try {
595
593
  });
596
594
  console.log(result.markdown);
597
595
  } catch (error) {
598
- if (error instanceof ORPCError) {
596
+ if (error instanceof PDFVectorError) {
599
597
  console.error(`API Error [${error.code}]: ${error.message}`);
600
598
  console.error(`HTTP Status: ${error.status}`);
601
- console.error(`Error Data:`, error.data);
599
+ console.error(`Request ID: ${error.requestId}`); // server-assigned, useful for support
600
+ console.error(`Document ID: ${error.documentId}`); // echoed back if you set one
601
+ console.error(`User error: ${error.userError}`); // true if caused by your input
602
602
  } else {
603
603
  // Network errors (DNS, connection refused, timeout) bubble up as TypeError.
604
604
  console.error("Unexpected Error:", error);
@@ -606,13 +606,62 @@ try {
606
606
  }
607
607
  ```
608
608
 
609
- You can branch on the error code:
609
+ ### Branching on specific error types
610
+
611
+ Every error class extends `PDFVectorError`, so you can use `instanceof` to handle specific cases. Specialized subclasses expose typed fields pulled from the error's `data` payload:
612
+
613
+ ```typescript
614
+ import {
615
+ createClient,
616
+ FileTooLargeError,
617
+ PageLimitExceededError,
618
+ PasswordProtectedError,
619
+ URLFetchError,
620
+ UnauthorizedError,
621
+ TooManyRequestsError,
622
+ EmptyDocumentError,
623
+ ExtractionFailedError,
624
+ PDFVectorError,
625
+ } from "@pdfvector/instance-client";
626
+
627
+ try {
628
+ await client.document.parse({ url: "...", model: "nano" });
629
+ } catch (error) {
630
+ if (error instanceof FileTooLargeError) {
631
+ console.error(
632
+ `File ${error.fileSizeMB}MB exceeds ${error.limitMB}MB limit for the '${error.model}' model`,
633
+ );
634
+ } else if (error instanceof PageLimitExceededError) {
635
+ console.error(
636
+ `Document has ${error.pageCount} pages — ${error.model} only supports up to ${error.pageLimit}`,
637
+ );
638
+ } else if (error instanceof PasswordProtectedError) {
639
+ console.error("Remove the password from the file and try again");
640
+ } else if (error instanceof URLFetchError) {
641
+ console.error(`Could not fetch ${error.url}: ${error.statusCode} ${error.statusText}`);
642
+ } else if (error instanceof UnauthorizedError) {
643
+ console.error("Invalid API key — check your dashboard");
644
+ } else if (error instanceof TooManyRequestsError) {
645
+ console.error(`Rate limit ${error.limit} exceeded; resets at ${error.resetAt}`);
646
+ } else if (error instanceof EmptyDocumentError) {
647
+ console.error("The document has no readable content");
648
+ } else if (error instanceof ExtractionFailedError) {
649
+ console.error(`Extraction failed. Hint: ${error.hint}`);
650
+ if (error.rawText) console.error(`Model output sample: ${error.rawText}`);
651
+ } else if (error instanceof PDFVectorError) {
652
+ // Catch-all for any error code not specifically handled
653
+ console.error(`API Error [${error.code}]: ${error.message}`);
654
+ }
655
+ }
656
+ ```
657
+
658
+ You can also branch on the error code if you prefer:
610
659
 
611
660
  ```typescript
612
661
  try {
613
662
  await client.document.parse({ url: "..." });
614
663
  } catch (error) {
615
- if (error instanceof ORPCError) {
664
+ if (error instanceof PDFVectorError) {
616
665
  switch (error.code) {
617
666
  case "UNAUTHORIZED":
618
667
  console.error("Invalid API key");
@@ -620,23 +669,83 @@ try {
620
669
  case "BAD_REQUEST":
621
670
  console.error("Validation error:", error.message);
622
671
  break;
672
+ case "UNPROCESSABLE_CONTENT":
673
+ console.error("Could not process document:", error.message);
674
+ break;
623
675
  case "INTERNAL_SERVER_ERROR":
624
- console.error("Server error:", error.message);
676
+ console.error(`Server error (requestId: ${error.requestId}):`, error.message);
625
677
  break;
626
678
  }
627
679
  }
628
680
  }
629
681
  ```
630
682
 
683
+ ### Error Class Hierarchy
684
+
685
+ ```
686
+ PDFVectorError
687
+ ├── BadRequestError (400)
688
+ │ ├── FileTooLargeError — fileSizeMB, limitMB, model
689
+ │ ├── PageLimitExceededError — pageCount, pageLimit, model
690
+ │ ├── PasswordProtectedError
691
+ │ ├── UnsupportedFormatError — format, supportedFormats
692
+ │ ├── URLFetchError — url, statusCode, statusText
693
+ │ ├── TierNotSupportedError — documentType, model, allowedTypes
694
+ │ ├── InvalidSchemaError — reason
695
+ │ └── NoInputProvidedError
696
+ ├── UnauthorizedError (401)
697
+ ├── NotFoundError (404)
698
+ ├── ConflictError (409)
699
+ ├── TooManyRequestsError (429) — limit, resetAt
700
+ ├── UnprocessableContentError (422)
701
+ │ ├── EmptyDocumentError
702
+ │ ├── NoTextDetectedError
703
+ │ └── ExtractionFailedError — hint, rawText
704
+ ├── InternalServerError (500)
705
+ └── NotImplementedError (501)
706
+ ```
707
+
708
+ ### Common fields on every `PDFVectorError`
709
+
710
+ | Field | Type | Description |
711
+ |-------|------|-------------|
712
+ | `code` | `string` | The ORPC error code (`BAD_REQUEST`, `UNAUTHORIZED`, etc.) |
713
+ | `status` | `number` | HTTP status code (400, 401, 404, 409, 422, 429, 500, 501) |
714
+ | `message` | `string` | Human-readable error message |
715
+ | `data` | `Record<string, unknown>` | Raw error payload from the server |
716
+ | `requestId` | `number \| undefined` | Server-assigned request ID — include in support tickets |
717
+ | `documentId` | `string \| undefined` | Echoed back if you passed `context.documentId` |
718
+ | `userError` | `boolean` | `true` if the failure was caused by your input (vs. a server-side issue) |
719
+ | `cause` | `unknown` | Original error (the underlying `ORPCError` from the wire) |
720
+
721
+ ### Type guard
722
+
723
+ If you'd rather not import `PDFVectorError` just to do an `instanceof` check, use the `isPDFVectorError` guard:
724
+
725
+ ```typescript
726
+ import { isPDFVectorError } from "@pdfvector/instance-client";
727
+
728
+ try {
729
+ await client.document.parse({ url: "..." });
730
+ } catch (error) {
731
+ if (isPDFVectorError(error)) {
732
+ console.error(error.code, error.message, error.requestId);
733
+ }
734
+ }
735
+ ```
736
+
631
737
  ### Error Codes
632
738
 
633
739
  | Code | Status | Description |
634
740
  |------|--------|-------------|
635
- | `BAD_REQUEST` | 400 | Input validation failed (e.g., missing fields, invalid URL, question too short) |
741
+ | `BAD_REQUEST` | 400 | Input validation failed (e.g., missing fields, invalid URL, file too large, page limit exceeded, invalid JSON Schema) |
636
742
  | `UNAUTHORIZED` | 401 | Missing or invalid API key |
637
- | `UNPROCESSABLE_CONTENT` | 422 | Document could not be processed by the requested model tier |
743
+ | `NOT_FOUND` | 404 | Resource not found (e.g., academic paper ID, version) |
744
+ | `CONFLICT` | 409 | Operation conflicts with the current state |
745
+ | `UNPROCESSABLE_CONTENT` | 422 | Document could not be processed (empty, no readable text, extraction failed) |
638
746
  | `TOO_MANY_REQUESTS` | 429 | Rate limit exceeded |
639
- | `INTERNAL_SERVER_ERROR` | 500 | Server-side failure |
747
+ | `INTERNAL_SERVER_ERROR` | 500 | Server-side failure — capture the `requestId` for support |
748
+ | `NOT_IMPLEMENTED` | 501 | Endpoint not available on this instance |
640
749
 
641
750
  ## TypeScript Support
642
751
 
@@ -645,6 +754,31 @@ The SDK is written in TypeScript and includes full type definitions:
645
754
  ```typescript
646
755
  import {
647
756
  createClient,
757
+ isPDFVectorError,
758
+ // Base error class — all errors inherit from this
759
+ PDFVectorError,
760
+ // HTTP-aligned error categories
761
+ BadRequestError,
762
+ UnauthorizedError,
763
+ NotFoundError,
764
+ ConflictError,
765
+ TooManyRequestsError,
766
+ UnprocessableContentError,
767
+ InternalServerError,
768
+ NotImplementedError,
769
+ // Specialized error subclasses with typed metadata
770
+ FileTooLargeError,
771
+ PageLimitExceededError,
772
+ PasswordProtectedError,
773
+ UnsupportedFormatError,
774
+ URLFetchError,
775
+ TierNotSupportedError,
776
+ InvalidSchemaError,
777
+ NoInputProvidedError,
778
+ EmptyDocumentError,
779
+ NoTextDetectedError,
780
+ ExtractionFailedError,
781
+ // Underlying ORPC error — re-exported for advanced use cases
648
782
  ORPCError,
649
783
  } from "@pdfvector/instance-client";
650
784
 
@@ -655,6 +789,7 @@ import type {
655
789
  ContractInputs,
656
790
  ContractOutputs,
657
791
  PDFVectorModel,
792
+ PDFVectorErrorCode,
658
793
  } from "@pdfvector/instance-client";
659
794
  ```
660
795
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfvector/instance-client",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
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",