edge-core-js 1.0.0 → 1.1.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 +11 -1
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +0 -1
- package/lib/core/context/context-api.js +20 -3
- 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/flow/fake-types.js +2 -2
- package/lib/flow/types.js +7 -4
- package/lib/libs.d.js +0 -9
- package/lib/node/index.js +37 -23
- package/lib/types/fake-types.js +1 -1
- package/lib/types/types.js +3 -0
- package/package.json +2 -2
- package/src/types/fake-types.ts +2 -2
- package/src/types/types.ts +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
-
## v1.
|
|
3
|
+
## v1.1.0 (2023-06-08)
|
|
4
|
+
|
|
5
|
+
- added: Add an `EdgeContext.forgetAccount` method.
|
|
6
|
+
- deprecated: `EdgeContext.deleteLocalAccount`. Use `EdgeContext.forgetAccount` instead.
|
|
7
|
+
- fixed: Do not throw a "No username in reply" error when logging into light accounts via barcode.
|
|
8
|
+
|
|
9
|
+
## v1.0.1 (2023-06-01)
|
|
10
|
+
|
|
11
|
+
- fixed: Do not crash when accessing `EdgeAccount.username` on an account that has none.
|
|
12
|
+
|
|
13
|
+
## v1.0.0 (2023-06-01)
|
|
4
14
|
|
|
5
15
|
- changed: Convert `createAccount` to named parameters
|
|
6
16
|
- changed: Return an array from `fetchLoginMessages`
|