@quiltt/react 3.7.3 → 3.7.4

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,14 @@
1
1
  # @quiltt/react
2
2
 
3
+ ## 3.7.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#296](https://github.com/quiltt/quiltt-js/pull/296) [`bff9d1f`](https://github.com/quiltt/quiltt-js/commit/bff9d1fb4f89c9c762de85ca0d8ee9a35dd10f7e) Thanks [@rubendinho](https://github.com/rubendinho)! - Fix typings
8
+
9
+ - Updated dependencies [[`bff9d1f`](https://github.com/quiltt/quiltt-js/commit/bff9d1fb4f89c9c762de85ca0d8ee9a35dd10f7e)]:
10
+ - @quiltt/core@3.7.4
11
+
3
12
  ## 3.7.3
4
13
 
5
14
  ### Patch Changes
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ export { u as useIsomorphicLayoutEffect } from './useIsomorphicLayoutEffect-clie
4
4
  import { Q as QuilttAuthProvider } from './QuilttAuthProvider-client-D-lSeXpV.js';
5
5
  export { G as GraphQLClient, c as useAuthenticateSession, b as useIdentifySession, a as useImportSession, d as useRevokeSession } from './QuilttAuthProvider-client-D-lSeXpV.js';
6
6
  export { u as useQuilttClient } from './useQuilttClient-client-CGMZPnRI.js';
7
- import { u as useQuilttConnector } from './useQuilttConnector-client-BPksnYdt.js';
7
+ import { u as useQuilttConnector } from './useQuilttConnector-client-DO0CdRV1.js';
8
8
  export { u as useQuilttSession } from './useQuilttSession-client-TRaUyBXB.js';
9
9
  export { Q as QuilttSettings, u as useQuilttSettings } from './useQuilttSettings-client-DU_Qfc8X.js';
10
10
  export { u as useSession } from './useSession-client-CG5lGS9F.js';
@@ -5,7 +5,7 @@ import { u as useQuilttSession } from './useQuilttSession-client-TRaUyBXB.js';
5
5
  import { u as useScript } from './useScript-client-Cx5nb9RW.js';
6
6
 
7
7
  // Generated by genversion.
8
- const version = '3.7.3';
8
+ const version = '3.7.4';
9
9
 
10
10
  const useQuilttConnector = (connectorId, options)=>{
11
11
  const status = useScript(`${cdnBase}/v1/connector.js?agent=react-${version}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quiltt/react",
3
- "version": "3.7.3",
3
+ "version": "3.7.4",
4
4
  "description": "React components and hooks for Quiltt Connector",
5
5
  "keywords": [
6
6
  "quiltt",
@@ -37,7 +37,7 @@
37
37
  "CHANGELOG.md"
38
38
  ],
39
39
  "dependencies": {
40
- "@quiltt/core": "3.7.3"
40
+ "@quiltt/core": "3.7.4"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@apollo/client": "3.9.11",
@@ -2,11 +2,12 @@
2
2
 
3
3
  import { useCallback, useEffect, useState } from 'react'
4
4
 
5
- import {
6
- type ConnectorSDK,
7
- type ConnectorSDKConnector,
8
- type ConnectorSDKConnectorOptions,
9
- cdnBase,
5
+ import { cdnBase } from '@quiltt/core'
6
+
7
+ import type {
8
+ ConnectorSDK,
9
+ ConnectorSDKConnector,
10
+ ConnectorSDKConnectorOptions,
10
11
  } from '@quiltt/core'
11
12
 
12
13
  import { version } from '../version'
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '3.7.3'
2
+ export const version = '3.7.4'