@rxap/nest-sentry 9.0.3-dev.4 → 9.0.3-dev.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [9.0.3-dev.5](https://gitlab.com/rxap/nest/compare/@rxap/nest-sentry@9.0.3-dev.4...@rxap/nest-sentry@9.0.3-dev.5) (2023-04-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * use correct base options type ([b5395c7](https://gitlab.com/rxap/nest/commit/b5395c7ff46e2f1b9f7dacd2d6526ccb37f12e7d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [9.0.3-dev.4](https://gitlab.com/rxap/nest/compare/@rxap/nest-sentry@9.0.3-dev.3...@rxap/nest-sentry@9.0.3-dev.4) (2023-04-04)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxap/nest-sentry",
3
- "version": "9.0.3-dev.4",
3
+ "version": "9.0.3-dev.5",
4
4
  "type": "commonjs",
5
5
  "schematics": "./collection.json",
6
6
  "ng-update": {
@@ -1,13 +1,13 @@
1
1
  import { ConsoleLoggerOptions } from '@nestjs/common';
2
2
  import { ModuleMetadata, Type } from '@nestjs/common/interfaces';
3
- import { SeverityLevel } from '@sentry/node';
3
+ import { SeverityLevel, NodeOptions } from '@sentry/node';
4
4
  import { AddRequestDataToEventOptions } from '@sentry/node/types/requestdata';
5
- import { Integration, Options } from '@sentry/types';
5
+ import { Integration } from '@sentry/types';
6
6
  export interface SentryCloseOptions {
7
7
  enabled: boolean;
8
8
  timeout?: number;
9
9
  }
10
- export declare type SentryModuleOptions = Omit<Options, 'integrations'> & {
10
+ export declare type SentryModuleOptions = Omit<NodeOptions, 'integrations'> & {
11
11
  integrations?: Integration[];
12
12
  close?: SentryCloseOptions;
13
13
  } & ConsoleLoggerOptions;