@getpara/graz-connector 0.1.0-alpha.1 → 0.1.0-alpha.2

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/dist/cjs/index.js CHANGED
@@ -22,6 +22,7 @@ __export(src_exports, {
22
22
  Environment: () => import_react_sdk.Environment,
23
23
  OAuthMethod: () => import_react_sdk.OAuthMethod,
24
24
  WalletType: () => import_react_sdk.WalletType,
25
+ getParaClient: () => import_Wallet.getParaClient,
25
26
  getParaGrazConnector: () => import_Wallet.getParaGrazConnector
26
27
  });
27
28
  module.exports = __toCommonJS(src_exports);
@@ -34,5 +35,6 @@ var import_Wallet = require("./Wallet.js");
34
35
  Environment,
35
36
  OAuthMethod,
36
37
  WalletType,
38
+ getParaClient,
37
39
  getParaGrazConnector
38
40
  });
package/dist/esm/index.js CHANGED
@@ -1,11 +1,12 @@
1
1
  import "./chunk-4AFQP74Z.js";
2
2
  import { WalletType, AuthLayout, AuthMethod, OAuthMethod, Environment } from "@getpara/react-sdk";
3
- import { getParaGrazConnector } from "./Wallet.js";
3
+ import { getParaGrazConnector, getParaClient } from "./Wallet.js";
4
4
  export {
5
5
  AuthLayout,
6
6
  AuthMethod,
7
7
  Environment,
8
8
  OAuthMethod,
9
9
  WalletType,
10
+ getParaClient,
10
11
  getParaGrazConnector
11
12
  };
@@ -1,4 +1,4 @@
1
1
  export { WalletType, AuthLayout, AuthMethod, OAuthMethod, Environment } from '@getpara/react-sdk';
2
2
  export type { ParaWeb, ParaModal, ParaModalProps, ParaModalTheme, Wallet } from '@getpara/react-sdk';
3
- export { getParaGrazConnector } from './Wallet.js';
3
+ export { getParaGrazConnector, getParaClient } from './Wallet.js';
4
4
  export type { ParaGrazConfig } from './Wallet.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpara/graz-connector",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  export { WalletType, AuthLayout, AuthMethod, OAuthMethod, Environment } from '@getpara/react-sdk';
2
2
  export type { ParaWeb, ParaModal, ParaModalProps, ParaModalTheme, Wallet } from '@getpara/react-sdk';
3
- export { getParaGrazConnector } from './Wallet.js';
3
+ export { getParaGrazConnector, getParaClient } from './Wallet.js';
4
4
  export type { ParaGrazConfig } from './Wallet.js';