UNPKG

@apideck/portman

Version:

Port OpenAPI Spec to Postman Collection, with contract & variation tests included

14 lines (13 loc) 354 B
import { PortmanTestType } from './PortmanTestTypes'; export type PortmanReqTestType = { postmanItemId?: string; postmanName?: string; reqTestType?: PortmanTestType; }; export interface PortmanTestSuite { pmReqTestType?: PortmanReqTestType; } export interface Track { openApiOperationIds: string[]; openApiOperations: string[]; }