UNPKG

@smartbear/mcp

Version:

MCP server for interacting SmartBear Products

25 lines (24 loc) 820 B
import { DEFAULT_FILTER, DEFAULT_FOLDER_OPTIONS, DEFAULT_PAGINATION, DEFAULT_SORT, } from "./common.js"; export const DEFAULT_FETCH_REQUIREMENTS_PAYLOAD = { ...DEFAULT_PAGINATION, ...DEFAULT_FILTER, ...DEFAULT_FOLDER_OPTIONS, ...DEFAULT_SORT, udfFilter: "[]", isJiraFilter: false, filterType: "QMETRY", /** * Prevents filter persistence in the QMetry web application UI. * Always set to false to ensure filters are not saved when fetching test cases via API. */ isFilterSaveRequired: false, }; export const DEFAULT_FETCH_REQUIREMENT_DETAILS_PAYLOAD = { // No defaults needed for this simple payload }; export const DEFAULT_FETCH_REQUIREMENTS_LINKED_TO_TESTCASE_PAYLOAD = { ...DEFAULT_PAGINATION, ...DEFAULT_FILTER, getLinked: true, rqFolderPath: "", };