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

@sentry/types

Package Overview
Dependencies
Maintainers
12
Versions
481
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.74.1 to 7.74.2-alpha.0

2

package.json
{
"name": "@sentry/types",
"version": "7.74.1",
"version": "7.74.2-alpha.0",
"description": "Types for all Sentry JavaScript SDKs",

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

@@ -7,3 +7,3 @@ /**

}
export type DebugImage = WasmDebugImage | SourceMapDebugImage;
export type DebugImage = WasmDebugImage | SourceMapDebugImage | MachoDebugImage;
interface WasmDebugImage {

@@ -21,3 +21,10 @@ type: 'wasm';

}
interface MachoDebugImage {
type: 'macho';
debug_id: string;
image_addr: string;
image_size?: number;
code_file?: string;
}
export {};
//# sourceMappingURL=debugMeta.d.ts.map
import { DebugImage } from './debugMeta';
import { MeasurementUnit } from './measurement';
export type ThreadId = string;

@@ -8,2 +9,3 @@ export type FrameId = number;

thread_id: ThreadId;
queue_address?: string;
elapsed_since_start_ns: string;

@@ -13,3 +15,3 @@ }

export type ThreadCpuFrame = {
function: string;
function?: string;
file?: string;

@@ -19,2 +21,6 @@ lineno?: number;

abs_path?: string;
platform?: string;
instruction_addr?: string;
module?: string;
in_app?: boolean;
};

@@ -74,3 +80,10 @@ export interface ThreadCpuProfile {

}[];
measurements?: Record<string, {
unit: MeasurementUnit;
values: {
elapsed_since_start_ns: number;
value: number;
}[];
}>;
}
//# sourceMappingURL=profiling.d.ts.map

@@ -20,2 +20,3 @@ import { User } from './user';

ignoreDuration: boolean;
abnormal_mechanism?: string;
/**

@@ -67,2 +68,3 @@ * Overrides default JSON serialization of the Session because

errors: number;
abnormal_mechanism?: string;
attrs?: {

@@ -69,0 +71,0 @@ release?: string;

@@ -7,3 +7,3 @@ /**

}
export type DebugImage = WasmDebugImage | SourceMapDebugImage;
export type DebugImage = WasmDebugImage | SourceMapDebugImage | MachoDebugImage;
interface WasmDebugImage {

@@ -21,3 +21,10 @@ type: 'wasm';

}
interface MachoDebugImage {
type: 'macho';
debug_id: string;
image_addr: string;
image_size?: number;
code_file?: string;
}
export {};
//# sourceMappingURL=debugMeta.d.ts.map
import type { DebugImage } from './debugMeta';
import type { MeasurementUnit } from './measurement';
export type ThreadId = string;

@@ -8,2 +9,3 @@ export type FrameId = number;

thread_id: ThreadId;
queue_address?: string;
elapsed_since_start_ns: string;

@@ -13,3 +15,3 @@ }

export type ThreadCpuFrame = {
function: string;
function?: string;
file?: string;

@@ -19,2 +21,6 @@ lineno?: number;

abs_path?: string;
platform?: string;
instruction_addr?: string;
module?: string;
in_app?: boolean;
};

@@ -74,3 +80,10 @@ export interface ThreadCpuProfile {

}[];
measurements?: Record<string, {
unit: MeasurementUnit;
values: {
elapsed_since_start_ns: number;
value: number;
}[];
}>;
}
//# sourceMappingURL=profiling.d.ts.map

@@ -20,2 +20,3 @@ import type { User } from './user';

ignoreDuration: boolean;
abnormal_mechanism?: string;
/**

@@ -67,2 +68,3 @@ * Overrides default JSON serialization of the Session because

errors: number;
abnormal_mechanism?: string;
attrs?: {

@@ -69,0 +71,0 @@ release?: string;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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