@gala-chain/launchpad-sdk 3.15.0 → 3.15.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/CHANGELOG.md +25 -0
- package/dist/constants/version.generated.d.ts +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,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add comprehensive test coverage and example scripts for fetchPrices and fetchAllPrices methods
|
|
8
|
+
|
|
9
|
+
**SDK Changes:**
|
|
10
|
+
- Added 11 unit tests for fetchPrices and fetchAllPrices validation in
|
|
11
|
+
price-history-service.test.ts
|
|
12
|
+
- Added 19 integration tests for fetchPrices and fetchAllPrices functionality in
|
|
13
|
+
price-history-service.integration.ts
|
|
14
|
+
- Improved PriceHistoryService test coverage from 31.44% to 51.57% (+20.13 percentage points)
|
|
15
|
+
- All 1096 tests passing
|
|
16
|
+
|
|
17
|
+
**Example Scripts:**
|
|
18
|
+
- Added examples/validate-fetch-prices.ts: Validates methods without MySQL setup, shows signatures
|
|
19
|
+
and usage
|
|
20
|
+
- Added examples/fetch-prices-demo.ts: Full demonstration with 5 use cases (pagination, sorting,
|
|
21
|
+
auto-pagination, statistics)
|
|
22
|
+
|
|
23
|
+
**Test Coverage Details:**
|
|
24
|
+
- Unit Tests: Parameter validation, error handling, edge cases
|
|
25
|
+
- Integration Tests: Empty results, latest price selection, multiple tokens, pagination, sorting,
|
|
26
|
+
large datasets, auto-pagination combining
|
|
27
|
+
|
|
3
28
|
## 3.15.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|