@usebruno/converters
Version:
The converters package is responsible for converting collections from one format to a Bruno collection. It can be used as a standalone package or as a part of the Bruno framework.
38 lines (35 loc) • 1.13 kB
text/typescript
export { openCollectionToBruno } from './opencollection-to-bruno';
export { brunoToOpenCollection } from './bruno-to-opencollection';
export { fromOpenCollectionFolder, toOpenCollectionFolder } from './folder';
export { fromOpenCollectionEnvironments, toOpenCollectionEnvironments } from './environment';
export {
fromOpenCollectionItem,
toOpenCollectionItem,
fromOpenCollectionItems,
toOpenCollectionItems,
fromOpenCollectionHttpItem,
toOpenCollectionHttpItem,
fromOpenCollectionGraphqlItem,
toOpenCollectionGraphqlItem,
fromOpenCollectionGrpcItem,
toOpenCollectionGrpcItem,
fromOpenCollectionWebsocketItem,
toOpenCollectionWebsocketItem
} from './items';
export {
fromOpenCollectionAuth,
toOpenCollectionAuth,
fromOpenCollectionHeaders,
toOpenCollectionHeaders,
fromOpenCollectionParams,
toOpenCollectionParams,
fromOpenCollectionBody,
toOpenCollectionBody,
toOpenCollectionGraphqlBody,
fromOpenCollectionVariables,
toOpenCollectionVariables,
fromOpenCollectionScripts,
toOpenCollectionScripts,
fromOpenCollectionAssertions,
toOpenCollectionAssertions
} from './common';