Socket
Socket
Sign inDemoInstall

@sentry/types

Package Overview
Dependencies
Maintainers
11
Versions
463
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/types - npm Package Compare versions

Comparing version 7.80.2-alpha.1 to 7.81.0

2

package.json
{
"name": "@sentry/types",
"version": "7.80.2-alpha.1",
"version": "7.81.0",
"description": "Types for all Sentry JavaScript SDKs",

@@ -5,0 +5,0 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

@@ -29,2 +29,3 @@ type XHRSendInput = unknown;

response_body_size?: number;
__span?: string;
}

@@ -36,5 +37,17 @@ export interface HandlerDataFetch {

endTimestamp?: number;
response?: unknown;
response?: {
readonly ok: boolean;
readonly status: number;
readonly url: string;
headers: {
append(name: string, value: string): void;
delete(name: string): void;
get(name: string): string | null;
has(name: string): boolean;
set(name: string, value: string): void;
};
};
error?: unknown;
}
export {};
//# sourceMappingURL=instrument.d.ts.map

@@ -26,2 +26,3 @@ type XHRSendInput = unknown;

response_body_size?: number;
__span?: string;
}

@@ -33,5 +34,17 @@ export interface HandlerDataFetch {

endTimestamp?: number;
response?: unknown;
response?: {
readonly ok: boolean;
readonly status: number;
readonly url: string;
headers: {
append(name: string, value: string): void;
delete(name: string): void;
get(name: string): string | null;
has(name: string): boolean;
set(name: string, value: string): void;
};
};
error?: unknown;
}
export {};
//# sourceMappingURL=instrument.d.ts.map

Sorry, the diff of this file is not supported yet

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