@nicodoggie/node-kiwi-tcms-api
Version:
Vibe-coded Node.js wrapper for Kiwi TCMS XML-RPC API. Use at your own risk.
22 lines (21 loc) • 1.23 kB
TypeScript
/**
* Node.js wrapper for Kiwi TCMS XML-RPC API
*
* This library provides a comprehensive TypeScript/JavaScript interface
* for interacting with Kiwi TCMS test management system.
*
* @see https://kiwitcms.readthedocs.io/en/latest/modules/tcms.rpc.api.html
*/
import { KiwiTCMS as KiwiTCMSClass } from './kiwi-tcms';
export { KiwiTCMS } from './kiwi-tcms';
export { KiwiClient } from './client';
export * from './types';
export type { TestCaseWithPermalinks, TestPlanWithPermalinks, TestRunWithPermalinks, BugWithPermalinks, TestCaseFilterOptions, TestPlanFilterOptions, TestRunFilterOptions, FilterOutputOptions } from './types';
export { AuthAPI } from './modules/auth';
export { TestCaseAPI } from './modules/testcase';
export { TestPlanAPI } from './modules/testplan';
export { TestRunAPI } from './modules/testrun';
export { TestExecutionAPI } from './modules/testexecution';
export { ProductAPI, BuildAPI, ComponentAPI, ClassificationAPI, CategoryAPI, VersionAPI, PlanTypeAPI, PriorityAPI, TestCaseStatusAPI, TestExecutionStatusAPI, EnvironmentAPI, TagAPI, UserAPI, BugAPI } from './modules/management';
export { AttachmentAPI, MarkdownAPI, KiwiUtilsAPI, UrlAPI } from './modules/utilities';
export default KiwiTCMSClass;