mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
25 lines
851 B
JavaScript
25 lines
851 B
JavaScript
// @flow
|
|
import { exportHAR, exportJSON, importRaw, importUri } from '../../common/import';
|
|
|
|
export function init(): { import: Object, export: Object } {
|
|
return {
|
|
import: {
|
|
async uri(uri: string, options: { workspaceId?: string } = {}): Promise<void> {
|
|
await importUri(options.workspaceId || null, uri);
|
|
},
|
|
async raw(text: string, options: { workspaceId?: string } = {}): Promise<void> {
|
|
await importRaw(options.workspaceId || null, text);
|
|
},
|
|
},
|
|
export: {
|
|
async insomnia(options: { includePrivate?: boolean } = {}): Promise<string> {
|
|
options = options || {};
|
|
return exportJSON(null, options.includePrivate);
|
|
},
|
|
async har(options: { includePrivate?: boolean } = {}): Promise<string> {
|
|
return exportHAR(null, options.includePrivate);
|
|
},
|
|
},
|
|
};
|
|
}
|