@quiltt/react-native 3.6.4 → 3.6.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.6.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#248](https://github.com/quiltt/quiltt-js/pull/248) [`d15297e`](https://github.com/quiltt/quiltt-js/commit/d15297e4dea40c90dab97d1f8e8797b5cfe8395c) Thanks [@sirwolfgang](https://github.com/sirwolfgang)! - Fix issue with loading Plaid's new Link
8
+
9
+ - Updated dependencies [[`d15297e`](https://github.com/quiltt/quiltt-js/commit/d15297e4dea40c90dab97d1f8e8797b5cfe8395c)]:
10
+ - @quiltt/core@3.6.5
11
+ - @quiltt/react@3.6.5
12
+
3
13
  ## 3.6.4
4
14
 
5
15
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -11,7 +11,7 @@ var reactNative = require('react-native');
11
11
  var util = require('@honeybadger-io/core/build/src/util');
12
12
 
13
13
  // Generated by genversion.
14
- const version = '3.6.4';
14
+ const version = '3.6.5';
15
15
 
16
16
  const AndroidSafeAreaView = ({ testId, children })=>/*#__PURE__*/ jsxRuntime.jsx(reactNative.SafeAreaView, {
17
17
  testID: testId,
@@ -326,7 +326,7 @@ const QuilttConnector = ({ testId, connectorId, connectionId, institution, oauth
326
326
  'quiltt.app',
327
327
  'quiltt.dev',
328
328
  'moneydesktop.com',
329
- 'cdn.plaid.com/link/v2/stable/link.html'
329
+ 'cdn.plaid.com'
330
330
  ], []);
331
331
  const isQuilttEvent = react$1.useCallback((url)=>url.protocol === 'quilttconnector:', []);
332
332
  const shouldRender = react$1.useCallback((url)=>{
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import { StyleSheet, Platform, StatusBar, SafeAreaView, View, Text, Pressable, A
10
10
  import { generateStackTrace, makeBacktrace, getCauses } from '@honeybadger-io/core/build/src/util';
11
11
 
12
12
  // Generated by genversion.
13
- const version = '3.6.4';
13
+ const version = '3.6.5';
14
14
 
15
15
  const AndroidSafeAreaView = ({ testId, children })=>/*#__PURE__*/ jsx(SafeAreaView, {
16
16
  testID: testId,
@@ -325,7 +325,7 @@ const QuilttConnector = ({ testId, connectorId, connectionId, institution, oauth
325
325
  'quiltt.app',
326
326
  'quiltt.dev',
327
327
  'moneydesktop.com',
328
- 'cdn.plaid.com/link/v2/stable/link.html'
328
+ 'cdn.plaid.com'
329
329
  ], []);
330
330
  const isQuilttEvent = useCallback((url)=>url.protocol === 'quilttconnector:', []);
331
331
  const shouldRender = useCallback((url)=>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quiltt/react-native",
3
- "version": "3.6.4",
3
+ "version": "3.6.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": {
@@ -27,8 +27,8 @@
27
27
  ],
28
28
  "dependencies": {
29
29
  "@honeybadger-io/core": "6.6.0",
30
- "@quiltt/core": "3.6.4",
31
- "@quiltt/react": "3.6.4"
30
+ "@quiltt/core": "3.6.5",
31
+ "@quiltt/react": "3.6.5"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@apollo/client": "3.9.9",
@@ -90,12 +90,7 @@ const QuilttConnector = ({
90
90
  // For other urls, we assume those are bank urls, which needs to be handle in external browser.
91
91
  // TODO: Convert it to a list from Quiltt Server to prevent MX/ Plaid changes.
92
92
  const allowedListUrl = useMemo(
93
- () => [
94
- 'quiltt.app',
95
- 'quiltt.dev',
96
- 'moneydesktop.com',
97
- 'cdn.plaid.com/link/v2/stable/link.html',
98
- ],
93
+ () => ['quiltt.app', 'quiltt.dev', 'moneydesktop.com', 'cdn.plaid.com'],
99
94
  []
100
95
  )
101
96
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '3.6.4'
2
+ export const version = '3.6.5'