chore(dependencies): update package versions for improved compatibility (#332)
This commit is contained in:
committed by
GitHub
parent
f9ebe2f927
commit
9ce150609e
@@ -6,12 +6,17 @@
|
||||
export abstract class MonitoringService {
|
||||
/**
|
||||
* Capture an exception
|
||||
* @param error
|
||||
* @param extra
|
||||
* @param error - The error to capture
|
||||
* @param extra - Extra information to capture with the error and be passed along to the capture event
|
||||
* @param config - Options to pass along to the service for additional configuration
|
||||
*/
|
||||
abstract captureException<Extra extends object>(
|
||||
abstract captureException<
|
||||
Extra extends Record<string, unknown>,
|
||||
Config extends Record<string, unknown>,
|
||||
>(
|
||||
error: Error & { digest?: string },
|
||||
extra?: Extra,
|
||||
config?: Config,
|
||||
): unknown;
|
||||
|
||||
/**
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"./config/server": "./src/sentry.client.server.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/nextjs": "^10.5.0",
|
||||
"@sentry/nextjs": "^10.6.0",
|
||||
"import-in-the-middle": "1.14.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
Reference in New Issue
Block a user