@quiltt/react-native 3.9.4 → 3.9.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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @quiltt/react-native
2
2
 
3
+ ## 3.9.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#325](https://github.com/quiltt/quiltt-js/pull/325) [`62b7323`](https://github.com/quiltt/quiltt-js/commit/62b732371a8d57242170e0ae838baa4ca8e78059) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Improve useSession and useStorage hooks
8
+
9
+ - Updated dependencies [[`62b7323`](https://github.com/quiltt/quiltt-js/commit/62b732371a8d57242170e0ae838baa4ca8e78059)]:
10
+ - @quiltt/react@3.9.5
11
+ - @quiltt/core@3.9.5
12
+
3
13
  ## 3.9.4
4
14
 
5
15
  ### Patch Changes
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ import { URL } from 'react-native-url-polyfill';
9
9
  import { WebView } from 'react-native-webview';
10
10
  import { generateStackTrace, makeBacktrace, getCauses } from '@honeybadger-io/core/build/src/util';
11
11
 
12
- var version = "3.9.4";
12
+ var version = "3.9.5";
13
13
 
14
14
  const ErrorReporterConfig = {
15
15
  honeybadger_api_key: 'undefined'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quiltt/react-native",
3
- "version": "3.9.4",
3
+ "version": "3.9.5",
4
4
  "description": "React Native Components for Quiltt Connector",
5
5
  "homepage": "https://github.com/quiltt/quiltt-js/tree/main/packages/react-native#readme",
6
6
  "repository": {
@@ -30,19 +30,19 @@
30
30
  "dependencies": {
31
31
  "@honeybadger-io/core": "6.6.0",
32
32
  "lodash.debounce": "4.0.8",
33
- "@quiltt/core": "3.9.4",
34
- "@quiltt/react": "3.9.4"
33
+ "@quiltt/react": "3.9.5",
34
+ "@quiltt/core": "3.9.5"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@biomejs/biome": "1.9.4",
38
38
  "@types/base-64": "1.0.2",
39
39
  "@types/lodash.debounce": "4.0.9",
40
- "@types/node": "22.10.5",
40
+ "@types/node": "22.13.2",
41
41
  "@types/react": "18.3.12",
42
42
  "base-64": "1.0.0",
43
- "bunchee": "6.2.0",
43
+ "bunchee": "6.3.4",
44
44
  "react": "18.3.1",
45
- "react-native": "0.76.5",
45
+ "react-native": "0.76.7",
46
46
  "react-native-url-polyfill": "2.0.0",
47
47
  "react-native-webview": "13.12.5",
48
48
  "rimraf": "6.0.1",
@@ -8,8 +8,8 @@ import type { ShouldStartLoadRequest } from 'react-native-webview/lib/WebViewTyp
8
8
  import { ConnectorSDKEventType, useQuilttSession } from '@quiltt/react'
9
9
  import type { ConnectorSDKCallbackMetadata, ConnectorSDKCallbacks } from '@quiltt/react'
10
10
 
11
- import { ErrorReporter, getErrorMessage } from '../utils'
12
- import { version } from '../version'
11
+ import { ErrorReporter, getErrorMessage } from '@/utils'
12
+ import { version } from '@/version'
13
13
  import { AndroidSafeAreaView } from './AndroidSafeAreaView'
14
14
  import { ErrorScreen } from './ErrorScreen'
15
15
  import { LoadingScreen } from './LoadingScreen'
@@ -2,7 +2,7 @@
2
2
  import type { Notice, NoticeTransportPayload } from '@honeybadger-io/core/build/src/types'
3
3
  import { generateStackTrace, getCauses, makeBacktrace } from '@honeybadger-io/core/build/src/util'
4
4
 
5
- import { version } from '../../version'
5
+ import { version } from '@/version'
6
6
  import { ErrorReporterConfig } from './ErrorReporterConfig'
7
7
 
8
8
  const notifier = {