MCPcopy Index your code
hub / github.com/Kong/httpsnippet / RequestExtras

Interface RequestExtras

src/httpsnippet.ts:43–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41export type HarRequest = Omit<NpmHarRequest, 'postData'> & { postData: PostDataBase };
42
43export interface RequestExtras {
44 postData: PostDataBase & {
45 jsonObj?: ReducedHelperObject;
46 paramsObj?: ReducedHelperObject;
47 boundary?: string;
48 };
49 fullUrl: string;
50 queryObj: ReducedHelperObject;
51 headersObj: ReducedHelperObject;
52 uriObj: UrlWithParsedQuery;
53 cookiesObj: ReducedHelperObject;
54 allHeaders: ReducedHelperObject;
55}
56
57export type Request = HarRequest & RequestExtras;
58

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…