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: [], };