aiwg
Version:
Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo
29 lines • 728 B
TypeScript
/**
* Unpaywall API client
*
* @module research/clients/unpaywall
*/
import { BaseClient } from './base.js';
import { ClientConfig, ResearchPaper } from '../types.js';
/**
* Unpaywall API client
*/
export declare class UnpaywallClient extends BaseClient {
private email;
constructor(config?: Partial<ClientConfig> & {
email?: string;
});
/**
* Get paper by DOI
*/
getPaperByDoi(doi: string): Promise<ResearchPaper>;
/**
* Check if open access PDF is available for DOI
*/
checkOpenAccess(doi: string): Promise<string | null>;
/**
* Transform Unpaywall response to ResearchPaper
*/
private transformResponse;
}
//# sourceMappingURL=unpaywall.d.ts.map