@gala-chain/launchpad-sdk 3.12.3 → 3.12.4
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 +15 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/schemas/files.d.ts +12 -55
- package/dist/schemas/files.d.ts.map +1 -1
- package/dist/utils/multipart.d.ts.map +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.12.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix: Use web-file-polyfill for Node.js File API support (reverts complex lazy evaluation)
|
|
8
|
+
|
|
9
|
+
Replaces complex lazy evaluation pattern with official web-file-polyfill package. This provides a
|
|
10
|
+
clean, maintainable solution that allows z.instanceof(File) to work in Node.js environments
|
|
11
|
+
without code complexity. Reverts unnecessary schema refactoring and Rollup configuration changes
|
|
12
|
+
from v3.12.3.
|
|
13
|
+
- Add web-file-polyfill import at SDK entry point
|
|
14
|
+
- Revert to simple direct file schemas (no lazy evaluation)
|
|
15
|
+
- Revert to simple Rollup configuration (single resolve plugin)
|
|
16
|
+
- Fix CommonJS File API ReferenceError in Node.js 18+
|
|
17
|
+
|
|
3
18
|
## 3.12.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|