Consolidate the .NET, Java, and Node SDKs into root-level pdftract-<lang>/ directories (matching the already-tracked pdftract-go/), per the decision to make the generated SDKs first-class monorepo members rather than separate repos. Content imported from the standalone ~/pdftract-<lang> repos (build artifacts excluded). Removes the broken empty-git nested clones that were polluting the working tree. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
33 lines
799 B
TypeScript
33 lines
799 B
TypeScript
/**
|
|
* pdftract Node.js SDK
|
|
* Auto-generated - do not edit manually
|
|
*/
|
|
|
|
export { Client, path, url, bytes } from './codegen/methods.js';
|
|
export type {
|
|
Source,
|
|
PathSource,
|
|
URLSource,
|
|
BytesSource,
|
|
Document,
|
|
Page,
|
|
Span,
|
|
Block,
|
|
Match,
|
|
Fingerprint,
|
|
Classification,
|
|
Metadata,
|
|
ExtractOptions,
|
|
SearchOptions,
|
|
BaseOptions,
|
|
HashOptions,
|
|
Receipt
|
|
} from './codegen/types.js';
|
|
|
|
export { PdftractError } from './codegen/errors.js';
|
|
export { CorruptPdfError } from './codegen/errors.js';
|
|
export { EncryptionError } from './codegen/errors.js';
|
|
export { SourceUnreachableError } from './codegen/errors.js';
|
|
export { RemoteFetchInterruptedError } from './codegen/errors.js';
|
|
export { TlsError } from './codegen/errors.js';
|
|
export { ReceiptVerifyError } from './codegen/errors.js';
|