@getpara/react-native-wallet 1.17.0 → 1.18.1
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/config.d.ts +3 -0
- package/dist/config.js +1 -0
- package/package.json +7 -6
- package/src/config.ts +2 -0
- /package/src/{index.tsx → index.ts} +0 -0
package/dist/config.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { Environment } from '@getpara/web-sdk';
|
|
2
|
+
declare function getPortalBaseURL(env: Environment): "http://localhost:3003" | "https://app.sandbox.usecapsule.com" | "https://app.beta.usecapsule.com" | "https://app.usecapsule.com";
|
|
3
|
+
declare function getBaseUrl(env: Environment): string;
|
|
2
4
|
export declare function getBaseMPCNetworkWSUrl(env: Environment): string;
|
|
3
5
|
export declare let userManagementServer: string;
|
|
4
6
|
export declare let portalBase: string;
|
|
5
7
|
export declare let mpcNetworkWSServer: string;
|
|
6
8
|
export declare function setEnv(env: Environment): void;
|
|
7
9
|
export declare const DEBUG_MODE_ENABLED = false;
|
|
10
|
+
export { getBaseUrl, getPortalBaseURL };
|
package/dist/config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getpara/react-native-wallet",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.18.1",
|
|
4
4
|
"description": "Para Wallet for React Native",
|
|
5
5
|
"homepage": "https://getpara.com",
|
|
6
6
|
"author": "Para Team <hello@getpara.com> (https://getpara.com)",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"signer.aar"
|
|
51
51
|
],
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@getpara/core-sdk": "1.
|
|
54
|
-
"@getpara/user-management-client": "1.
|
|
55
|
-
"@getpara/web-sdk": "1.
|
|
53
|
+
"@getpara/core-sdk": "1.18.1",
|
|
54
|
+
"@getpara/user-management-client": "1.18.1",
|
|
55
|
+
"@getpara/web-sdk": "1.18.1",
|
|
56
56
|
"@peculiar/webcrypto": "^1.5.0",
|
|
57
57
|
"@ungap/structured-clone": "1.3.0",
|
|
58
58
|
"node-forge": "1.3.1",
|
|
@@ -90,7 +90,8 @@
|
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|
|
92
92
|
"build": "rm -rf dist && tsc",
|
|
93
|
-
"compile-signer": "bash ./scripts/compileSigner.sh"
|
|
93
|
+
"compile-signer": "bash ./scripts/compileSigner.sh",
|
|
94
|
+
"test": "vitest run --coverage"
|
|
94
95
|
},
|
|
95
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "557c66d9085b97952c1ddc207f26c50eaa9af2f8"
|
|
96
97
|
}
|
package/src/config.ts
CHANGED
|
File without changes
|