sentry-vir 0.0.1 → 0.0.2

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.
@@ -1,11 +1,10 @@
1
- import { JsonCompatibleValue } from '@augment-vir/common';
2
1
  import { ScopeContext } from '@sentry/types';
3
2
  import { EventSeverityEnum } from './event-severity';
4
3
  /**
5
4
  * Used for all extra context types. While keys must be strings, values can be whatever but must be
6
5
  * JSON compatible.
7
6
  */
8
- export type EventExtraContext = Record<string, JsonCompatibleValue>;
7
+ export type EventExtraContext = Record<string, unknown>;
9
8
  /** Function that generates extra event context. */
10
9
  export type EventExtraContextCreator = () => EventExtraContext;
11
10
  /** Event details before getting sent to Sentry. */
@@ -1,11 +1,10 @@
1
- import { JsonCompatibleValue } from '@augment-vir/common';
2
1
  import { ScopeContext } from '@sentry/types';
3
2
  import { EventSeverityEnum } from './event-severity';
4
3
  /**
5
4
  * Used for all extra context types. While keys must be strings, values can be whatever but must be
6
5
  * JSON compatible.
7
6
  */
8
- export type EventExtraContext = Record<string, JsonCompatibleValue>;
7
+ export type EventExtraContext = Record<string, unknown>;
9
8
  /** Function that generates extra event context. */
10
9
  export type EventExtraContextCreator = () => EventExtraContext;
11
10
  /** Event details before getting sent to Sentry. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sentry-vir",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "keywords": [
5
5
  "config",
6
6
  "helper",