@gala-chain/launchpad-sdk 3.11.7 → 3.11.8
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 +14 -3
- package/README.md +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.11.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix: Update STAGE environment launchpadFrontendUrl from lpad-frontend-dev1 to lpad-frontend-test1
|
|
8
|
+
to correct MCP tool URL generation for token frontend links
|
|
9
|
+
|
|
3
10
|
## 3.11.7
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -12,7 +19,10 @@
|
|
|
12
19
|
|
|
13
20
|
### Patch Changes
|
|
14
21
|
|
|
15
|
-
- Fix TypeScript declaration file output structure. The tsconfig.json `rootDir` was incorrectly set
|
|
22
|
+
- Fix TypeScript declaration file output structure. The tsconfig.json `rootDir` was incorrectly set
|
|
23
|
+
to "." instead of "src", causing declaration files to output to `dist/src/index.d.ts` instead of
|
|
24
|
+
`dist/index.d.ts`. Restored original working configuration with `rootDir: "src"` and added test
|
|
25
|
+
file exclusion patterns.
|
|
16
26
|
|
|
17
27
|
**Key improvements:**
|
|
18
28
|
- Restored correct TypeScript compilation structure
|
|
@@ -20,7 +30,8 @@
|
|
|
20
30
|
- Declaration files now output to correct location (`dist/index.d.ts`)
|
|
21
31
|
- MCP server builds successfully with proper SDK type imports
|
|
22
32
|
|
|
23
|
-
**Breaking change:** None - This fixes a configuration regression that was preventing proper type
|
|
33
|
+
**Breaking change:** None - This fixes a configuration regression that was preventing proper type
|
|
34
|
+
resolution
|
|
24
35
|
|
|
25
36
|
## 3.11.5
|
|
26
37
|
|
|
@@ -513,7 +524,7 @@ await sdk.uploadProfileImage({ file, address });
|
|
|
513
524
|
|
|
514
525
|
- Added `launchpadFrontendUrl` to EnvironmentConfig
|
|
515
526
|
- PROD: `https://lpad-frontend-prod1.defi.gala.com`
|
|
516
|
-
- STAGE: `https://lpad-frontend-
|
|
527
|
+
- STAGE: `https://lpad-frontend-test1.defi.gala.com`
|
|
517
528
|
- Supports custom URL override in LaunchpadSDKConfig
|
|
518
529
|
|
|
519
530
|
### Documentation
|
package/README.md
CHANGED
|
@@ -214,7 +214,7 @@ console.log(`Profile name: ${profile.fullName || 'Not set'}`);
|
|
|
214
214
|
// URL Utilities - Generate frontend URLs
|
|
215
215
|
const tokenUrl = sdk.getUrlByTokenName('dragnrkti');
|
|
216
216
|
console.log(`View token: ${tokenUrl}`);
|
|
217
|
-
// Output: https://lpad-frontend-
|
|
217
|
+
// Output: https://lpad-frontend-test1.defi.gala.com/buy-sell/dragnrkti
|
|
218
218
|
```
|
|
219
219
|
|
|
220
220
|
## Auto-Pagination Feature
|