edge-core-js 1.0.1 → 1.2.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 +13 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/client-side.js +60 -1
- package/lib/core/context/context-api.js +20 -3
- package/lib/core/currency/wallet/currency-wallet-api.js +111 -43
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +1 -1
- package/lib/core/currency/wallet/currency-wallet-export.js +66 -74
- package/lib/core/login/edge.js +0 -1
- package/lib/core/login/login-reducer.js +4 -2
- package/lib/core/login/login-stash.js +4 -3
- package/lib/core/login/login-username.js +1 -1
- package/lib/flow/types.js +37 -3
- package/lib/libs.d.js +0 -9
- package/lib/node/index.js +225 -116
- package/lib/types/types.js +34 -0
- package/package.json +2 -2
- package/src/types/types.ts +37 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v1.2.0 (2023-06-15)
|
|
4
|
+
|
|
5
|
+
- added: Add an `EdgeCurrencyWallet.streamTransactions` method.
|
|
6
|
+
- deprecated: Pagination options for `getTransactions`. Use `streamTransactions` if you need pagination.
|
|
7
|
+
- fixed: Add the correct URI to `changeUsername`, so it works.
|
|
8
|
+
- fixed: Send a 'transactionsChanged' event when editing metadata.
|
|
9
|
+
|
|
10
|
+
## v1.1.0 (2023-06-08)
|
|
11
|
+
|
|
12
|
+
- added: Add an `EdgeContext.forgetAccount` method.
|
|
13
|
+
- deprecated: `EdgeContext.deleteLocalAccount`. Use `EdgeContext.forgetAccount` instead.
|
|
14
|
+
- fixed: Do not throw a "No username in reply" error when logging into light accounts via barcode.
|
|
15
|
+
|
|
3
16
|
## v1.0.1 (2023-06-01)
|
|
4
17
|
|
|
5
18
|
- fixed: Do not crash when accessing `EdgeAccount.username` on an account that has none.
|