@quiltt/react-native 3.6.5 → 3.6.7
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 +10 -0
- package/dist/index.cjs +3 -2
- package/dist/index.js +3 -2
- package/package.json +3 -3
- package/src/components/QuilttConnector.tsx +4 -4
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @quiltt/react-native
|
|
2
2
|
|
|
3
|
+
## 3.6.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#256](https://github.com/quiltt/quiltt-js/pull/256) [`824e21e`](https://github.com/quiltt/quiltt-js/commit/824e21e14b4731e5ebb0d8bd3ba141ca7d9418e2) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Add Google recaptcha to allowed URLs
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`824e21e`](https://github.com/quiltt/quiltt-js/commit/824e21e14b4731e5ebb0d8bd3ba141ca7d9418e2)]:
|
|
10
|
+
- @quiltt/react@3.6.7
|
|
11
|
+
- @quiltt/core@3.6.7
|
|
12
|
+
|
|
3
13
|
## 3.6.5
|
|
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.
|
|
14
|
+
const version = '3.6.7';
|
|
15
15
|
|
|
16
16
|
const AndroidSafeAreaView = ({ testId, children })=>/*#__PURE__*/ jsxRuntime.jsx(reactNative.SafeAreaView, {
|
|
17
17
|
testID: testId,
|
|
@@ -326,7 +326,8 @@ const QuilttConnector = ({ testId, connectorId, connectionId, institution, oauth
|
|
|
326
326
|
'quiltt.app',
|
|
327
327
|
'quiltt.dev',
|
|
328
328
|
'moneydesktop.com',
|
|
329
|
-
'cdn.plaid.com'
|
|
329
|
+
'cdn.plaid.com',
|
|
330
|
+
'www.google.com'
|
|
330
331
|
], []);
|
|
331
332
|
const isQuilttEvent = react$1.useCallback((url)=>url.protocol === 'quilttconnector:', []);
|
|
332
333
|
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.
|
|
13
|
+
const version = '3.6.7';
|
|
14
14
|
|
|
15
15
|
const AndroidSafeAreaView = ({ testId, children })=>/*#__PURE__*/ jsx(SafeAreaView, {
|
|
16
16
|
testID: testId,
|
|
@@ -325,7 +325,8 @@ const QuilttConnector = ({ testId, connectorId, connectionId, institution, oauth
|
|
|
325
325
|
'quiltt.app',
|
|
326
326
|
'quiltt.dev',
|
|
327
327
|
'moneydesktop.com',
|
|
328
|
-
'cdn.plaid.com'
|
|
328
|
+
'cdn.plaid.com',
|
|
329
|
+
'www.google.com'
|
|
329
330
|
], []);
|
|
330
331
|
const isQuilttEvent = useCallback((url)=>url.protocol === 'quilttconnector:', []);
|
|
331
332
|
const shouldRender = useCallback((url)=>{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quiltt/react-native",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.7",
|
|
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.
|
|
31
|
-
"@quiltt/react": "3.6.
|
|
30
|
+
"@quiltt/core": "3.6.7",
|
|
31
|
+
"@quiltt/react": "3.6.7"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@apollo/client": "3.9.9",
|
|
@@ -13,12 +13,12 @@ import {
|
|
|
13
13
|
useQuilttSession,
|
|
14
14
|
} from '@quiltt/react'
|
|
15
15
|
|
|
16
|
-
import { version } from '
|
|
16
|
+
import { version } from '../version'
|
|
17
17
|
import { AndroidSafeAreaView } from './AndroidSafeAreaView'
|
|
18
18
|
import { ErrorScreen } from './ErrorScreen'
|
|
19
19
|
import { LoadingScreen } from './LoadingScreen'
|
|
20
|
-
import { checkConnectorUrl, handleOAuthUrl } from '
|
|
21
|
-
import type { PreFlightCheck } from '
|
|
20
|
+
import { checkConnectorUrl, handleOAuthUrl } from '../utils'
|
|
21
|
+
import type { PreFlightCheck } from '../utils'
|
|
22
22
|
|
|
23
23
|
type QuilttConnectorProps = {
|
|
24
24
|
testId?: string
|
|
@@ -90,7 +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
|
-
() => ['quiltt.app', 'quiltt.dev', 'moneydesktop.com', 'cdn.plaid.com'],
|
|
93
|
+
() => ['quiltt.app', 'quiltt.dev', 'moneydesktop.com', 'cdn.plaid.com', 'www.google.com'],
|
|
94
94
|
[]
|
|
95
95
|
)
|
|
96
96
|
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '3.6.
|
|
2
|
+
export const version = '3.6.7'
|