interface PostmanItemimport { type PostmanItem } from "https://deno.land/x/graphman@v1.2.2/src/format.ts"; Propertiesname: stringrequest: { method: string; header: { key: string; value: string; }[]; body: { mode: string; graphql: { query: string; variables: string; }; }; url: { raw: string; protocol: string; host: string[]; path: string[]; }; description: string | null; }response: null[]