@absolutejs/absolute 0.19.0-beta.1042 → 0.19.0-beta.1044

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ export declare const runHeapDiff: (beforePath?: string, afterPath?: string) => void;
@@ -8,4 +8,5 @@ export declare const fetchRequests: (url: string) => Promise<RequestRecord[] | n
8
8
  export declare const findServer: () => Promise<LiveInstance | null>;
9
9
  export declare const formatRequestRow: (record: RequestRecord, pathWidth: number) => string;
10
10
  export declare const pathColumnWidth: (totalWidth: number) => number;
11
+ export declare const requestDetail: (record: RequestRecord) => string[];
11
12
  export declare const requestHeader: (pathWidth: number) => string;
@@ -0,0 +1 @@
1
+ export declare const runAnalyze: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runApi: (args: string[]) => Promise<void>;
@@ -49,6 +49,9 @@ export type RequestRecord = {
49
49
  kind: RequestKind;
50
50
  method: string;
51
51
  path: string;
52
+ query: string;
53
+ requestHeaders: Record<string, string>;
54
+ responseHeaders: Record<string, string>;
52
55
  size: number | null;
53
56
  status: number;
54
57
  };
package/package.json CHANGED
@@ -411,7 +411,7 @@
411
411
  ]
412
412
  }
413
413
  },
414
- "version": "0.19.0-beta.1042",
414
+ "version": "0.19.0-beta.1044",
415
415
  "workspaces": [
416
416
  "tests/fixtures/*",
417
417
  "tests/fixtures/_packages/*"