@gala-chain/launchpad-sdk 3.11.6 → 3.11.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.11.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Update documentation across all files to reference correct SDK and MCP versions (3.11.7 and 1.7.7)
8
+ - Add comprehensive Token Distribution Patterns section to CLAUDE.md
9
+ - Update explainSdkUsage tool to show v3.11.7
10
+
11
+ ## 3.11.6
12
+
13
+ ### Patch Changes
14
+
15
+ - Fix TypeScript declaration file output structure. The tsconfig.json `rootDir` was incorrectly set to "." instead of "src", causing declaration files to output to `dist/src/index.d.ts` instead of `dist/index.d.ts`. Restored original working configuration with `rootDir: "src"` and added test file exclusion patterns.
16
+
17
+ **Key improvements:**
18
+ - Restored correct TypeScript compilation structure
19
+ - Added `**/*.test.ts` and `**/*.spec.ts` to exclude patterns
20
+ - Declaration files now output to correct location (`dist/index.d.ts`)
21
+ - MCP server builds successfully with proper SDK type imports
22
+
23
+ **Breaking change:** None - This fixes a configuration regression that was preventing proper type resolution
24
+
3
25
  ## 3.11.5
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gala-chain/launchpad-sdk",
3
- "version": "3.11.6",
3
+ "version": "3.11.7",
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",