@supanovaapp/sdk 0.2.0 → 0.2.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/index.cjs.js +1 -1
- package/dist/index.d.ts +1307 -0
- package/dist/index.esm.js +2 -2
- package/package.json +5 -4
package/dist/index.esm.js
CHANGED
|
@@ -57985,9 +57985,9 @@ class Jut {
|
|
|
57985
57985
|
client;
|
|
57986
57986
|
getAccessToken;
|
|
57987
57987
|
nodeIdentifier;
|
|
57988
|
-
constructor(e = {}) {
|
|
57988
|
+
constructor(e = { nodeIdentifier: "" }) {
|
|
57989
57989
|
const n = e.baseURL || "https://stage_api.walletino.fyi";
|
|
57990
|
-
this.nodeIdentifier = e.nodeIdentifier
|
|
57990
|
+
this.nodeIdentifier = e.nodeIdentifier, this.client = $i.create({
|
|
57991
57991
|
baseURL: n,
|
|
57992
57992
|
headers: {
|
|
57993
57993
|
"Content-Type": "application/json"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supanovaapp/sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "React SDK for Supa Backend + Privy.io integration with Canton Network support",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"dev": "vite",
|
|
20
|
-
"build": "
|
|
21
|
-
"build:prod": "
|
|
20
|
+
"build": "vite build",
|
|
21
|
+
"build:prod": "vite build --mode production",
|
|
22
22
|
"preview": "vite preview",
|
|
23
23
|
"type-check": "tsc --noEmit"
|
|
24
24
|
},
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"@types/react-dom": "^19.0.2",
|
|
50
50
|
"@vitejs/plugin-react": "^5.0.4",
|
|
51
51
|
"typescript": "^5.9.3",
|
|
52
|
-
"vite": "^7.1.11"
|
|
52
|
+
"vite": "^7.1.11",
|
|
53
|
+
"vite-plugin-dts": "^4.5.4"
|
|
53
54
|
}
|
|
54
55
|
}
|