edge-core-js 1.2.0 → 1.3.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 +10 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/ios/EdgeCoreWebView.swift +8 -0
- package/ios/EdgeCoreWebViewManager.m +1 -0
- package/ios/EdgeCoreWebViewManager.swift +0 -4
- package/lib/core/account/account-api.js +21 -5
- package/lib/core/currency/wallet/currency-wallet-reducer.js +9 -3
- package/lib/core/fake/fake-server.js +98 -1
- package/lib/flow/error.js +40 -44
- package/lib/flow/types.js +1 -0
- package/lib/node/index.js +120 -11
- package/lib/types/error.js +36 -44
- package/lib/types/types.js +1 -0
- package/package.json +1 -1
- package/src/types/error.ts +36 -44
- package/src/types/types.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v1.3.1 (2023-07-11)
|
|
4
|
+
|
|
5
|
+
- fixed: Enable WebView debugging on iOS 16.4+
|
|
6
|
+
- fixed: Correctly return transactions after a resync.
|
|
7
|
+
|
|
8
|
+
## v1.3.0 (2023-06-16)
|
|
9
|
+
|
|
10
|
+
- added: Add an `EdgeAccount.getPin` method.
|
|
11
|
+
- fixed: Allow the `EdgeAccount.username` property to update after calling `changeUsername`.
|
|
12
|
+
|
|
3
13
|
## v1.2.0 (2023-06-15)
|
|
4
14
|
|
|
5
15
|
- added: Add an `EdgeCurrencyWallet.streamTransactions` method.
|