@types/har-format
Advanced tools
Comparing version 1.2.15 to 1.2.16
@@ -299,2 +299,36 @@ /** | ||
/** | ||
* _non-standard_ | ||
* | ||
* This object describes the initiator of a request (the location of the | ||
* code that issued the request) and is used to populate the Entry's | ||
* non-standard `_initiator` field. | ||
*/ | ||
export interface Initiator { | ||
/** | ||
* presumably equivalent to _initiator_type | ||
* | ||
* values "parser" and "other" have been observed in Chrome's HARs | ||
*/ | ||
"type": string; | ||
/** | ||
* The URL of the code file in which the code that issued the | ||
* request represented by the Entry (this object's parent) resides. | ||
* This would otherwise be the string in the Entry's `_initiator` field. | ||
*/ | ||
"url"?: string | null | undefined; | ||
/** | ||
* The line number of the code that issued the request represented | ||
* by the Entry to which this Initiator object has been attached. | ||
*/ | ||
"lineNumber"?: number | null | undefined; | ||
/** | ||
* The column number of the code that issued the request. | ||
*/ | ||
"column"?: number | null | undefined; | ||
/** | ||
* The detail information that would be in `_initiator_detail`. | ||
*/ | ||
"detail"?: string | null | undefined; | ||
} | ||
/** | ||
* This object represents an array with all exported HTTP requests. Sorting | ||
@@ -425,5 +459,5 @@ * entries by `startedDateTime` (starting from the oldest) is preferred way how | ||
/** _non-standard_ */ | ||
_initiator?: string | null | undefined; | ||
_initiator?: Initiator | string | null | undefined; | ||
/** _non-standard_ */ | ||
_initiator_column?: string | null | undefined; | ||
_initiator_column?: number | null | undefined; | ||
/** _non-standard_ */ | ||
@@ -434,3 +468,3 @@ _initiator_detail?: string | null | undefined; | ||
/** _non-standard_ */ | ||
_initiator_line?: string | null | undefined; | ||
_initiator_line?: number | null | undefined; | ||
/** _non-standard_ */ | ||
@@ -437,0 +471,0 @@ _initiator_type?: string | null | undefined; |
{ | ||
"name": "@types/har-format", | ||
"version": "1.2.15", | ||
"version": "1.2.16", | ||
"description": "TypeScript definitions for har-format", | ||
@@ -28,5 +28,5 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/har-format", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "e63d7ea213011e64bcb2c4f9a90f51143dd5417a770523a75ff76680a13467ec", | ||
"typeScriptVersion": "4.5", | ||
"typesPublisherContentHash": "2c36d64ae0872dd4a5c1e2f93c986981bcd442dbf2e9b9a2ffea650bae7900b9", | ||
"typeScriptVersion": "4.8", | ||
"nonNpm": true | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 07 Nov 2023 03:09:37 GMT | ||
* Last updated: Sun, 29 Sep 2024 23:07:21 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33538
930