@gala-chain/launchpad-sdk 3.12.4 → 3.12.6
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 +33 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/polyfills/file-global.d.ts +12 -0
- package/dist/polyfills/file-global.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Global File API Polyfill for Node.js
|
|
3
|
+
*
|
|
4
|
+
* Defines File as a global in Node.js environments where it doesn't exist.
|
|
5
|
+
* This is required for Zod schemas that use z.instanceof(File) which execute
|
|
6
|
+
* at module load time before any conditional checks can be performed.
|
|
7
|
+
*
|
|
8
|
+
* In browser environments, the native File API is used.
|
|
9
|
+
*
|
|
10
|
+
* @see https://github.com/Gozala/web-file - web-file-polyfill documentation
|
|
11
|
+
*/
|
|
12
|
+
//# sourceMappingURL=file-global.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-global.d.ts","sourceRoot":"","sources":["../../src/polyfills/file-global.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gala-chain/launchpad-sdk",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.6",
|
|
4
4
|
"description": "TypeScript SDK for Gala Launchpad Backend API - Production-ready DeFi token launchpad integration with wallet-based authentication, GalaChain trading, and comprehensive user operations. 100% tested (22/22 endpoints working).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
"dotenv": "^17.2.3",
|
|
148
148
|
"ethers": "^6.15.0",
|
|
149
149
|
"socket.io-client": "^4.8.1",
|
|
150
|
-
"uuid": "^
|
|
150
|
+
"uuid": "^9.0.1",
|
|
151
151
|
"web-file-polyfill": "^1.0.4",
|
|
152
152
|
"zod": "^3.25.76",
|
|
153
153
|
"zod-to-json-schema": "^3.24.6"
|