@myinterview/widget-react 1.1.20-development-522cf2a → 1.1.21-development-51cf6ea
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/dist/cjs/index.js +25650 -25000
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/utils/device.utils.d.ts +2 -0
- package/dist/cjs/utils/sentry.utils.d.ts +1 -2
- package/dist/esm/index.js +25666 -25016
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/utils/device.utils.d.ts +2 -0
- package/dist/esm/utils/sentry.utils.d.ts +1 -2
- package/package.json +4 -4
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const isMobile: boolean;
|
|
2
2
|
export declare const isAndroid: boolean;
|
|
3
|
+
export declare const isIphone: boolean;
|
|
3
4
|
export declare const isFireFox: boolean;
|
|
4
5
|
export declare const isSupportedIosDevice: boolean;
|
|
5
6
|
export declare const isSupportedDevice: boolean;
|
|
@@ -10,4 +11,5 @@ type DEVICE_TYPE = {
|
|
|
10
11
|
BROWSER: typeof BROWSERS_OPTIONS[number];
|
|
11
12
|
};
|
|
12
13
|
export declare const DEVICE: DEVICE_TYPE;
|
|
14
|
+
export declare const getIPhoneModel: () => string;
|
|
13
15
|
export {};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import * as Sentry from '@sentry/browser';
|
|
2
1
|
import { DoneInvokeEvent } from 'xstate';
|
|
3
2
|
import { Breadcrumb } from '@sentry/types';
|
|
4
|
-
export declare const
|
|
3
|
+
export declare const startSentry: () => void;
|
|
5
4
|
export declare const SentryTrackingFn: (event: DoneInvokeEvent<any>, context: any, name: string, level: 'fatal' | 'error' | 'warning' | 'log' | 'info' | 'debug') => void;
|
|
6
5
|
export declare const SentryBreadcrumb: ({ type, level, event_id, category, message, data }: Breadcrumb) => void;
|