From 2679f5ebdff8a6de75e8034a47522fcac02f7c73 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sat, 17 Feb 2024 11:05:57 -0800 Subject: [PATCH] Fix postman importer TS ref --- plugins/importer-postman/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/importer-postman/src/index.ts b/plugins/importer-postman/src/index.ts index 52a213df..39c2cfbf 100644 --- a/plugins/importer-postman/src/index.ts +++ b/plugins/importer-postman/src/index.ts @@ -1,4 +1,4 @@ -import { Environment, Folder, HttpRequest, Workspace } from '../../../../src-web/lib/models'; +import { Environment, Folder, HttpRequest, Workspace } from '../../../src-web/lib/models'; const POSTMAN_2_1_0_SCHEMA = 'https://schema.getpostman.com/json/collection/v2.1.0/collection.json'; const POSTMAN_2_0_0_SCHEMA = 'https://schema.getpostman.com/json/collection/v2.0.0/collection.json';