From 20e354dbfd7d1d467bacd3705590b49940a1cdbb Mon Sep 17 00:00:00 2001 From: nohehf <64989428+nohehf@users.noreply.github.com> Date: Fri, 23 Sep 2022 15:39:55 +0200 Subject: [PATCH] feat: add description field to requests (#38) --- src/format.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/format.ts b/src/format.ts index e8ad3e5..5150b00 100644 --- a/src/format.ts +++ b/src/format.ts @@ -21,6 +21,7 @@ export interface PostmanItem { host: string[]; path: string[]; }; + description: string | null; }; response: null[]; } @@ -71,6 +72,7 @@ function queryToItem( host, path, }, + description: query.outrospectQuery.description ?? null, }, response: [], };