@sentry/node
Advanced tools
Comparing version 5.7.0 to 5.7.1
@@ -35,8 +35,8 @@ import { BaseBackend } from '@sentry/core'; | ||
*/ | ||
eventFromException(exception: any, hint?: EventHint): Promise<Event>; | ||
eventFromException(exception: any, hint?: EventHint): PromiseLike<Event>; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
eventFromMessage(message: string, level?: Severity, hint?: EventHint): Promise<Event>; | ||
eventFromMessage(message: string, level?: Severity, hint?: EventHint): PromiseLike<Event>; | ||
} | ||
//# sourceMappingURL=backend.d.ts.map |
@@ -70,3 +70,3 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
}) | ||
.catch(reject); | ||
.then(null, reject); | ||
}); | ||
@@ -95,3 +95,3 @@ }; | ||
}) | ||
.catch(function () { | ||
.then(null, function () { | ||
resolve(event); | ||
@@ -98,0 +98,0 @@ }); |
@@ -19,4 +19,4 @@ import { BaseClient, Scope } from '@sentry/core'; | ||
*/ | ||
protected _prepareEvent(event: Event, scope?: Scope, hint?: EventHint): Promise<Event | null>; | ||
protected _prepareEvent(event: Event, scope?: Scope, hint?: EventHint): PromiseLike<Event | null>; | ||
} | ||
//# sourceMappingURL=client.d.ts.map |
@@ -179,3 +179,3 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
}) | ||
.catch(function (e) { | ||
.then(null, function (e) { | ||
utils_1.logger.error(e); | ||
@@ -182,0 +182,0 @@ }); |
@@ -34,8 +34,8 @@ import { Event, EventHint, Exception, ExtendedError, Integration } from '@sentry/types'; | ||
*/ | ||
handler(event: Event, hint?: EventHint): Promise<Event>; | ||
handler(event: Event, hint?: EventHint): PromiseLike<Event>; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
walkErrorTree(error: ExtendedError, key: string, stack?: Exception[]): Promise<Exception[]>; | ||
walkErrorTree(error: ExtendedError, key: string, stack?: Exception[]): PromiseLike<Exception[]>; | ||
} | ||
//# sourceMappingURL=linkederrors.d.ts.map |
@@ -50,3 +50,3 @@ Object.defineProperty(exports, "__esModule", { value: true }); | ||
}) | ||
.catch(function () { | ||
.then(null, function () { | ||
resolve(event); | ||
@@ -70,7 +70,7 @@ }); | ||
.then(resolve) | ||
.catch(function () { | ||
.then(null, function () { | ||
reject(); | ||
}); | ||
}) | ||
.catch(function () { | ||
.then(null, function () { | ||
reject(); | ||
@@ -77,0 +77,0 @@ }); |
@@ -16,11 +16,11 @@ import { Event, Exception, ExtendedError, StackFrame } from '@sentry/types'; | ||
*/ | ||
export declare function parseStack(stack: stacktrace.StackFrame[], options?: NodeOptions): Promise<StackFrame[]>; | ||
export declare function parseStack(stack: stacktrace.StackFrame[], options?: NodeOptions): PromiseLike<StackFrame[]>; | ||
/** | ||
* @hidden | ||
*/ | ||
export declare function getExceptionFromError(error: Error, options?: NodeOptions): Promise<Exception>; | ||
export declare function getExceptionFromError(error: Error, options?: NodeOptions): PromiseLike<Exception>; | ||
/** | ||
* @hidden | ||
*/ | ||
export declare function parseError(error: ExtendedError, options?: NodeOptions): Promise<Event>; | ||
export declare function parseError(error: ExtendedError, options?: NodeOptions): PromiseLike<Event>; | ||
/** | ||
@@ -27,0 +27,0 @@ * @hidden |
@@ -40,8 +40,8 @@ /// <reference types="node" /> | ||
*/ | ||
sendEvent(_: Event): Promise<Response>; | ||
sendEvent(_: Event): PromiseLike<Response>; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
close(timeout?: number): Promise<boolean>; | ||
close(timeout?: number): PromiseLike<boolean>; | ||
} | ||
//# sourceMappingURL=base.d.ts.map |
export declare const SDK_NAME = "sentry.javascript.node"; | ||
export declare const SDK_VERSION = "5.7.0"; | ||
export declare const SDK_VERSION = "5.7.1"; | ||
//# sourceMappingURL=version.d.ts.map |
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SDK_NAME = 'sentry.javascript.node'; | ||
exports.SDK_VERSION = '5.7.0'; | ||
exports.SDK_VERSION = '5.7.1'; | ||
//# sourceMappingURL=version.js.map |
@@ -35,8 +35,8 @@ import { BaseBackend } from '@sentry/core'; | ||
*/ | ||
eventFromException(exception: any, hint?: EventHint): Promise<Event>; | ||
eventFromException(exception: any, hint?: EventHint): PromiseLike<Event>; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
eventFromMessage(message: string, level?: Severity, hint?: EventHint): Promise<Event>; | ||
eventFromMessage(message: string, level?: Severity, hint?: EventHint): PromiseLike<Event>; | ||
} | ||
//# sourceMappingURL=backend.d.ts.map |
@@ -69,3 +69,3 @@ import * as tslib_1 from "tslib"; | ||
}) | ||
.catch(reject); | ||
.then(null, reject); | ||
}); | ||
@@ -94,3 +94,3 @@ }; | ||
}) | ||
.catch(function () { | ||
.then(null, function () { | ||
resolve(event); | ||
@@ -97,0 +97,0 @@ }); |
@@ -19,4 +19,4 @@ import { BaseClient, Scope } from '@sentry/core'; | ||
*/ | ||
protected _prepareEvent(event: Event, scope?: Scope, hint?: EventHint): Promise<Event | null>; | ||
protected _prepareEvent(event: Event, scope?: Scope, hint?: EventHint): PromiseLike<Event | null>; | ||
} | ||
//# sourceMappingURL=client.d.ts.map |
@@ -177,3 +177,3 @@ import * as tslib_1 from "tslib"; | ||
}) | ||
.catch(function (e) { | ||
.then(null, function (e) { | ||
logger.error(e); | ||
@@ -180,0 +180,0 @@ }); |
@@ -34,8 +34,8 @@ import { Event, EventHint, Exception, ExtendedError, Integration } from '@sentry/types'; | ||
*/ | ||
handler(event: Event, hint?: EventHint): Promise<Event>; | ||
handler(event: Event, hint?: EventHint): PromiseLike<Event>; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
walkErrorTree(error: ExtendedError, key: string, stack?: Exception[]): Promise<Exception[]>; | ||
walkErrorTree(error: ExtendedError, key: string, stack?: Exception[]): PromiseLike<Exception[]>; | ||
} | ||
//# sourceMappingURL=linkederrors.d.ts.map |
@@ -49,3 +49,3 @@ import * as tslib_1 from "tslib"; | ||
}) | ||
.catch(function () { | ||
.then(null, function () { | ||
resolve(event); | ||
@@ -69,7 +69,7 @@ }); | ||
.then(resolve) | ||
.catch(function () { | ||
.then(null, function () { | ||
reject(); | ||
}); | ||
}) | ||
.catch(function () { | ||
.then(null, function () { | ||
reject(); | ||
@@ -76,0 +76,0 @@ }); |
@@ -16,11 +16,11 @@ import { Event, Exception, ExtendedError, StackFrame } from '@sentry/types'; | ||
*/ | ||
export declare function parseStack(stack: stacktrace.StackFrame[], options?: NodeOptions): Promise<StackFrame[]>; | ||
export declare function parseStack(stack: stacktrace.StackFrame[], options?: NodeOptions): PromiseLike<StackFrame[]>; | ||
/** | ||
* @hidden | ||
*/ | ||
export declare function getExceptionFromError(error: Error, options?: NodeOptions): Promise<Exception>; | ||
export declare function getExceptionFromError(error: Error, options?: NodeOptions): PromiseLike<Exception>; | ||
/** | ||
* @hidden | ||
*/ | ||
export declare function parseError(error: ExtendedError, options?: NodeOptions): Promise<Event>; | ||
export declare function parseError(error: ExtendedError, options?: NodeOptions): PromiseLike<Event>; | ||
/** | ||
@@ -27,0 +27,0 @@ * @hidden |
@@ -40,8 +40,8 @@ /// <reference types="node" /> | ||
*/ | ||
sendEvent(_: Event): Promise<Response>; | ||
sendEvent(_: Event): PromiseLike<Response>; | ||
/** | ||
* @inheritDoc | ||
*/ | ||
close(timeout?: number): Promise<boolean>; | ||
close(timeout?: number): PromiseLike<boolean>; | ||
} | ||
//# sourceMappingURL=base.d.ts.map |
export declare const SDK_NAME = "sentry.javascript.node"; | ||
export declare const SDK_VERSION = "5.7.0"; | ||
export declare const SDK_VERSION = "5.7.1"; | ||
//# sourceMappingURL=version.d.ts.map |
export var SDK_NAME = 'sentry.javascript.node'; | ||
export var SDK_VERSION = '5.7.0'; | ||
export var SDK_VERSION = '5.7.1'; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@sentry/node", | ||
"version": "5.7.0", | ||
"version": "5.7.1", | ||
"description": "Offical Sentry SDK for Node.js", | ||
@@ -19,6 +19,6 @@ "repository": "git://github.com/getsentry/sentry-javascript.git", | ||
"dependencies": { | ||
"@sentry/core": "5.7.0", | ||
"@sentry/hub": "5.7.0", | ||
"@sentry/types": "5.7.0", | ||
"@sentry/utils": "5.7.0", | ||
"@sentry/core": "5.7.1", | ||
"@sentry/hub": "5.7.1", | ||
"@sentry/types": "5.7.1", | ||
"@sentry/utils": "5.7.1", | ||
"cookie": "^0.3.1", | ||
@@ -25,0 +25,0 @@ "https-proxy-agent": "^3.0.0", |
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
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
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
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
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
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
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
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
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
388259
+ Added@sentry/core@5.7.1(transitive)
+ Added@sentry/hub@5.7.1(transitive)
+ Added@sentry/minimal@5.7.1(transitive)
+ Added@sentry/types@5.7.1(transitive)
+ Added@sentry/utils@5.7.1(transitive)
- Removed@sentry/core@5.7.0(transitive)
- Removed@sentry/hub@5.7.0(transitive)
- Removed@sentry/minimal@5.7.0(transitive)
- Removed@sentry/types@5.7.0(transitive)
- Removed@sentry/utils@5.7.0(transitive)
Updated@sentry/core@5.7.1
Updated@sentry/hub@5.7.1
Updated@sentry/types@5.7.1
Updated@sentry/utils@5.7.1