@myinterview/widget-react 1.0.57-ada6b21 → 1.0.58-beta-dc3e080

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.
@@ -12,6 +12,7 @@ export declare const enum STATES {
12
12
  DATA_CHECK = "dataCheck"
13
13
  }
14
14
  export declare const enum ACTIONS {
15
+ COLLECT_BREADCRUMB = "collectBreadcrumb",
15
16
  INIT_WEB_WORKER = "initWebWorker",
16
17
  CONSOLE_LOG = "consoleLog",
17
18
  SET_MEDIA_STREAM = "setMediaStream",
@@ -1,4 +1,6 @@
1
1
  import * as Sentry from '@sentry/browser';
2
2
  import { DoneInvokeEvent } from 'xstate';
3
+ import { Breadcrumb } from '@sentry/types';
3
4
  export declare const SentryHub: Sentry.Hub;
4
5
  export declare const SentryTrackingFn: (event: DoneInvokeEvent<any>, context: any, name: string, level: 'fatal' | 'error' | 'warning' | 'log' | 'info' | 'debug') => void;
6
+ export declare const SentryBreadcrumb: ({ type, level, event_id, category, message, data }: Breadcrumb) => void;