UNPKG

@apideck/portman

Version:

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

12 lines (11 loc) 726 B
import { OasMappedOperation } from '../../oas'; import { PostmanMappedOperation } from '../../postman'; import { AssignVariablesConfig, CollectionVariableConfig, GlobalConfig, PortmanOptions } from '../../types'; export interface assignCollectionVariablesDTO { varSetting: CollectionVariableConfig; pmOperation: PostmanMappedOperation; oaOperation?: OasMappedOperation | null; options?: PortmanOptions; globals?: GlobalConfig; } export declare const assignCollectionVariables: (pmOperation: PostmanMappedOperation, oaOperation: OasMappedOperation | null, assignVariableConfig: AssignVariablesConfig, fixedValueCounter: number | string, options?: PortmanOptions, globals?: GlobalConfig) => number | string;