@xifan0/monitor-rn 0.0.2-beta.1 → 0.0.2-beta.3
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/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/metro.d.mts +1 -0
- package/dist/metro.d.ts +1 -0
- package/package.json +5 -5
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as _xifan0_monitor_core from '@xifan0/monitor-core';
|
|
2
|
+
|
|
3
|
+
declare const Monitor: _xifan0_monitor_core.Monitor;
|
|
4
|
+
declare const init: (options: any) => any;
|
|
5
|
+
declare const captureException: (error: Error, ctx?: _xifan0_monitor_core.CaptureContext) => any;
|
|
6
|
+
declare const captureMessage: (message: string, ctx?: _xifan0_monitor_core.CaptureContext) => any;
|
|
7
|
+
declare const setUser: (user: _xifan0_monitor_core.MonitorUser) => any;
|
|
8
|
+
|
|
9
|
+
export { captureException, captureMessage, Monitor as default, init, setUser };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as _xifan0_monitor_core from '@xifan0/monitor-core';
|
|
2
|
+
|
|
3
|
+
declare const Monitor: _xifan0_monitor_core.Monitor;
|
|
4
|
+
declare const init: (options: any) => any;
|
|
5
|
+
declare const captureException: (error: Error, ctx?: _xifan0_monitor_core.CaptureContext) => any;
|
|
6
|
+
declare const captureMessage: (message: string, ctx?: _xifan0_monitor_core.CaptureContext) => any;
|
|
7
|
+
declare const setUser: (user: _xifan0_monitor_core.MonitorUser) => any;
|
|
8
|
+
|
|
9
|
+
export { captureException, captureMessage, Monitor as default, init, setUser };
|
package/dist/metro.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@sentry/react-native/metro';
|
package/dist/metro.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@sentry/react-native/metro';
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xifan0/monitor-rn",
|
|
3
|
-
"version": "0.0.2-beta.
|
|
4
|
-
"main": "dist/index.js",
|
|
5
|
-
"module": "dist/index.mjs",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
3
|
+
"version": "0.0.2-beta.3",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"module": "./dist/index.mjs",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@sentry/react-native": "^5",
|
|
28
|
-
"@xifan0/monitor-core": "0.0.2-beta.
|
|
28
|
+
"@xifan0/monitor-core": "0.0.2-beta.3"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@sentry/react-native": "^5",
|