@sentry/types
Advanced tools
Comparing version 7.74.1 to 7.74.2-alpha.0
{ | ||
"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
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
239262
4964
1