@stellar/typescript-wallet-sdk 1.9.0 → 1.10.0
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 -0
- package/lib/bundle.js +5807 -1314
- package/lib/bundle.js.map +1 -1
- package/lib/bundle_browser.js +428 -7717
- package/lib/bundle_browser.js.map +1 -1
- package/lib/walletSdk/Auth/index.d.ts +2 -0
- package/lib/walletSdk/Exceptions/index.d.ts +6 -0
- package/lib/walletSdk/Types/recovery.d.ts +1 -0
- package/lib/walletSdk/Types/sep7.d.ts +1 -0
- package/package.json +1 -1
- package/src/walletSdk/Anchor/index.ts +1 -0
- package/src/walletSdk/Auth/index.ts +194 -7
- package/src/walletSdk/Exceptions/index.ts +16 -0
- package/src/walletSdk/Recovery/index.ts +1 -0
- package/src/walletSdk/Types/auth.ts +11 -5
- package/src/walletSdk/Types/recovery.ts +1 -0
- package/src/walletSdk/Types/sep7.ts +1 -0
- package/src/walletSdk/Uri/sep7Parser.ts +46 -6
- package/test/auth.test.ts +1032 -0
- package/test/customer.test.ts +2 -1
- package/test/docker/docker-compose.yml +2 -2
- package/test/e2e/browser.test.ts +0 -2
- package/test/integration/README.md +3 -8
- package/test/integration/anchorplatform.test.ts +2 -1
- package/test/sep38.test.ts +0 -2
- package/test/sep6.test.ts +9 -3
- package/test/sep7.test.ts +43 -1
- package/test/server.test.ts +19 -23
- package/test/wallet.test.ts +10 -11
- package/tsconfig.json +2 -1
package/CHANGELOG.MD
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Release notes - Typescript Wallet SDK - 1.10.0
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
* Validate SEP-10 challenge transaction (#228)
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
* Fix broken JWT expiration check in SEP-10 authentication (#226)
|
|
8
|
+
* Fix TypeError crash in SEP-7 replace parameter parsing (#227)
|
|
9
|
+
|
|
10
|
+
# Release notes - Typescript Wallet SDK - 1.9.0
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
* Added SEP-43 types: (#186)
|
|
14
|
+
|
|
1
15
|
# Release notes - Typescript Wallet SDK - 1.8.0
|
|
2
16
|
|
|
3
17
|
### Added
|