@wireapp/core 28.0.0 → 28.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 +16 -0
- package/package.json +3 -3
- package/src/main/Account.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [28.1.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@28.0.0...@wireapp/core@28.1.0) (2022-07-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core:** More suited types for Account ([051b4f3](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/commit/051b4f35be7164624f3ed7913366010bdf8b17c4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **api-client:** Adapt to api version 2 ([#4308](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/issues/4308)) ([2ac928d](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/commit/2ac928d0b812080faa81e2cd9de12c959eb59276))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [28.0.0](https://github.com/wireapp/wire-web-packages/tree/main/packages/core/compare/@wireapp/core@27.6.0...@wireapp/core@28.0.0) (2022-07-01)
|
|
7
23
|
|
|
8
24
|
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"@otak/core-crypto": "0.2.0-beta-3",
|
|
8
8
|
"@types/long": "4.0.1",
|
|
9
9
|
"@types/node": "~14",
|
|
10
|
-
"@wireapp/api-client": "19.
|
|
10
|
+
"@wireapp/api-client": "19.8.0",
|
|
11
11
|
"@wireapp/cryptobox": "12.8.0",
|
|
12
12
|
"bazinga64": "5.10.0",
|
|
13
13
|
"hash.js": "1.1.7",
|
|
@@ -73,6 +73,6 @@
|
|
|
73
73
|
"test:project": "yarn dist && yarn test",
|
|
74
74
|
"test:node": "nyc jasmine --config=jasmine.json"
|
|
75
75
|
},
|
|
76
|
-
"version": "28.
|
|
77
|
-
"gitHead": "
|
|
76
|
+
"version": "28.1.0",
|
|
77
|
+
"gitHead": "4b3f49cdb3d62b745a325faa6deab76ad93b07f2"
|
|
78
78
|
}
|
package/src/main/Account.d.ts
CHANGED
|
@@ -90,7 +90,7 @@ interface AccountOptions<T> {
|
|
|
90
90
|
*/
|
|
91
91
|
mlsConfig?: MLSConfig<T>;
|
|
92
92
|
}
|
|
93
|
-
export declare class Account<T =
|
|
93
|
+
export declare class Account<T = any> extends EventEmitter {
|
|
94
94
|
private readonly apiClient;
|
|
95
95
|
private readonly logger;
|
|
96
96
|
private readonly createStore;
|