@quiltt/react-native 3.6.10 → 3.6.12

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,25 @@
1
1
  # @quiltt/react-native
2
2
 
3
+ ## 3.6.12
4
+
5
+ ### Patch Changes
6
+
7
+ - [#274](https://github.com/quiltt/quiltt-js/pull/274) [`d684ade`](https://github.com/quiltt/quiltt-js/commit/d684ade520689d6207c699cea0681a9331f06069) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Update 'rol' types in PrivateClaims
8
+
9
+ - Updated dependencies [[`d684ade`](https://github.com/quiltt/quiltt-js/commit/d684ade520689d6207c699cea0681a9331f06069)]:
10
+ - @quiltt/core@3.6.12
11
+ - @quiltt/react@3.6.12
12
+
13
+ ## 3.6.11
14
+
15
+ ### Patch Changes
16
+
17
+ - [#271](https://github.com/quiltt/quiltt-js/pull/271) [`a9ea2a7`](https://github.com/quiltt/quiltt-js/commit/a9ea2a7c6592dd5245183996ce0d26ffb53f2ed9) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Add 'rol' to private claims
18
+
19
+ - Updated dependencies [[`a9ea2a7`](https://github.com/quiltt/quiltt-js/commit/a9ea2a7c6592dd5245183996ce0d26ffb53f2ed9)]:
20
+ - @quiltt/react@3.6.11
21
+ - @quiltt/core@3.6.11
22
+
3
23
  ## 3.6.10
4
24
 
5
25
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -11,7 +11,7 @@ var reactNativeWebview = require('react-native-webview');
11
11
  var util = require('@honeybadger-io/core/build/src/util');
12
12
 
13
13
  // Generated by genversion.
14
- const version = '3.6.10';
14
+ const version = '3.6.12';
15
15
 
16
16
  const ErrorReporterConfig = {
17
17
  honeybadger_api_key: 'undefined'
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import { WebView } from 'react-native-webview';
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.10';
13
+ const version = '3.6.12';
14
14
 
15
15
  const ErrorReporterConfig = {
16
16
  honeybadger_api_key: 'undefined'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quiltt/react-native",
3
- "version": "3.6.10",
3
+ "version": "3.6.12",
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,20 +30,20 @@
30
30
  "base-64": "1.0.0",
31
31
  "react-native-url-polyfill": "2.0.0",
32
32
  "react-native-webview": "13.10.2",
33
- "@quiltt/core": "3.6.10",
34
- "@quiltt/react": "3.6.10"
33
+ "@quiltt/core": "3.6.12",
34
+ "@quiltt/react": "3.6.12"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@apollo/client": "3.9.9",
38
- "@biomejs/biome": "1.8.1",
38
+ "@biomejs/biome": "1.8.3",
39
39
  "@types/base-64": "1.0.2",
40
- "@types/node": "20.14.5",
41
- "@types/react": "18.2.73",
40
+ "@types/node": "20.14.10",
41
+ "@types/react": "18.3.3",
42
42
  "@types/react-native": "0.72.5",
43
- "bunchee": "4.4.8",
43
+ "bunchee": "5.2.2",
44
44
  "react": "18.2.0",
45
- "rimraf": "5.0.5",
46
- "typescript": "5.4.3"
45
+ "rimraf": "6.0.0",
46
+ "typescript": "5.5.3"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "base-64": "*",
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '3.6.10'
2
+ export const version = '3.6.12'
package/dist/index.d.cts DELETED
@@ -1,25 +0,0 @@
1
- export * from '@quiltt/core';
2
- import { ConnectorSDKCallbacks } from '@quiltt/react';
3
- export { QuilttAuthProvider, QuilttProvider, QuilttSettingsProvider, useQuilttClient, useQuilttConnector, useQuilttSession, useQuilttSettings, useSession, useStorage } from '@quiltt/react';
4
- import * as react_jsx_runtime from 'react/jsx-runtime';
5
- import { URL } from 'react-native-url-polyfill';
6
-
7
- type PreFlightCheck = {
8
- checked: boolean;
9
- error?: string;
10
- };
11
- declare const checkConnectorUrl: (connectorUrl: string, retryCount?: number) => Promise<PreFlightCheck>;
12
- declare const handleOAuthUrl: (oauthUrl: URL | string) => void;
13
- type QuilttConnectorProps = {
14
- testId?: string;
15
- connectorId: string;
16
- connectionId?: string;
17
- institution?: string;
18
- oauthRedirectUrl: string;
19
- } & ConnectorSDKCallbacks;
20
- declare const QuilttConnector: {
21
- ({ testId, connectorId, connectionId, institution, oauthRedirectUrl, onEvent, onLoad, onExit, onExitSuccess, onExitAbort, onExitError, }: QuilttConnectorProps): react_jsx_runtime.JSX.Element;
22
- displayName: string;
23
- };
24
-
25
- export { type PreFlightCheck, QuilttConnector, checkConnectorUrl, handleOAuthUrl };