@colisweb/rescript-toolkit 4.26.4 → 4.26.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colisweb/rescript-toolkit",
3
- "version": "4.26.4",
3
+ "version": "4.26.5",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "clean": "rescript clean",
@@ -5,20 +5,21 @@ module Sentry = {
5
5
  @send external setExtra: (t, string, 'a) => unit = "setExtra"
6
6
  }
7
7
 
8
- @module("sentry-expo") external init: 'a => unit = "init"
8
+ @module("@sentry/react-native")
9
+ external init: 'a => unit = "init"
9
10
 
10
- @module("sentry-expo") @scope("Native")
11
+ @module("@sentry/react-native")
11
12
  external setTag: (string, string) => unit = "setTag"
12
13
 
13
- @module("sentry-expo") @scope("Native")
14
+ @module("@sentry/react-native")
14
15
  external setUser: 'a => unit = "setUser"
15
16
 
16
- @module("sentry-expo") @scope("Native")
17
+ @module("@sentry/react-native")
17
18
  external captureException: Js.Promise.error => unit = "captureException"
18
19
 
19
- @module("sentry-expo") @scope("Native")
20
+ @module("@sentry/react-native")
20
21
  external captureMessage: string => unit = "captureMessage"
21
22
 
22
- @module("sentry-expo") @scope("Native")
23
+ @module("@sentry/react-native")
23
24
  external withScope: (Scope.t => unit) => unit = "withScope"
24
25
  }