TypeScript SDK

@pontx/pinhere

Pinhere 缺陷协作 API 的运营方发布 SDK,覆盖当前 PontxSpec 的全部接口。

v0.1.0Node.js 18 / 20 / 22 CIESM + CommonJSTypeScript declarationsSDK 接口覆盖 34/34

SDK 质量门禁

v0.1.0 对应源码已在 Node.js 18 / 20 / 22 完成 100% UT 通过率与构建产物 E2E。

SDK quality: UT 100%, E2E passed
单元测试
10/10 · 100%
E2E
通过
测试提交
024321a
验证日期
2026-08-15

安装并调用

SDK 由 Pontx 生成器产生,并在发布前完成类型检查与构建验证。

安装 SDK
pnpm add @pontx/pinhere
TypeScript 调用
import { 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 检查参数,再按供应商要求提供自己的凭证。

独立 API CLI
pnpm add --global @pontx/pinhere

pontx-pinhere call issues getIssue --issueId iss_example --dry-run