mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
38 lines
920 B
JavaScript
38 lines
920 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);
|
|
}
|
|
}
|
|
};
|
|
}
|