Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/har-format

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/har-format - npm Package Compare versions

Comparing version 1.2.15 to 1.2.16

40

har-format/index.d.ts

@@ -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;

6

har-format/package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc