TypeScript SDK
@pontx/pinhere
Pinhere 缺陷协作 API 的运营方发布 SDK,覆盖当前 PontxSpec 的全部接口。
SDK 质量门禁
v0.1.0 对应源码已在 Node.js 18 / 20 / 22 完成 100% UT 通过率与构建产物 E2E。
安装并调用
SDK 由 Pontx 生成器产生,并在发布前完成类型检查与构建验证。
pnpm add @pontx/pinhereimport { createPinhereClient } from "@pontx/pinhere";
const client = createPinhereClient({
accessToken: process.env.PINHERE_ACCESS_TOKEN
});
const issues = await client.issues.listIssues({
projectId: "prj_example",
status: "open"
});命令行调用
此 npm 包同时发布面向该 API 的独立 CLI;先用 dry-run 检查参数,再按供应商要求提供自己的凭证。
pnpm add --global @pontx/pinhere
pontx-pinhere call issues getIssue --issueId iss_example --dry-run