@alwaysmeticulous/api 2.29.1 → 2.30.1
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.
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
export interface HarLog {
|
|
2
|
-
|
|
2
|
+
entries: HarEntry[];
|
|
3
3
|
}
|
|
4
4
|
export interface HarEntry {
|
|
5
5
|
_order: number;
|
|
6
6
|
startedDateTime: string;
|
|
7
7
|
request: HarRequest;
|
|
8
8
|
response: HarResponse;
|
|
9
|
+
/**
|
|
10
|
+
* Time in ms between request started and response received.
|
|
11
|
+
*/
|
|
12
|
+
time: number;
|
|
9
13
|
}
|
|
10
14
|
export interface HarRequest {
|
|
11
15
|
url: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.30.1",
|
|
4
4
|
"description": "Meticulous API types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"bugs": {
|
|
35
35
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "e9b5274798b97abc5f83ba515a51164b2cf755ac"
|
|
38
38
|
}
|